Introduction
Welcome to the Transit Tracker API Documentation! The API is completely free, as long as it is used without excess. Transit Tracker data is free of charge, but it is mandatory to credit agency data when specified. Credits are registered in the v2/agencies
API, in the license
object.
Bienvenue à la documentation de l'API de Transit Tracker! L'API est complètement gratuite, tant qu'elle est utilisée sans excès. Les données de Transit Tracker sont libre de droit, mais il est obligatoire de créditer les données des agences lorsque spécifié. Les crédits sont inscrit dans l'API v2/agencies
, dans l'objet license
.
Authenticating requests
This API is not authenticated.
Agencies
GET v2/agencies
Example request:
curl --request GET \
--get "https://api.transittracker.ca/v2/agencies" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "Accept-Language: en"
$client = new \GuzzleHttp\Client();
$url = 'https://api.transittracker.ca/v2/agencies';
$response = $client->get(
$url,
[
'headers' => [
'Content-Type' => 'application/json',
'Accept' => 'application/json',
'Accept-Language' => 'en',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://api.transittracker.ca/v2/agencies'
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Accept-Language': 'en'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 138
x-ratelimit-remaining: 137
content-language: en
vary: Origin
{
"data": [
{
"id": 1,
"isArchived": false,
"name": "Société de transport de Montréal",
"shortName": "STM",
"slug": "stm",
"cities": [
"Montréal"
],
"defaultVehicleType": "bus",
"color": "#00AEEF",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 2,
"isArchived": false,
"name": "exo Trains",
"shortName": "Trains",
"slug": "trains",
"cities": [
"Vaudreuil",
"Saint-Jérôme",
"Mont-Saint-Hilaire",
"Candiac",
"Mascouche"
],
"defaultVehicleType": "train",
"color": "#C8017E",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 3,
"isArchived": false,
"name": "Société de transport de Laval",
"shortName": "STL",
"slug": "stl",
"cities": [
"Laval"
],
"defaultVehicleType": "bus",
"color": "#84C444",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 4,
"isArchived": false,
"name": "Réseau de transport de Longueuil",
"shortName": "RTL",
"slug": "rtl",
"cities": [
"Longueuil"
],
"defaultVehicleType": "bus",
"color": "#ce0037",
"textColor": "#ffe8d0",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 5,
"isArchived": false,
"name": "exo Laurentides",
"shortName": "Laurentides",
"slug": "la",
"cities": [
"Blainville",
"Bois-des-Filion",
"Deux-Montagnes",
"Pointe-Calumet",
"Sainte-Marthe-sur-le-Lac"
],
"defaultVehicleType": "bus",
"color": "#00A586",
"textColor": "#FFFFFF",
"regions": [
"mtl",
"laurentides"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 6,
"isArchived": false,
"name": "exo Vallée-du-Richelieu",
"shortName": "Vallée-du-Richelieu",
"slug": "vr",
"cities": [
"Beloeil",
"Otterburn Park",
"Saint-Basile-le-Grand",
"Saint-Hyacinthe",
"Sainte-Madeleine"
],
"defaultVehicleType": "bus",
"color": "#1F96A4",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 7,
"isArchived": true,
"name": "exo Le Richelain",
"shortName": "Le Richelain",
"slug": "lr",
"cities": [
"Candiac",
"La Prairie",
"Saint-Philippe"
],
"defaultVehicleType": "bus",
"color": "#41474d",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 8,
"isArchived": false,
"name": "exo L'Assomption",
"shortName": "L'Assomption",
"slug": "lasso",
"cities": [
"Lavaltrie",
"L'Épiphanie",
"Charlemagne",
"Repentigny",
"Saint-Sulpice"
],
"defaultVehicleType": "bus",
"color": "#0071BA",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 9,
"isArchived": false,
"name": "exo Sainte-Julie",
"shortName": "Sainte-Julie",
"slug": "sju",
"cities": [
"Sainte-Julie"
],
"defaultVehicleType": "bus",
"color": "#F7A389",
"textColor": "#000000",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 10,
"isArchived": false,
"name": "exo Sud-Ouest",
"shortName": "Sud-Ouest",
"slug": "so",
"cities": [
"Beauharnois",
"Châteauguay",
"Léry",
"Salaberry-de-Valleyfield",
"Sainte-Martine"
],
"defaultVehicleType": "bus",
"color": "#B94065",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 11,
"isArchived": true,
"name": "exo Haut-Saint-Laurent",
"shortName": "Haut-Saint-Laurent (exo)",
"slug": "hsl",
"cities": [
"Mercier",
"Sainte-Martine",
"Ormstown",
"Très-Saint-Sacrement",
"Howick"
],
"defaultVehicleType": "bus",
"color": "#41474d",
"textColor": "#000000",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 12,
"isArchived": false,
"name": "exo La Presqu'Île",
"shortName": "La Presqu'Île",
"slug": "pi",
"cities": [
"Hudson",
"Notre-Dame-de-l’Île-Perrot",
"Pincourt",
"Rigaud",
"Vaudreuil-Dorion"
],
"defaultVehicleType": "bus",
"color": "#FCEFC5",
"textColor": "#000000",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 13,
"isArchived": true,
"name": "exo Roussillon",
"shortName": "Roussillon",
"slug": "rous",
"cities": [
"Delson",
"Saint-Constant",
"Sainte-Catherine"
],
"defaultVehicleType": "bus",
"color": "#41474d",
"textColor": "#ffffff",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 14,
"isArchived": false,
"name": "exo Sorel-Varennes",
"shortName": "Sorel-Varennes",
"slug": "sv",
"cities": [
"Varennes",
"Verchères",
"Saint-Amable",
"Saint-Joseph-de-Sorel",
"Sorel-Tracy"
],
"defaultVehicleType": "bus",
"color": "#EFDCCE",
"textColor": "#000000",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 15,
"isArchived": false,
"name": "exo Terrebonne-Mascouche",
"shortName": "Terrebonne-Mascouche",
"slug": "tm",
"cities": [
"Terrebonne",
"Mascouche"
],
"defaultVehicleType": "bus",
"color": "#9ED1C6",
"textColor": "#000000",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 16,
"isArchived": false,
"name": "exo Chambly-Richelieu-Carignan",
"shortName": "Chambly-Richelieu-Carignan",
"slug": "crc",
"cities": [
"Chambly",
"Richelieu",
"Carignan"
],
"defaultVehicleType": "bus",
"color": "#F1776A",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 17,
"isArchived": false,
"name": "Toronto Transit Comission",
"shortName": "TTC",
"slug": "ttc",
"cities": [
"Toronto"
],
"defaultVehicleType": "bus",
"color": "#DB2727",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": "https://open.toronto.ca/open-data-license/",
"title": "Open Government Licence – Toronto",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 18,
"isArchived": false,
"name": "Brampton Transit",
"shortName": "Brampton",
"slug": "bra",
"cities": [
"Brampton"
],
"defaultVehicleType": "bus",
"color": "#628CAA",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": "https://www.brampton.ca/EN/City-Hall/OpenGov/Open-Data-Catalogue/Pages/Terms-of-Use.aspx",
"title": "City of Brampton Open Data Terms of Use",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 19,
"isArchived": false,
"name": "Burlington Transit",
"shortName": "Burlington",
"slug": "bur",
"cities": [
"Burlington"
],
"defaultVehicleType": "bus",
"color": "#F3B901",
"textColor": "#000000",
"regions": [
"tor"
],
"license": {
"url": "https://www.burlington.ca/en/services-for-you/resources/Ongoing_Projects/Open_Data/OpenDataBurlingtonTermsOfUseSeptember192011.pdf",
"title": "Terms of Use for Open Data Burlington",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 20,
"isArchived": false,
"name": "Durham Region Transit",
"shortName": "DRT",
"slug": "drt",
"cities": [
"Ajax",
"Oshawa",
"Clarington",
"Brock",
"Scugog"
],
"defaultVehicleType": "bus",
"color": "#242424",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": "https://www.durham.ca/en/regional-government/resources/Documents/OpenDataLicenceAgreement.pdf",
"title": "Region of Durham - Open Data Licence v.1.0",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 21,
"isArchived": false,
"name": "Hamilton Street Railway",
"shortName": "HSR",
"slug": "hsr",
"cities": [
"Hamilton"
],
"defaultVehicleType": "bus",
"color": "#29578D",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": "https://www.hamilton.ca/city-initiatives/strategies-actions/open-data-licence-terms-and-conditions",
"title": "Open Data Licence Terms and Conditions",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 24,
"isArchived": false,
"name": "York Region Transit",
"shortName": "YRT",
"slug": "yrt",
"cities": [
"Markham",
"Newmarket",
"Richmond Hill",
"Vaughan",
"Whitchurch-Stouffville"
],
"defaultVehicleType": "bus",
"color": "#4DA3E0",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": "https://www.yrt.ca/en/about-us/open-data-licence-agreement.aspx",
"title": "YRT Open data licence agreement",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 25,
"isArchived": false,
"name": "Société de transport de Sherbrooke",
"shortName": "STSH",
"slug": "stsh",
"cities": [
"Sherbrooke"
],
"defaultVehicleType": "bus",
"color": "#2C516A",
"textColor": "#FFFFFF",
"regions": [
"sh"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 26,
"isArchived": false,
"name": "Grand River Transit",
"shortName": "GRT",
"slug": "grt",
"cities": [
"Cambridge",
"Kitchener",
"Waterloo",
"Elmira",
"New Hamburg"
],
"defaultVehicleType": "bus",
"color": "#006CB7",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": "https://www.regionofwaterloo.ca/en/regional-government/open-data.aspx",
"title": "Region of Waterloo Open Data Licence v.2.0",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 27,
"isArchived": false,
"name": "Guelph Transit",
"shortName": "Guelph",
"slug": "gt",
"cities": [
"Guelph"
],
"defaultVehicleType": "bus",
"color": "#6CB43F",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": "http://data.open.guelph.ca/pages/open-government-licence",
"title": "City of Guelph Open Government Licence",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 28,
"isArchived": false,
"name": "GO Transit",
"shortName": "GO",
"slug": "go",
"cities": [
"Hamilton",
"Kitchener",
"Barrie",
"Richmond Hill",
"Kitchener"
],
"defaultVehicleType": "bus",
"color": "#256C2F",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": null,
"title": "GO Transit API licence",
"isDownloadable": false
},
"features": [],
"meta": {}
},
{
"id": 29,
"isArchived": false,
"name": "Barrie Transit",
"shortName": "Barrie",
"slug": "bt",
"cities": [
"Barrie",
"Angus",
"Borden"
],
"defaultVehicleType": "bus",
"color": "#12A9D8",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": "https://www.barrie.ca/Living/Getting%20Around/BarrieTransit/Pages/Barrie-GTFS.aspx",
"title": "Barrie Transit Data License",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 30,
"isArchived": false,
"name": "Société de transport de Lévis",
"shortName": "STLévis",
"slug": "stlevis",
"cities": [
"Lévis",
"Saint-Lambert-de-Lauzon"
],
"defaultVehicleType": "bus",
"color": "#0F9BBF",
"textColor": "#FFFFFF",
"regions": [
"qc"
],
"license": {
"url": "http://creativecommons.org/licenses/by/4.0/deed.fr",
"title": "Creative Commons Attribution 4.0 (CC BY 4.0)",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 32,
"isArchived": false,
"name": "Société de transport de l'Outaouais",
"shortName": "STO",
"slug": "sto",
"cities": [
"Gatineau"
],
"defaultVehicleType": "bus",
"color": "#007F89",
"textColor": "#FFFFFF",
"regions": [
"outaouais"
],
"license": {
"url": "http://www.sto.ca/index.php?id=598&L=fr",
"title": "Conditions d'utilisation - Données ouvertes et clé API",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 33,
"isArchived": false,
"name": "BUS Mont-Tremblant",
"shortName": "BMT",
"slug": "tcmt",
"cities": [
"Mont-Tremblant"
],
"defaultVehicleType": "bus",
"color": "#095d7e",
"textColor": "#FFFFFF",
"regions": [
"laurentides"
],
"license": {
"url": "https://zenbus.fr/zenbusapi/",
"title": "Zenbus API",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 34,
"isArchived": false,
"name": "Société de transport collectif de Pierre-De Saurel",
"shortName": "Pierre-De Saurel",
"slug": "stcpds",
"cities": [
"Sorel-Tracy"
],
"defaultVehicleType": "bus",
"color": "#4b858e",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://zenbus.fr/zenbusapi/",
"title": "Zenbus API",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 35,
"isArchived": false,
"name": "MRC du Haut-Saint-Laurent",
"shortName": "Haut-Saint-Laurent (MRC)",
"slug": "mrchsl",
"cities": [
"Godmanchester",
"Howick",
"Ormstown",
"Sainte-Barbe",
"Très-Saint-Sacrement"
],
"defaultVehicleType": "bus",
"color": "#1c94cc",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://zenbus.fr/zenbusapi/",
"title": "Zenbus API",
"isDownloadable": true
},
"features": [
"useRouteFromTrip"
],
"meta": {}
},
{
"id": 37,
"isArchived": false,
"name": "UP Express",
"shortName": "UP",
"slug": "up",
"cities": [
"Toronto"
],
"defaultVehicleType": "train",
"color": "#555025",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": null,
"title": "GO Transit API licence",
"isDownloadable": false
},
"features": [],
"meta": {}
},
{
"id": 39,
"isArchived": false,
"name": "London Transit Commission",
"shortName": "London",
"slug": "ltc",
"cities": [
"London"
],
"defaultVehicleType": "bus",
"color": "#087ac0",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": "https://www.londontransit.ca/open-data/ltcs-open-data-terms-of-use/",
"title": "LTC’s Open Data – Terms of Use",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 40,
"isArchived": false,
"name": "L'Inter",
"shortName": "Inter",
"slug": "inter",
"cities": [
"Sainte-Agathe-des-Monts",
"Val-Morin",
"Sainte-Anne-des-Lacs",
"Piedmont",
"Saint-Jérôme"
],
"defaultVehicleType": "bus",
"color": "#f5791f",
"textColor": "#FFFFFF",
"regions": [
"laurentides"
],
"license": {
"url": "https://zenbus.fr/zenbusapi/",
"title": "Zenbus API",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 42,
"isArchived": false,
"name": "Stratford Transit",
"shortName": "Stratford",
"slug": "stratford",
"cities": [
"Stratford"
],
"defaultVehicleType": "bus",
"color": "#002861",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": null,
"title": "Not specified",
"isDownloadable": true
},
"features": [
"metrolinxTMIX",
"tmixID:349560"
],
"meta": {}
},
{
"id": 43,
"isArchived": false,
"name": "Orangeville Transit",
"shortName": "Orangeville",
"slug": "orangeville",
"cities": [
"Orangeville"
],
"defaultVehicleType": "bus",
"color": "#f9820a",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": null,
"title": "Not specified",
"isDownloadable": true
},
"features": [
"metrolinxTMIX",
"tmixID:349360"
],
"meta": {}
},
{
"id": 44,
"isArchived": false,
"name": "St. Thomas Transit",
"shortName": "St. Thomas",
"slug": "stthomas",
"cities": [
"St. Thomas"
],
"defaultVehicleType": "bus",
"color": "#a70237",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": null,
"title": "Not specified",
"isDownloadable": true
},
"features": [
"metrolinxTMIX",
"tmixID:349660"
],
"meta": {}
},
{
"id": 45,
"isArchived": false,
"name": "Milton Transit",
"shortName": "Milton",
"slug": "milton",
"cities": [
"Milton"
],
"defaultVehicleType": "bus",
"color": "#00b3ee",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": null,
"title": "Not specified",
"isDownloadable": true
},
"features": [
"metrolinxTMIX",
"tmixID:Milton"
],
"meta": {}
},
{
"id": 46,
"isArchived": false,
"name": "Réseau de transport de la Capitale",
"shortName": "RTC",
"slug": "rtc",
"cities": [
"Québec",
"Saint-Augustin-de-Desmaures",
"L'Ancienne-Lorette"
],
"defaultVehicleType": "bus",
"color": "#003e8a",
"textColor": "#FFFFFF",
"regions": [
"qc"
],
"license": {
"url": "https://www.rtcquebec.ca/donnees-ouvertes",
"title": "License des données ouvertes",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 48,
"isArchived": false,
"name": "MRC de Montcalm",
"shortName": "Montcalm",
"slug": "montcalm",
"cities": [
"Saint-Lin-Laurentides",
"Terrebonne"
],
"defaultVehicleType": "bus",
"color": "#8ebb52",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://zenbus.fr/zenbusapi/",
"title": "Zenbus API",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 49,
"isArchived": false,
"name": "exo Le Richelain / Roussillon",
"shortName": "Richelain / Roussillon",
"slug": "lrrs",
"cities": [
"Candiac",
"La Prairie",
"Saint-Philippe"
],
"defaultVehicleType": "bus",
"color": "#7C5D81",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 50,
"isArchived": false,
"name": "MiWay",
"shortName": "MiWay",
"slug": "miway",
"cities": [
"Mississauga"
],
"defaultVehicleType": "bus",
"color": "#f26322",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": "http://www5.mississauga.ca/research_catalogue/CityofMississauga_TermsofUse.pdf",
"title": "City of Mississauga’s Terms and Conditions",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 51,
"isArchived": false,
"name": "Saint-Jean-sur-Richelieu",
"shortName": "SJSR",
"slug": "sjsr",
"cities": [
"Saint-Jean-sur-Richelieu"
],
"defaultVehicleType": "bus",
"color": "#005982",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://zenbus.fr/zenbusapi/",
"title": "Zenbus API",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 54,
"isArchived": false,
"name": "Ville de Saint-Hyacinthe",
"shortName": "Saint-Hyacinthe",
"slug": "vsh",
"cities": [
"Saint-Hyacinthe"
],
"defaultVehicleType": "bus",
"color": "#08a78b",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": null,
"title": "Not specified",
"isDownloadable": true
},
"features": [
"useRouteFromTrip"
],
"meta": {}
},
{
"id": 55,
"isArchived": false,
"name": "OC Transpo",
"shortName": "OC Transpo",
"slug": "octranspo",
"cities": [
"Ottawa"
],
"defaultVehicleType": "bus",
"color": "#d94138",
"textColor": "#ffffff",
"regions": [
"outaouais"
],
"license": {
"url": "https://ottawa.ca/en/city-hall/open-transparent-and-accountable-government/open-data#section-7d58affa-59a3-47f2-932d-ccb75000cefc",
"title": "City of Ottawa Open Data Terms of Use",
"isDownloadable": true
},
"features": [],
"meta": {}
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET v2/agencies/{agency_slug}
Example request:
curl --request GET \
--get "https://api.transittracker.ca/v2/agencies/stm" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "Accept-Language: en"
$client = new \GuzzleHttp\Client();
$url = 'https://api.transittracker.ca/v2/agencies/stm';
$response = $client->get(
$url,
[
'headers' => [
'Content-Type' => 'application/json',
'Accept' => 'application/json',
'Accept-Language' => 'en',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://api.transittracker.ca/v2/agencies/stm'
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Accept-Language': 'en'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 138
x-ratelimit-remaining: 136
content-language: en
vary: Origin
{
"data": {
"id": 1,
"isArchived": false,
"name": "Société de transport de Montréal",
"shortName": "STM",
"slug": "stm",
"cities": [
"Montréal"
],
"defaultVehicleType": "bus",
"color": "#00AEEF",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Alerts
GET v2/alerts
Example request:
curl --request GET \
--get "https://api.transittracker.ca/v2/alerts" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "Accept-Language: en"
$client = new \GuzzleHttp\Client();
$url = 'https://api.transittracker.ca/v2/alerts';
$response = $client->get(
$url,
[
'headers' => [
'Content-Type' => 'application/json',
'Accept' => 'application/json',
'Accept-Language' => 'en',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://api.transittracker.ca/v2/alerts'
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Accept-Language': 'en'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 0
x-ratelimit-remaining: 0
content-language: en
vary: Origin
{
"data": []
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET v2/alerts/{alert_id}
Example request:
curl --request GET \
--get "https://api.transittracker.ca/v2/alerts/2" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "Accept-Language: en"
$client = new \GuzzleHttp\Client();
$url = 'https://api.transittracker.ca/v2/alerts/2';
$response = $client->get(
$url,
[
'headers' => [
'Content-Type' => 'application/json',
'Accept' => 'application/json',
'Accept-Language' => 'en',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://api.transittracker.ca/v2/alerts/2'
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Accept-Language': 'en'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (429):
Show headers
x-ratelimit-limit: 0
x-ratelimit-remaining: 0
retry-after: 60
x-ratelimit-reset: 1749738783
cache-control: no-cache, private
content-type: application/json
content-language: en
vary: Origin
{
"message": "Too Many Attempts."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET v2/regions/{region_slug}/alerts
Example request:
curl --request GET \
--get "https://api.transittracker.ca/v2/regions/mtl/alerts" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "Accept-Language: en"
$client = new \GuzzleHttp\Client();
$url = 'https://api.transittracker.ca/v2/regions/mtl/alerts';
$response = $client->get(
$url,
[
'headers' => [
'Content-Type' => 'application/json',
'Accept' => 'application/json',
'Accept-Language' => 'en',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://api.transittracker.ca/v2/regions/mtl/alerts'
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Accept-Language': 'en'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 12
x-ratelimit-remaining: 9
content-language: en
vary: Origin
{
"data": []
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Endpoints
GET v2/health
Example request:
curl --request GET \
--get "https://api.transittracker.ca/v2/health" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "Accept-Language: en"
$client = new \GuzzleHttp\Client();
$url = 'https://api.transittracker.ca/v2/health';
$response = $client->get(
$url,
[
'headers' => [
'Content-Type' => 'application/json',
'Accept' => 'application/json',
'Accept-Language' => 'en',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://api.transittracker.ca/v2/health'
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Accept-Language': 'en'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (403):
Show headers
cache-control: no-cache, private
content-type: application/json
vary: Origin
{
"message": "Secret header not set"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET v2/agencies/{agencySlug}/trips/{tripId}/blocks
Example request:
curl --request GET \
--get "https://api.transittracker.ca/v2/agencies/stm/trips/commodi/blocks" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "Accept-Language: en"
$client = new \GuzzleHttp\Client();
$url = 'https://api.transittracker.ca/v2/agencies/stm/trips/commodi/blocks';
$response = $client->get(
$url,
[
'headers' => [
'Content-Type' => 'application/json',
'Accept' => 'application/json',
'Accept-Language' => 'en',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://api.transittracker.ca/v2/agencies/stm/trips/commodi/blocks'
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Accept-Language': 'en'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (404):
Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 45
x-ratelimit-remaining: 44
content-language: en
vary: Origin
{
"message": "Trip not found.",
"errors": {
"gtfs_trip_id": [
"Trip not found."
]
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET v2/agencies/{agencySlug}/shapes/{shapeId}
Example request:
curl --request GET \
--get "https://api.transittracker.ca/v2/agencies/stm/shapes/quis" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "Accept-Language: en"
$client = new \GuzzleHttp\Client();
$url = 'https://api.transittracker.ca/v2/agencies/stm/shapes/quis';
$response = $client->get(
$url,
[
'headers' => [
'Content-Type' => 'application/json',
'Accept' => 'application/json',
'Accept-Language' => 'en',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://api.transittracker.ca/v2/agencies/stm/shapes/quis'
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Accept-Language': 'en'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (404):
Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 45
x-ratelimit-remaining: 44
content-language: en
vary: Origin
{
"message": "No query results for model [App\\Models\\Gtfs\\Shape]."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Landing
GeoJSON ressources used on the landing page
GET v2/landing
Example request:
curl --request GET \
--get "https://api.transittracker.ca/v2/landing" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "Accept-Language: en"
$client = new \GuzzleHttp\Client();
$url = 'https://api.transittracker.ca/v2/landing';
$response = $client->get(
$url,
[
'headers' => [
'Content-Type' => 'application/json',
'Accept' => 'application/json',
'Accept-Language' => 'en',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://api.transittracker.ca/v2/landing'
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Accept-Language': 'en'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
Show headers
cache-control: public
content-type: application/json
x-ratelimit-limit: 5
x-ratelimit-remaining: 4
content-language: en
vary: Origin
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"slug": "mtl",
"name": "Montréal",
"agencies": 22,
"vehicles": 776,
"cities": [
"Montréal",
"Saint-Jérôme",
"Laval",
"Longueuil",
"Blainville",
"Otterburn Park",
"Candiac",
"Repentigny",
"Sainte-Julie",
"Mercier",
"Mercier",
"Rigaud",
"Sainte-Catherine",
"Saint-Amable",
"Terrebonne",
"Richelieu",
"Sorel-Tracy",
"Howick",
"Saint-Lin-Laurentides",
"Saint-Philippe",
"Saint-Jean-sur-Richelieu",
"Saint-Hyacinthe"
],
"range": 6
},
"geometry": {
"type": "Point",
"coordinates": [
"-73.661",
"45.5894"
]
}
},
{
"type": "Feature",
"properties": {
"slug": "tor",
"name": "Toronto",
"agencies": 17,
"vehicles": 2296,
"cities": [
"Toronto",
"Brampton",
"Burlington",
"Whitby",
"Hamilton",
"East Gwillimbury",
"Cambridge",
"Guelph",
"Kitchener",
"Barrie",
"Toronto",
"London",
"Stratford",
"Orangeville",
"St. Thomas",
"Milton",
"Mississauga"
],
"range": 7
},
"geometry": {
"type": "Point",
"coordinates": [
"-79.4414",
"43.6936"
]
}
},
{
"type": "Feature",
"properties": {
"slug": "sh",
"name": "Sherbrooke",
"agencies": 1,
"vehicles": 51,
"cities": [
"Sherbrooke"
],
"range": 3
},
"geometry": {
"type": "Point",
"coordinates": [
"-71.8926",
"45.4043"
]
}
},
{
"type": "Feature",
"properties": {
"slug": "qc",
"name": "Capitale-Nationale (Québec)",
"agencies": 2,
"vehicles": 171,
"cities": [
"Saint-Lambert-de-Lauzon",
"Québec"
],
"range": 5
},
"geometry": {
"type": "Point",
"coordinates": [
"-71.3005",
"46.7456"
]
}
},
{
"type": "Feature",
"properties": {
"slug": "outaouais",
"name": "Ottawa-Gatineau",
"agencies": 2,
"vehicles": 405,
"cities": [
"Gatineau",
"Ottawa"
],
"range": 5
},
"geometry": {
"type": "Point",
"coordinates": [
"-75.7386",
"45.5388"
]
}
},
{
"type": "Feature",
"properties": {
"slug": "laurentides",
"name": "Laurentides",
"agencies": 3,
"vehicles": 43,
"cities": [
"Mont-Tremblant",
"Sainte-Anne-des-Lacs",
"Sainte-Marthe-sur-le-Lac"
],
"range": 3
},
"geometry": {
"type": "Point",
"coordinates": [
"-74.593",
"46.1185"
]
}
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET v2/landing/vehicles
Example request:
curl --request GET \
--get "https://api.transittracker.ca/v2/landing/vehicles" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "Accept-Language: en"
$client = new \GuzzleHttp\Client();
$url = 'https://api.transittracker.ca/v2/landing/vehicles';
$response = $client->get(
$url,
[
'headers' => [
'Content-Type' => 'application/json',
'Accept' => 'application/json',
'Accept-Language' => 'en',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://api.transittracker.ca/v2/landing/vehicles'
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Accept-Language': 'en'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
Show headers
cache-control: public
content-type: application/json
x-ratelimit-limit: 5
x-ratelimit-remaining: 3
content-language: en
vary: Origin
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57852,
45.49535
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55353,
45.52313
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68829,
45.51781
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55314,
45.47974
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65036,
45.58415
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.78773,
45.46674
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63349,
45.54859
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63209,
45.50096
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54543,
45.46798
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.81498,
45.46266
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73917,
45.44784
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60476,
45.47366
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65754,
45.44792
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.574,
45.50159
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59868,
45.47699
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56932,
45.50294
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63377,
45.44515
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59846,
45.47164
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70981,
45.49798
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5595,
45.55625
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64458,
45.51842
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56869,
45.54187
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58653,
45.52648
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53971,
45.58947
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56798,
45.59034
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53789,
45.60696
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62185,
45.59901
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53078,
45.6037
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56958,
45.56543
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60142,
45.532
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.79904,
45.47198
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54575,
45.59611
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.82232,
45.50926
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67268,
45.50779
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61919,
45.60604
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55576,
45.61155
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74559,
45.4904
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73373,
45.50336
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73937,
45.49271
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.76888,
45.50762
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68414,
45.51518
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73296,
45.48754
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63491,
45.57537
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64526,
45.5688
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64777,
45.58223
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61517,
45.53993
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62733,
45.49878
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59505,
45.56956
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67303,
45.50823
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5501,
45.62434
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54971,
45.52768
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54692,
45.56121
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61007,
45.53917
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63626,
45.60113
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56591,
45.57923
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65085,
45.53852
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56511,
45.51083
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57339,
45.50507
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49561,
45.65036
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58796,
45.49121
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50961,
45.59533
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59694,
45.58722
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58031,
45.50695
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5937,
45.59992
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60755,
45.53122
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58105,
45.56103
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54677,
45.56916
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59522,
45.5507
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55475,
45.56538
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.87239,
45.47345
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64593,
45.53431
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59522,
45.55781
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55235,
45.54897
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64207,
45.59629
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63238,
45.60243
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6562,
45.55051
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65056,
45.58398
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55136,
45.54692
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59792,
45.53164
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58812,
45.62073
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68871,
45.53803
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53585,
45.54782
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66756,
45.55614
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73875,
45.49029
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61941,
45.49504
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57176,
45.50859
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68372,
45.51342
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54871,
45.66846
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60599,
45.56779
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57127,
45.6592
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63105,
45.46262
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66418,
45.50677
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60424,
45.52826
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62862,
45.51027
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.90163,
45.43764
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56168,
45.51559
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.85016,
45.45893
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60564,
45.52356
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70069,
45.47514
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70144,
45.5063
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71011,
45.52542
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58588,
45.58118
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5488,
45.5319
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54174,
45.59849
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69335,
45.44787
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6839,
45.51327
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.86952,
45.49183
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.8252,
45.43072
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.84885,
45.48701
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71857,
45.53122
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69688,
45.46941
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83169,
45.46613
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51265,
45.60275
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53103,
45.51162
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55254,
45.44886
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60503,
45.47762
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56026,
45.51492
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57448,
45.48687
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55148,
45.52534
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49693,
45.63048
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55947,
45.66116
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53465,
45.5965
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54982,
45.5779
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64662,
45.59041
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57413,
45.58051
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58874,
45.56549
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54662,
45.66577
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61833,
45.55399
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56471,
45.61774
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49776,
45.68998
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66083,
45.47672
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55535,
45.48707
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5806,
45.53898
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60117,
45.48098
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50151,
45.51289
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.37593,
45.50698
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.46287,
45.51438
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.39281,
45.51014
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47725,
45.52748
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.46864,
45.45949
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.44553,
45.62403
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55808,
45.60817
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49399,
45.51636
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49287,
45.54627
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65165,
45.4409
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.38457,
45.50669
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51908,
45.59843
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68504,
45.51575
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56348,
45.65894
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5818,
45.45704
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56009,
45.53922
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.81424,
45.51082
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6075,
45.56248
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70094,
45.50649
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55779,
45.48486
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60311,
45.4793
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67175,
45.52436
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56859,
45.54963
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.4864,
45.49915
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59009,
45.438
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5132,
45.51892
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5222,
45.52215
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.76596,
45.49833
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6221,
45.49826
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66975,
45.52756
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54697,
45.48975
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62357,
45.47476
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58168,
45.55174
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55484,
45.51655
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.39823,
45.4971
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64452,
45.45818
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65097,
45.5844
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53465,
45.5965
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60044,
45.60342
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5338,
45.54726
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60299,
45.49523
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68283,
45.51411
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59769,
45.53173
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75429,
45.49531
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63733,
45.54746
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70832,
45.52471
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6193,
45.47903
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57521,
45.49352
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61629,
45.57743
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73817,
45.44804
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54875,
45.54372
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65216,
45.44256
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.42491,
45.4625
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61245,
45.56514
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.7514,
45.49733
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63986,
45.5993
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65305,
45.57885
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57414,
45.5129
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61974,
45.57914
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65079,
45.48899
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58485,
45.48212
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55052,
45.44958
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60771,
45.6209
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68723,
45.51079
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62408,
45.55323
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58393,
45.48168
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.86995,
45.46267
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67744,
45.51818
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62313,
45.47523
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6927,
45.50623
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57997,
45.48465
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57956,
45.48974
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83,
45.46726
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54344,
45.60495
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62921,
45.46358
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56234,
45.49902
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66048,
45.56655
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65015,
45.47268
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60471,
45.44708
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58049,
45.65072
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57912,
45.49564
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.46268,
45.51437
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57789,
45.51159
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61337,
45.51493
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.87389,
45.47746
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.552,
45.51153
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53783,
45.55556
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67764,
45.50404
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64136,
45.54247
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61114,
45.55765
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53523,
45.46963
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53733,
45.58954
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50509,
45.674
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67638,
45.51029
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.41447,
45.50127
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57697,
45.52311
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.37451,
45.50514
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60719,
45.53162
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.448,
45.59975
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51348,
45.52824
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65639,
45.55055
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50333,
45.51393
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66449,
45.56198
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5168,
45.53227
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.48759,
45.50067
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.41154,
45.4913
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68264,
45.51295
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66729,
45.55586
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56676,
45.52176
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55247,
45.54509
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59749,
45.62622
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59673,
45.63836
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63857,
45.52778
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.44351,
45.43887
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6198,
45.6068
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50507,
45.54712
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.44289,
45.52512
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.805,
45.58883
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71193,
45.57687
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.88466,
45.46268
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.41589,
45.49784
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47328,
45.48935
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.44199,
45.53969
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57761,
45.60284
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47987,
45.44928
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70732,
45.44807
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.42072,
45.50066
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56728,
45.50646
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47182,
45.43858
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59844,
45.55872
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47464,
45.46448
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73012,
45.52628
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59174,
45.48796
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64564,
45.45863
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5714,
45.55991
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60574,
45.4729
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63937,
45.55034
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59098,
45.52288
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66825,
45.44633
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60847,
45.61941
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49336,
45.51045
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.46211,
45.53131
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53935,
45.65092
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5637,
45.46285
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57714,
45.57666
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54978,
45.53256
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5528,
45.5243
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54693,
45.57639
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.597,
45.57753
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68521,
45.52358
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51898,
45.51685
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58292,
45.51369
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65249,
45.50488
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5753,
45.57882
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57914,
45.64913
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.44948,
45.48217
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71931,
45.48536
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83076,
45.47263
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62633,
45.47174
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53499,
45.66468
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72156,
45.53143
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63235,
45.59082
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71853,
45.53178
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5222,
45.52082
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6685,
45.53542
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65421,
45.49339
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59542,
45.55775
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49963,
45.64349
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.52501,
45.59343
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57574,
45.46237
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51329,
45.65914
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64278,
45.57174
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5957,
45.58598
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60522,
45.58448
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57415,
45.47625
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51643,
45.63638
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5338,
45.54726
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6154,
45.51992
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51727,
45.57962
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58526,
45.48866
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66194,
45.5003
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63395,
45.50166
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.52,
45.62403
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61313,
45.54076
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57451,
45.5395
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66602,
45.53358
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6199,
45.47937
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6127,
45.62907
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50935,
45.63243
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57914,
45.64913
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56744,
45.4774
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58531,
45.54609
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61625,
45.6031
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65361,
45.55439
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64895,
45.58343
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66297,
45.43211
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64304,
45.51484
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60102,
45.53839
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57313,
45.51949
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58381,
45.55787
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60511,
45.47335
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64033,
45.55038
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55286,
45.59766
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61989,
45.61449
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59351,
45.56811
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.8215,
45.44197
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58801,
45.46206
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75158,
45.45734
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5714,
45.53852
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63886,
45.5764
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60833,
45.4291
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64692,
45.44224
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.7633,
45.44874
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67307,
45.50825
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60651,
45.61754
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83555,
45.47371
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54123,
45.56366
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60773,
45.47032
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69254,
45.44178
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62212,
45.44967
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56728,
45.48998
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58038,
45.61679
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.45544,
45.62046
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70654,
45.52259
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62998,
45.48273
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59068,
45.43624
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60601,
45.56249
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62243,
45.43916
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57634,
45.45568
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74097,
45.44656
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64764,
45.47154
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66039,
45.4757
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64953,
45.46991
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59965,
45.55986
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56715,
45.51048
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64885,
45.4432
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69213,
45.43756
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62104,
45.60759
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51727,
45.3612
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66811,
45.43177
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63014,
45.43227
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57915,
45.48809
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63277,
45.42963
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54437,
45.4594
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65487,
45.46217
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.7188,
45.53158
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57933,
45.49386
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63895,
45.49495
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59161,
45.43453
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63415,
45.48232
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60404,
45.4743
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66229,
45.45927
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62506,
45.52148
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62767,
45.49841
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61088,
45.42615
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.44006,
45.45797
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.45706,
45.45144
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.88374,
45.46316
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51806,
45.53115
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47442,
45.57835
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.46498,
45.47962
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58096,
45.61842
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5153,
45.36071
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.46767,
45.46575
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40595,
43.74552
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35847,
43.67835
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39517,
43.64567
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36337,
43.65256
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35261,
43.70199
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.80611,
43.3536
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34439,
43.6775
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.86021,
43.89035
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.89003,
43.27731
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.88631,
43.87058
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22612,
43.81288
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.86557,
43.8779
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.69925,
43.93465
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82965,
43.38846
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.78829,
43.40672
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86419,
43.2459
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.83348,
43.34967
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76486,
43.3714
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.79805,
43.21171
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.80532,
43.33081
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.94899,
43.24526
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.81057,
43.1925
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75687,
43.24343
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45054,
43.65014
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7873,
43.36049
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86833,
43.23517
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60477,
43.72904
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76667,
43.22855
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.02742,
43.19368
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.08995,
43.83592
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.84394,
43.17805
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74283,
43.23275
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.04134,
43.84683
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32774,
43.7194
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.94659,
43.89055
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.87732,
43.8868
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7658,
43.22884
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5377,
43.77205
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.91762,
43.94325
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.89445,
43.20024
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54017,
43.84763
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.03989,
43.84412
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86324,
43.26329
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49445,
43.78163
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60792,
43.75681
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76968,
43.18906
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46048,
43.85505
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45388,
43.82817
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2803,
43.71065
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5191,
43.95467
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.91566,
43.9181
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.88779,
43.25949
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38907,
43.8239
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.96705,
43.91268
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.79716,
43.19385
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48085,
43.82948
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45618,
43.80475
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86763,
43.25596
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.9447,
43.26542
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45433,
43.80976
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.77337,
43.26051
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.87704,
43.95215
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54398,
43.8475
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.88281,
43.23882
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.88136,
43.93765
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.93013,
43.94063
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.79637,
43.24685
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.9222,
43.24329
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54881,
43.82763
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86337,
43.19596
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.82919,
43.88132
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.86255,
43.89002
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43166,
43.83883
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.84862,
43.94198
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60471,
43.72913
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86201,
43.19865
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.88057,
43.93683
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73055,
43.21902
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3746,
43.88062
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.79597,
43.90917
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48154,
43.83568
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45405,
43.86757
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36988,
43.82208
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.84223,
43.87548
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.86462,
43.94933
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.93103,
43.94045
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5224,
43.77535
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.89723,
43.87138
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.87798,
43.88095
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46091,
43.8085
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.19877,
43.8003
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62019,
43.79307
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.83985,
43.90303
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.9377,
43.86937
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.81586,
43.26115
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51403,
43.59887
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.87275,
43.93442
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8521,
43.2525
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41558,
43.78237
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.81418,
43.24137
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.93768,
44.10221
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5119,
43.8551
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8682,
43.25185
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.01642,
43.86413
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5189,
43.88698
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.88568,
43.87086
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.90769,
43.23255
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50753,
43.83358
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25245,
43.7751
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26271,
43.73131
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86864,
43.25263
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8392,
43.24755
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40943,
44.31358
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.94469,
43.22723
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.78652,
43.24276
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49086,
43.76492
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45625,
43.95195
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3817,
44.31908
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25927,
43.75263
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44812,
43.75355
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28468,
43.86733
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43915,
43.87995
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.83864,
43.22898
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38102,
43.91618
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.93124,
43.25729
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.88277,
43.23869
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26033,
43.96122
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.80765,
43.21999
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.89525,
43.27243
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3862,
43.86273
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3208,
43.89687
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.85232,
43.22136
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41437,
43.7825
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86408,
43.24457
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41735,
43.78672
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.90378,
43.259
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.87994,
43.25771
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30415,
43.8409
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27227,
43.81861
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.927,
43.16304
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42295,
43.90388
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72287,
43.21823
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43885,
43.87792
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23898,
43.89795
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30923,
43.86157
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.83013,
43.24894
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4624,
43.84848
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.88062,
43.25079
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44572,
43.90755
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43692,
43.86958
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35104,
43.85137
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23087,
43.87968
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42645,
43.83943
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42565,
43.83998
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.232,
43.88088
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44768,
43.77297
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42017,
43.79897
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44913,
43.92185
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46973,
44.00827
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46259,
43.74948
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43812,
43.87533
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46757,
43.80715
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54855,
43.7892
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49875,
43.80048
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28048,
43.69296
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3941,
43.64696
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22468,
43.76007
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42317,
43.77818
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30126,
43.72483
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26412,
43.73216
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45512,
43.73301
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49071,
43.76495
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58204,
43.74339
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45235,
43.73348
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43717,
43.73681
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26606,
43.72774
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26351,
43.73223
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39916,
43.70565
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39265,
43.70799
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59392,
43.71367
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36916,
43.6443
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56152,
43.72307
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23355,
43.72793
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49177,
43.68775
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35699,
43.81047
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26122,
43.77207
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42604,
43.63547
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43257,
43.6693
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49715,
43.60242
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30122,
43.69561
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25443,
43.77163
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34117,
43.73801
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26533,
43.73308
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46138,
43.76994
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60826,
43.75647
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31359,
43.66701
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46784,
43.67245
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46354,
43.67432
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82899,
43.32476
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61662,
43.81398
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.89336,
43.20266
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82584,
43.24396
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52002,
43.60744
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3939,
43.72678
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44248,
43.89412
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.6809,
43.91045
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44283,
43.89515
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52891,
43.62647
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27177,
43.87047
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60957,
43.73186
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86417,
43.26127
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82621,
43.23431
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35224,
43.66458
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.79755,
43.19363
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8706,
43.20641
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.90068,
43.95837
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75851,
43.21706
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8065,
43.24848
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22279,
43.74222
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.85937,
43.20367
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.93173,
43.86808
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64596,
43.21656
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33652,
43.77583
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8047,
43.24512
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.95762,
43.24127
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.77361,
43.23001
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.87212,
43.24973
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.04705,
43.88518
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.91297,
43.2305
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71487,
43.22592
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.88233,
43.2276
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59287,
43.66135
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40994,
43.63618
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42204,
43.79752
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40855,
43.70467
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31282,
43.82248
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6231,
43.77288
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8688,
43.26135
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.94175,
43.24924
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.17475,
43.78977
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.93388,
43.23289
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.486,
44.05265
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.01019,
43.1972
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54624,
43.69723
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34959,
43.72073
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44673,
43.79713
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24655,
43.926
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18367,
43.75097
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.85633,
43.31316
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30122,
43.68932
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.85616,
43.23702
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42412,
43.8143
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51247,
43.77887
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.87693,
43.88682
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86138,
43.22442
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28201,
43.68118
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86887,
43.25478
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59646,
43.73572
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4513,
43.80283
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43335,
43.80648
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41898,
43.79438
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43954,
43.86612
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76604,
43.22857
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44491,
43.79084
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46395,
43.84643
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22652,
43.86448
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43983,
43.89522
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26443,
43.74939
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41431,
43.87634
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40912,
43.74325
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4375,
44.08737
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50907,
43.77704
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24022,
43.96668
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.85085,
43.90827
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.84027,
43.19952
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.91879,
43.26065
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41589,
43.8783
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36062,
43.85915
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.03533,
43.84122
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45641,
44.07848
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.97514,
43.9616
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47369,
43.94062
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42979,
43.6721
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34033,
43.8275
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4768,
43.92093
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82406,
43.25846
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3052,
43.84332
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6073,
43.76695
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.08517,
43.83293
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39857,
43.70509
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44092,
43.88703
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45072,
43.73444
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46204,
43.7492
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40511,
43.8343
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30785,
43.8617
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.11871,
43.8769
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.09285,
43.87855
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.70612,
43.93307
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.9075,
43.87422
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.79154,
43.3354
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49323,
43.85985
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40657,
43.84067
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41992,
43.79747
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47272,
43.90647
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33089,
43.89497
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41625,
43.78267
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38618,
43.84352
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27958,
43.71016
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86412,
43.26781
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.87211,
43.24828
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3441,
43.67096
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76608,
43.22854
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.94241,
43.22738
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74255,
43.23291
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82091,
43.23576
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31846,
43.76473
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.03168,
43.86003
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44466,
44.21727
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48642,
44.05262
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51785,
43.60057
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30849,
43.86157
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.8772,
43.88947
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49466,
45.50504
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35909,
43.8543
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59515,
43.74423
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59752,
43.77845
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32273,
43.77546
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8364,
43.22741
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25771,
43.77465
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54768,
43.78965
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.02067,
43.84923
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.93044,
43.23418
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28855,
43.69415
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24332,
43.83805
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50866,
43.72082
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.80917,
43.3396
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35251,
43.66543
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.98466,
43.88958
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35393,
43.78996
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.87123,
43.9148
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.8641,
43.89385
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42858,
43.83338
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43478,
43.8605
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45535,
43.94702
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35464,
43.69246
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34039,
43.6877
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66177,
45.47569
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.77223,
43.23988
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24711,
43.77313
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30193,
43.68904
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.87891,
43.88628
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54303,
43.79407
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.83791,
43.91297
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73998,
43.36342
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22579,
43.76109
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60414,
43.73003
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41675,
43.78465
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.43919,
45.4395
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44729,
43.79882
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33759,
43.77581
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.83847,
43.92287
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.857,
43.95617
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42989,
43.71964
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48651,
43.7065
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.43867,
45.44466
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59012,
45.51712
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36699,
43.77122
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.52184,
45.5241
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49138,
45.54142
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28145,
43.76559
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49839,
45.49091
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.9456,
43.87903
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.43756,
45.51093
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55431,
45.56004
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47454,
45.46528
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.85886,
43.91122
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.43092,
45.58734
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.08487,
43.83307
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47203,
45.52534
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50955,
43.75882
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62122,
43.72447
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34568,
43.66692
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.79031,
43.33376
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49292,
45.64035
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.91089,
43.20602
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2356,
43.88153
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53841,
43.81217
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48645,
44.05287
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4079,
43.84507
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43549,
43.86377
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24125,
43.90517
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.94209,
43.24869
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42722,
43.77705
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52772,
43.80942
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53318,
43.82752
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47957,
43.93187
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26884,
43.8418
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3685,
43.84758
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71527,
43.75783
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74183,
43.64574
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74857,
43.78292
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63941,
43.70689
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.77468,
43.66891
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.89929,
45.39843
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.92949,
45.37882
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.89627,
45.3955
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.92935,
45.37864
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.86925,
45.42716
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.9529,
45.40333
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.91904,
45.40369
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.88392,
45.41183
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.87214,
45.42219
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.94301,
45.41076
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.89449,
45.37528
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.91477,
45.3896
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.88845,
45.40242
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.8843,
45.41176
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.92931,
45.37843
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.91869,
45.39847
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.88077,
45.41564
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73785,
43.86601
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.96405,
45.3769
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.89382,
45.39985
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.86967,
45.44979
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.83722,
45.41165
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73439,
43.66531
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.88458,
45.41177
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.88816,
45.41114
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.88407,
45.4125
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.92437,
45.38543
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.95306,
45.40226
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72594,
43.65636
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72052,
43.71854
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72528,
43.70547
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.84126,
45.40377
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72007,
43.71894
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.85707,
45.36626
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70583,
43.69118
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.77198,
43.74759
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.92357,
45.38673
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.95263,
45.4024
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.95624,
45.40324
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.95128,
45.47191
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74171,
43.65591
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54155,
43.84845
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59224,
45.51337
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.94494,
45.41565
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.88526,
45.41173
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.92538,
45.37774
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76397,
43.67984
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.95345,
45.40233
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.90595,
45.38933
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60455,
43.72888
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48637,
43.75509
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.5107,
43.50558
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.48873,
43.44375
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.52631,
43.44013
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.4677,
43.3941
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.4679,
43.39492
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.5461,
43.4972
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.5469,
43.48567
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.55385,
43.53755
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.5214,
43.46175
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.48967,
43.45145
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.47797,
43.4337
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.52946,
43.49818
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.44218,
43.42228
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.5051,
43.45497
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.5414,
43.47343
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.56118,
43.43557
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.4981,
43.45315
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.52623,
43.4758
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.48762,
43.44943
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.51712,
43.4152
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.59327,
43.47097
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.53955,
43.47441
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.49915,
43.4058
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.50906,
43.4765
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.40763,
43.45278
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.531,
43.47405
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.56039,
43.43515
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5279,
43.79685
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.86671,
45.67284
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.51815,
43.45557
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5412,
43.84762
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.46288,
43.4226
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.5247,
43.50683
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.4419,
43.42245
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.48878,
43.43267
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.53725,
43.47332
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.86465,
45.44603
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.54546,
43.46124
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.48125,
43.4452
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.47643,
43.44263
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53582,
43.8461
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.26938,
43.57088
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.25603,
43.54947
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.23907,
43.51888
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.26057,
43.57735
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2237,
43.52905
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.27828,
43.54027
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.24037,
43.53764
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22329,
43.5278
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.24599,
43.54572
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.28619,
43.5441
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2259,
43.5272
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.88402,
43.86307
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86953,
43.25287
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.23973,
43.14063
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6956,
44.38215
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64745,
43.5946
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.91537,
43.25783
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.11573,
43.81863
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.06233,
43.10868
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.21938,
43.88142
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32407,
43.76833
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.19025,
43.78758
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75173,
43.61007
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5239,
43.78305
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58383,
44.19238
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.49247,
43.45555
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86961,
43.25288
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6728,
43.5735
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41088,
43.75982
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34395,
43.84283
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22565,
43.52967
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68134,
43.45635
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22604,
44.02073
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64967,
43.59488
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.08407,
43.83108
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7848,
43.46533
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.84222,
43.52418
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82074,
43.67537
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.88885,
43.28895
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63606,
43.70494
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51645,
43.87523
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86943,
43.26507
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72713,
43.49342
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63135,
43.59075
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70167,
44.37828
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71127,
44.40885
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65942,
44.41522
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.67904,
44.34588
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.67332,
44.41088
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6248,
44.349
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6912,
44.38799
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70986,
44.40912
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66064,
44.39572
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68018,
44.34011
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69804,
44.35779
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70984,
44.38795
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.67934,
44.33661
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6738,
44.41101
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70865,
44.4104
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86483,
43.52557
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63102,
44.35097
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50705,
43.71793
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64,
43.60465
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37818,
43.64515
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8288,
43.66765
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73769,
43.24158
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29728,
43.68698
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.88609,
43.87063
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64883,
43.63035
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7842,
43.57678
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.62062,
44.06243
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.24123,
43.50711
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.20141,
43.51524
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46907,
43.70713
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.08366,
43.83083
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.67198,
43.5747
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6286,
43.589
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38178,
43.64437
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.29182,
43.52874
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.67876,
44.39856
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.12518,
44.10393
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.19465,
43.50447
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.5385,
43.47483
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2441,
43.54062
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59278,
43.67142
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52513,
43.7834
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39713,
43.18665
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18793,
43.78645
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59602,
44.02752
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.40365,
43.39065
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52413,
43.78335
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.18576,
43.51562
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22301,
43.56497
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68216,
43.45537
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68747,
43.65882
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43283,
43.83223
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.14028,
43.14388
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37155,
43.76565
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76186,
43.68695
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73593,
44.37254
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4252,
43.84007
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6488,
43.59568
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22165,
43.5536
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26353,
43.9005
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.83099,
43.33947
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3369,
43.77567
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33757,
43.77682
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.31292,
43.53907
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69202,
43.68375
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2943,
43.8075
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.58217,
43.46315
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8425,
43.55983
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6476,
43.59452
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.48998,
43.43464
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41438,
43.78268
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52482,
43.7832
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.5395,
43.47457
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74927,
43.50788
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.95644,
45.4031
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22411,
43.52865
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.28015,
43.55842
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.19158,
43.49929
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69244,
43.70188
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2615,
43.52847
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0199,
43.645
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5832,
45.53122
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.92536,
45.39822
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74079,
43.74743
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.90425,
43.96652
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.5432,
43.49728
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66647,
43.72582
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22897,
43.78537
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22656,
43.52794
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.5794,
43.46307
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.26465,
43.58125
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22558,
43.52968
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86898,
43.25277
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.92294,
43.26175
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.48196,
43.43977
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52274,
43.78447
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.24905,
43.54428
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68916,
44.36084
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43356,
43.63258
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.23963,
43.5185
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68542,
43.5775
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.93906,
45.404
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60329,
45.44673
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.54865,
43.5456
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.23878,
43.51923
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73282,
43.7182
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6501,
43.59443
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.56071,
43.4355
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.06733,
43.47045
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.09483,
43.82714
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.88252,
45.40667
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63353,
45.44188
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75532,
43.5027
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66916,
44.41203
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.52875,
43.49815
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.24526,
43.54587
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.1937,
43.50447
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56102,
43.19852
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.45058,
43.46865
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68177,
43.45598
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.675,
43.72025
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52319,
43.78557
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44965,
43.72543
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32759,
43.67576
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42997,
43.7379
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53629,
43.84782
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.88108,
43.66324
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26219,
43.88355
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64001,
45.42898
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72678,
44.39633
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56637,
43.65298
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72158,
43.7204
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37767,
43.64405
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.03152,
43.86008
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.85782,
43.9018
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.52075,
43.43932
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65392,
43.76514
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.88987,
43.26002
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64995,
43.5946
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62202,
43.21343
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70381,
44.37165
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.56078,
43.43521
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.24513,
43.54218
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56898,
43.77478
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.88537,
43.87069
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50397,
43.61253
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.88423,
45.41174
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.688,
45.43473
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.53429,
43.48295
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.23551,
43.56923
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72044,
43.71882
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86985,
43.25458
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63542,
45.48168
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.54683,
43.47778
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55287,
45.5182
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.82346,
45.44069
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.48302,
43.44993
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57207,
45.53877
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55287,
45.49889
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60789,
45.51495
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64957,
43.59502
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63033,
43.21543
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6348,
45.42158
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76718,
43.58527
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.90422,
43.8885
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67149,
45.46217
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57847,
45.50547
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60488,
45.44706
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58765,
45.52641
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59706,
45.51822
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.11694,
46.74912
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.34588,
46.67889
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.16294,
46.82312
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2843,
46.66235
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.18704,
46.80824
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.29438,
46.76421
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2668,
46.69844
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.28439,
46.76916
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.28402,
46.78407
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.89297,
45.39773
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75182,
45.45527
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.91647,
43.25798
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.0916,
43.8284
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49365,
43.61893
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83175,
45.46627
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73646,
45.52383
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.8467,
45.50962
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.85312,
43.31393
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22533,
43.52864
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.97564,
45.37991
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.9091,
43.9617
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64787,
43.59468
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42962,
43.88243
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.48412,
45.52555
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40802,
43.75062
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.1804,
43.75473
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69825,
43.43973
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37903,
43.64498
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8312,
43.3487
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.78223,
45.44973
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.9243,
45.40535
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74842,
45.49518
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.81805,
45.44922
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75921,
45.44194
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.77731,
45.45006
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.80618,
45.49397
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74889,
45.49917
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.92599,
45.42583
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.78725,
45.50219
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.85383,
45.44763
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.82853,
45.4688
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68364,
45.51355
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83588,
45.46134
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63814,
45.44716
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64808,
45.42538
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.85609,
45.48832
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58389,
45.48983
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65933,
45.45917
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83038,
45.46693
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67213,
45.50834
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59888,
45.42802
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.80923,
45.45419
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59497,
45.44574
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.46521,
45.49385
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.82563,
45.43504
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73198,
45.45588
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68363,
45.51349
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66859,
45.55439
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55778,
45.48552
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74702,
45.50077
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61235,
45.47269
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.7247,
45.4921
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59538,
45.45679
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58147,
45.48268
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37865,
43.64518
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.93739,
43.86568
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60831,
45.45905
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.87681,
45.39835
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.44237,
45.58697
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6498,
45.42507
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83572,
45.42847
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68871,
45.43736
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.52073,
45.52433
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76343,
45.43351
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.78631,
45.44079
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68894,
45.42455
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.6395,
45.49128
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.86559,
45.40736
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69951,
45.41951
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.80718,
45.42183
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.72414,
45.42656
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.64335,
45.49072
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76702,
45.45928
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76799,
45.45984
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.80486,
45.3848
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.65703,
45.4872
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.72086,
45.42496
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.74151,
45.47351
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.7095,
45.43287
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.74599,
45.49247
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73807,
45.42295
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.42663,
45.56279
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73983,
45.46383
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.64095,
45.49096
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69951,
45.42031
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.80663,
45.40016
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.58167,
45.50344
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76566,
45.43703
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76799,
45.46
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.79598,
45.43383
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.72895,
45.45087
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76702,
45.45904
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.71551,
45.4264
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.67078,
45.50263
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.7947,
45.43359
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.71999,
45.42496
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.79263,
45.39872
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68935,
45.49448
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68398,
45.4708
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.8447,
45.41296
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73422,
45.44855
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.74087,
45.47375
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68942,
45.42424
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73438,
45.46032
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68983,
45.42424
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.71726,
45.46832
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.41335,
45.59088
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69518,
45.50016
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73326,
45.43119
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68742,
45.42816
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.72191,
45.4328
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.83199,
45.39672
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.70591,
45.47224
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69126,
45.47047
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.74374,
45.44695
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76422,
45.41544
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68774,
45.48016
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69238,
45.47912
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.7303,
45.42656
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.60606,
45.48576
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.70543,
45.42048
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68303,
45.48159
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.72767,
45.44551
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49196,
45.55778
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76782,
45.46016
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.71407,
45.42744
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.74158,
45.45967
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.74174,
45.47343
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.72862,
45.424
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50239,
45.53011
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.72935,
45.43031
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86958,
43.253
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.91182,
43.88427
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.72411,
45.42657
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50718,
45.53706
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47279,
45.52999
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60532,
45.47319
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.70527,
45.42048
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.884,
45.41169
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51958,
45.58808
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.525,
43.78343
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51614,
45.51963
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.52084,
45.52414
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.63062,
45.48095
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75545,
43.59728
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68375,
45.49408
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.97255,
43.35225
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70057,
43.6957
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6929,
43.70238
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.81219,
43.25412
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3137,
43.85203
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70554,
43.6911
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.43643,
45.51027
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.96068,
45.39216
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.98887,
45.37548
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.98298,
45.42032
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74314,
45.67716
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.702,
45.72086
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.89556,
45.63245
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.24687,
45.5415
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53491,
45.59692
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.32901,
45.614
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.76438,
45.79067
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.41292,
45.78329
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.97798,
45.75094
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50942,
45.65703
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.38033,
45.50956
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65445,
45.71476
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6623,
45.7221
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66982,
45.72411
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67806,
45.73263
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51364,
45.71997
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.44241,
45.68464
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64921,
45.73473
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.39024,
45.57125
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.44641,
45.76766
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.03088,
45.40343
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73111,
45.58087
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60994,
45.74129
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.4902,
45.73403
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.94607,
45.6274
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.8873,
45.53847
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.9976,
45.77627
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.43214,
45.76202
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.89177,
43.8913
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.45664,
45.73518
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.84507,
45.6446
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.87672,
43.88835
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69363,
44.37827
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71623,
44.35458
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22627,
43.52792
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.24837,
43.54462
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.43005,
45.624
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.78787,
43.34033
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61986,
45.49779
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61929,
45.49469
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5662,
45.55679
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57787,
45.54341
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58523,
45.53785
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.44374,
45.757
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61375,
45.5089
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.54175,
43.49507
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51164,
45.60783
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.64294,
45.49096
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59592,
45.5195
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56255,
45.54301
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72341,
45.5313
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58948,
45.51664
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.72887,
45.43015
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.55003,
43.4735
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.16691,
45.57943
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.7821,
43.92088
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.41569,
45.8378
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.93305,
45.37958
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.92767,
45.38237
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.91821,
45.40377
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57734,
45.53761
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56693,
45.6479
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.9897,
45.36808
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56965,
45.53062
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71104,
45.47136
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52413,
43.71617
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.88638,
43.87065
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.89507,
43.94335
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52845,
43.7448
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.70047,
43.90737
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61147,
43.68183
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.28705,
44.35713
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42555,
43.83982
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.04657,
43.94358
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.12055,
43.8124
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41219,
43.76673
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.97307,
43.49532
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.78661,
43.59502
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.16067,
43.79798
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66711,
45.55622
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.44326,
45.78862
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.44989,
45.74216
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.88668,
43.87058
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60197,
45.52556
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36632,
43.83313
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8291,
43.3895
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56876,
45.51223
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65995,
45.547
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.46463,
45.74891
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.42966,
45.81385
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.55655,
43.49358
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70268,
45.53574
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.83849,
43.31737
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.79256,
43.39328
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47021,
45.75297
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66709,
45.55657
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.80899,
43.34043
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.52863,
45.60711
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58984,
45.61426
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66644,
45.56058
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86843,
43.25659
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82317,
43.34246
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.4536,
45.74642
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.52842,
43.4981
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4139,
44.01077
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.06042,
43.85328
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.84856,
43.9418
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.95033,
43.89753
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.03551,
43.84113
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.03727,
43.8878
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.93343,
43.86794
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.0358,
43.85885
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.87724,
43.88755
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.82972,
43.88275
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.12299,
43.81358
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.70655,
45.41991
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.7551,
45.46231
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.77271,
45.43655
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65308,
45.5788
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6329,
45.58777
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62241,
45.62323
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59673,
45.56899
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64882,
45.5452
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.21471,
43.4866
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58471,
45.58666
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.619,
45.61494
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67594,
45.54203
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62495,
45.54782
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65964,
44.41654
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52098,
43.77573
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5371,
43.85113
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61524,
45.62706
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47468,
45.46503
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.40623,
45.49863
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82745,
43.38909
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72941,
44.3802
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.56107,
43.43543
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.67889,
44.33762
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.48706,
45.49971
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47603,
45.47762
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.44044,
45.47295
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.45423,
43.42958
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.51366,
43.4579
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64972,
45.5729
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.42689,
45.4777
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6685,
45.55454
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65731,
45.56127
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50644,
45.54018
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.44167,
43.42148
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.52119,
45.52347
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.85654,
45.40903
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76846,
45.43688
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69782,
45.43567
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76734,
43.37762
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82586,
43.3727
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74561,
43.37464
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.87254,
43.9343
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.8361,
43.95812
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74477,
43.37572
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7972,
43.37294
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.89264,
43.28529
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47192,
45.48834
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.76024,
45.59261
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69637,
43.79669
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53288,
43.83115
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7406,
43.65642
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7202,
43.71896
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46725,
44.2054
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52762,
43.79817
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73361,
43.6662
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65549,
43.77828
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59741,
45.57748
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.78303,
43.67885
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45585,
44.06028
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.67829,
43.78345
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53912,
43.8486
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59872,
45.63763
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44355,
43.81405
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63931,
45.54129
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59816,
45.55904
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60787,
45.54831
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82964,
43.22551
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5342,
45.5964
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54874,
45.53215
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44755,
43.88828
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64095,
45.45564
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5022,
43.8119
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5022,
43.81115
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63484,
45.56029
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65138,
45.5754
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54315,
43.8285
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.9253,
45.56254
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8713,
43.2021
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.87105,
43.25563
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.77387,
43.22983
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.79739,
43.19371
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.94479,
43.22745
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75794,
43.23615
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7871,
43.1843
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8685,
43.25769
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.85007,
45.58727
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7966,
43.32572
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86889,
43.25658
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56962,
45.51207
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47683,
43.84403
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.8464,
45.59023
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.84634,
45.6436
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57623,
45.56144
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.99129,
45.37371
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45402,
43.80976
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.00055,
45.77822
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.99104,
45.76169
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63944,
45.5312
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23185,
43.88088
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.80946,
45.62844
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60905,
43.82533
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41552,
43.78263
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62614,
43.77335
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.80695,
45.62115
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.03887,
45.41217
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.17843,
46.81596
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.10567,
46.81444
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.20414,
46.72697
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.18352,
46.79925
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30582,
43.84632
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.874,
45.66969
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51241,
43.77863
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32996,
43.77485
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49073,
43.82137
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5452,
43.86605
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.99966,
45.77325
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6803,
45.578
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.783,
45.64375
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72329,
45.55581
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.79373,
45.58836
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.84399,
45.67133
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.85632,
45.63382
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71818,
45.55695
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.80341,
45.65155
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.95418,
45.52663
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61373,
43.68333
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54491,
43.70665
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27307,
43.00655
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.28095,
43.00065
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27142,
43.03
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.23095,
42.9616
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.20915,
42.96037
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24346,
43.01264
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.2622,
42.97437
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.30534,
42.98831
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.15776,
42.9916
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.29735,
42.99582
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.25315,
42.98113
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.22048,
43.01833
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.26221,
42.9765
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24571,
42.9861
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.19629,
42.96304
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.29944,
43.02111
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.1901,
43.00066
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.18179,
43.01622
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.21713,
42.99293
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27023,
43.03034
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.15123,
42.99073
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24571,
43.01767
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.1736,
43.00304
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.2487,
42.98548
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24084,
42.97204
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.22617,
43.01683
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.21901,
42.99272
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.2153,
42.98045
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.33454,
42.96036
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24483,
42.98384
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.19023,
43.00062
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24948,
42.98319
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.28138,
43.02542
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.29709,
42.9959
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24553,
42.98565
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.25084,
42.98488
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.20892,
42.96599
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.17422,
43.01843
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.20431,
42.9968
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24895,
42.98238
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.18345,
42.93001
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24702,
42.9974
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.33579,
43.00861
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.23621,
43.00718
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.17411,
43.00121
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.28133,
43.02509
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.19856,
42.99841
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.2326,
42.99081
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.25142,
42.98183
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27377,
43.01251
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.26953,
42.98365
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.22341,
42.93236
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24384,
42.94207
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.3251,
42.97445
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.21383,
43.00691
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24034,
42.99937
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27059,
43.01071
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.29259,
42.94738
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.32149,
43.01222
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.20108,
43.01087
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.32084,
42.97637
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.22312,
42.93206
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.29621,
42.99054
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.18034,
42.96395
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27841,
42.92647
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.22475,
42.93881
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.26677,
42.93996
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.19332,
42.97748
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27316,
42.95619
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24648,
42.96775
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.29808,
42.98905
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.31475,
42.96404
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.21211,
42.94106
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27469,
43.02884
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.19695,
42.96211
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.22663,
42.96204
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.26107,
42.96063
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24783,
42.97895
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.20996,
43.00796
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.18192,
46.75906
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27391,
43.01267
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.25399,
42.94116
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.22651,
42.94526
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27584,
42.99184
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.5235,
43.44888
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24572,
42.98597
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.28312,
43.02667
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.30298,
42.94975
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.17386,
43.00327
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.29238,
42.94741
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.33543,
43.00856
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.23198,
42.96513
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.98325,
43.37142
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.94897,
43.3709
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.98383,
43.38291
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.87627,
43.51932
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.90955,
43.31519
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.87787,
43.51795
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86696,
43.52397
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.97583,
43.35643
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.85854,
43.52218
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86722,
43.52403
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.32426,
45.58054
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40645,
43.83922
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.2232,
42.93218
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86942,
43.52579
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.90206,
43.53188
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.25008,
42.9965
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25887,
43.89314
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25536,
43.85637
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.25219,
42.9957
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.26952,
42.98321
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24073,
43.039
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.25451,
42.99787
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.50832,
43.47152
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.99973,
45.77305
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.2766,
43.00221
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8686,
43.2525
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86443,
43.21719
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.81763,
43.24203
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.17359,
43.00273
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.27142,
46.77686
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2963,
46.89046
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.29222,
46.76958
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.26854,
46.86294
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2155,
46.81174
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.35598,
46.83574
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2359,
46.83198
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.24358,
46.79958
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.35334,
46.83414
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.23262,
46.80086
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22006,
46.84214
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.23878,
46.79662
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.21165,
46.8607
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.23014,
46.8183
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22254,
46.80654
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.26422,
46.86038
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.34462,
46.80158
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.35214,
46.79702
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.37006,
46.79942
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.25638,
46.81158
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2235,
46.83582
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.31573,
46.81494
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.26662,
46.84534
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.26758,
46.86214
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.33926,
46.75462
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2339,
46.8319
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.30622,
46.88878
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.33198,
46.76326
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.35694,
46.8443
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.36022,
46.84662
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.17382,
46.89398
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2147,
46.81238
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.23246,
46.81118
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2515,
46.83358
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.24246,
46.79166
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.23806,
46.84622
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.29686,
46.83254
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.16022,
46.87502
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.30366,
46.75614
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.37222,
46.88894
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.47206,
46.74102
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.30166,
46.77774
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.30542,
46.88918
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.19878,
46.9203
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.26606,
46.8595
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.24046,
46.79686
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2227,
46.80646
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2531,
46.7823
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.28926,
46.83718
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.21902,
46.8575
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.1495,
46.89126
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.21886,
46.84798
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.3775,
46.81334
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.20174,
46.81222
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.36974,
46.8607
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2831,
46.8307
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.27958,
46.78654
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.23838,
46.8307
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.24902,
46.84134
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.30198,
46.8375
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.21646,
46.84638
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.29126,
46.76854
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.26118,
46.79806
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.28566,
46.78302
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2239,
46.81278
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.31958,
46.81038
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2855,
46.81358
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.21286,
46.8527
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.28926,
46.76958
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.26638,
46.8595
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.28198,
46.78558
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.39494,
46.84014
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.36598,
46.76998
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.25365,
46.81934
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.31902,
46.77102
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.44094,
46.87038
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22598,
46.81398
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.83604,
43.23713
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.35302,
46.77134
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.34742,
46.83838
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.30595,
49.07554
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-84.2972,
46.59568
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.7927,
48.57397
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39118,
43.66067
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41532,
45.76091
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.25582,
46.80758
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.27086,
46.77894
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22342,
46.83438
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.27455,
46.73052
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2135,
46.8103
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.26915,
46.72979
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.20583,
43.02264
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22358,
46.81334
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60498,
45.44677
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.4147,
46.85534
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2223,
46.83838
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.23886,
46.85118
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38659,
43.64332
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.36686,
46.74742
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86247,
43.27187
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82544,
43.25367
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.21798,
46.82286
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.2482,
43.0223
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.25246,
46.78238
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4437,
43.65061
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.85109,
43.24738
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.44717,
43.40822
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.40685,
43.38947
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.29493,
46.73224
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.41579,
43.44272
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27277,
43.01029
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.77673,
43.22338
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.84562,
43.2591
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.92899,
43.20865
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.85389,
43.19317
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.24581,
43.54577
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.42208,
43.38988
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.43633,
43.39874
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.44172,
43.42207
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82561,
43.23659
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65626,
45.69964
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.19082,
42.77891
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.19848,
43.01369
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.15965,
42.80341
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2243,
46.81198
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.16728,
42.75342
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.44732,
43.43443
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.45803,
43.43813
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8617,
43.50629
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.85917,
43.53636
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.81772,
43.19747
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82023,
43.25249
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86989,
43.2547
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.87386,
43.19778
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43409,
43.73794
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59075,
43.60296
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73083,
43.55875
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59611,
43.62851
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69182,
43.63529
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64639,
43.59451
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53859,
43.63512
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7603,
43.585
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74124,
43.65651
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58242,
43.55488
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72474,
43.56867
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.57796,
43.57801
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6264,
43.59126
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74282,
43.54002
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62646,
43.58747
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64373,
43.59753
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71384,
43.54627
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76352,
43.58285
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62457,
43.5823
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64647,
43.59358
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66313,
43.63172
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72267,
43.55319
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56952,
43.63388
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52415,
43.64651
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60611,
43.62721
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66681,
43.5371
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73275,
43.57926
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68613,
43.66435
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.676,
43.58638
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74076,
43.65622
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64099,
43.72148
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64395,
43.63513
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63432,
43.73261
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61904,
43.64747
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58882,
43.60248
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59547,
43.71676
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64117,
43.51928
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64555,
43.72189
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64072,
43.72154
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62715,
43.6925
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60962,
43.68838
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6139,
43.6899
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6405,
43.72159
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69112,
43.70198
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61227,
43.73182
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58942,
43.66466
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.78088,
43.57436
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54957,
43.63058
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64594,
43.59381
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64857,
43.65601
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68005,
43.62565
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64299,
43.59125
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58823,
43.61258
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76521,
43.56282
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64206,
43.7212
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54401,
43.5915
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64432,
43.52179
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58043,
43.62895
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72749,
43.60039
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64887,
43.59278
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69697,
43.61313
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64719,
43.69977
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64572,
43.59351
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63009,
43.62739
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.13876,
43.78477
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27964,
43.81102
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66727,
43.65263
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41561,
43.6843
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31259,
43.66724
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46219,
43.74985
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34447,
43.70719
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48869,
43.61511
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41739,
43.68334
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32914,
43.7883
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34223,
43.73269
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36928,
43.65394
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22224,
43.80941
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53809,
43.63554
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30582,
43.73199
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62421,
43.63843
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73818,
43.63131
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74068,
43.65645
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61686,
43.5799
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71146,
43.54422
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68592,
43.64893
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66521,
43.58955
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61925,
43.71863
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58406,
43.56773
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6849,
43.5777
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53855,
43.63579
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4048,
43.70538
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73799,
43.53865
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56377,
43.5934
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64335,
43.58434
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47093,
43.7869
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.20302,
43.80903
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34717,
43.77544
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40891,
43.63504
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41815,
43.67667
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2411,
43.83341
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55019,
43.70486
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40866,
43.70449
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45931,
43.73191
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35799,
43.65307
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5417,
43.64051
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39317,
43.64082
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66146,
43.57058
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61991,
43.72937
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60813,
43.68371
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23048,
43.77337
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69814,
43.60515
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22792,
43.72922
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32393,
43.68417
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29784,
43.6786
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37665,
43.67215
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33952,
43.72273
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39153,
43.7119
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2396,
43.79521
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27869,
43.75967
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23274,
43.7402
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29133,
43.74598
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39185,
43.64975
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32536,
43.6644
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29889,
43.7616
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60156,
43.73469
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3981,
43.70546
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35152,
43.66269
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51684,
43.59428
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22029,
43.81081
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68005,
43.67327
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5135,
43.73919
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5782,
43.70748
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46621,
43.66928
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51595,
43.59569
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60375,
43.73391
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38648,
43.7599
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72766,
45.58241
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.13766,
43.7951
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18333,
43.78843
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2563,
43.77468
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23826,
43.81885
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38017,
43.66591
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2298,
43.82272
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29006,
43.80283
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30428,
43.77953
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33886,
43.65838
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31246,
43.68644
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72274,
45.52934
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38693,
43.65068
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28862,
43.88457
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45103,
43.73456
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48739,
43.76418
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36698,
43.7132
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32419,
43.66463
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25959,
43.77398
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24377,
43.80885
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33057,
43.71689
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29674,
43.80112
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76551,
43.22862
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53894,
43.73902
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22603,
43.73069
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24016,
43.79592
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34161,
43.81689
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26769,
43.75837
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3104,
43.74191
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3023,
43.72419
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.21221,
43.78106
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27995,
43.71024
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36513,
43.65702
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75744,
43.5662
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24187,
43.79312
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33402,
43.75906
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38136,
43.7875
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53559,
43.63774
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61953,
43.68757
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37817,
43.72125
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26336,
43.73139
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24288,
43.81241
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47842,
43.63049
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.57767,
43.74406
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37852,
43.646
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32705,
43.69435
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.20565,
43.76391
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26307,
43.73272
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24553,
43.74018
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29074,
43.74633
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.397,
43.70693
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24402,
43.73756
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34506,
43.67967
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27472,
43.74907
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25226,
43.72799
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29579,
43.74527
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35195,
43.71643
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29039,
43.69658
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24922,
43.77696
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31561,
43.75876
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28018,
43.71046
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26407,
43.73349
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3017,
43.68909
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26281,
43.73176
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49887,
43.7614
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2632,
43.73241
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28226,
43.80453
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5053,
43.62566
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25314,
43.73549
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.21021,
43.78139
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31546,
43.77703
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46666,
43.68199
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38202,
43.65197
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33062,
43.65532
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37915,
43.64604
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44106,
43.67338
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50957,
43.75882
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.232,
43.77625
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38243,
43.65261
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44106,
43.70961
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40365,
43.68619
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48267,
43.62363
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33019,
43.65615
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56716,
43.64449
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18528,
43.7852
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24779,
43.73688
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37228,
43.66138
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51744,
43.75745
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54056,
43.75237
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3089,
43.7785
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.16729,
43.76461
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53374,
43.73481
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48231,
43.66581
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35013,
43.65954
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3416,
43.79517
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62039,
43.7287
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51724,
43.66062
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35845,
43.67677
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39506,
43.70747
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24149,
43.83435
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59525,
43.68689
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26373,
43.73306
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36018,
43.65442
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5396,
43.73919
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6188,
43.68738
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32854,
43.69572
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55236,
43.7498
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.17979,
43.81957
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60991,
43.7335
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33696,
43.81835
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31069,
43.78512
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45927,
43.65553
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.78273,
45.61634
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32385,
43.68347
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42721,
43.66266
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41486,
43.78128
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34124,
43.76332
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49438,
43.70488
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23258,
43.80292
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27967,
43.71007
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22635,
43.7623
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35861,
43.71302
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39164,
43.68761
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36021,
43.75279
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27947,
43.71037
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72956,
45.57947
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3517,
43.69301
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.1932,
43.76369
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45863,
43.71313
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.304,
43.72457
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54302,
43.63317
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36568,
43.64497
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28019,
43.76614
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25856,
43.78947
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33946,
43.72253
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30609,
43.79888
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5437,
43.59211
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43423,
43.73772
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26563,
43.75155
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51513,
43.74653
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31116,
43.78558
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45293,
43.65834
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43866,
43.679
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5,
43.72271
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39983,
43.67446
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33632,
43.77565
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29717,
43.72458
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51422,
43.68892
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32468,
43.81616
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33451,
43.71056
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32415,
43.77806
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25798,
43.73466
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35856,
43.67789
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22526,
43.7599
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23739,
43.79008
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59973,
43.75307
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30249,
43.81336
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23253,
43.82627
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3051,
43.82395
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26484,
43.7327
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41306,
43.6454
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51159,
43.64791
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3236,
43.76087
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27981,
43.70999
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30904,
43.66336
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30546,
43.70713
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5211,
43.62233
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48985,
43.76628
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41446,
43.7804
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40398,
43.70556
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46029,
43.65565
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.13092,
43.78086
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25174,
43.82431
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53502,
43.63855
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35831,
43.67914
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29685,
43.71061
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34326,
43.70699
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30449,
43.81799
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27951,
43.71016
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38422,
43.78678
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56567,
43.64494
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.20554,
43.80827
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.19264,
43.78562
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37776,
43.65057
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43697,
43.73685
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35771,
43.68124
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2997,
43.75765
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53611,
43.63762
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35738,
43.68213
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42661,
43.66234
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.17174,
43.80807
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4012,
43.72534
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26239,
43.88443
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36022,
43.75309
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24343,
43.71572
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45068,
43.73427
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38345,
43.64795
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52107,
43.63903
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35767,
43.80972
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34944,
43.69752
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28829,
43.69364
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54225,
43.61217
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53868,
43.73917
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33191,
43.7524
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27853,
43.84378
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41475,
43.78073
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23963,
43.81377
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4899,
43.61375
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55487,
43.73172
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51104,
43.64828
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18725,
43.77119
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52353,
43.71748
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42582,
43.70347
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29716,
43.82542
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2637,
43.73139
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54382,
43.59167
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26416,
43.74904
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.20247,
43.80875
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34692,
43.7758
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2784,
43.83021
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43995,
43.76218
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27071,
43.90356
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3465,
43.77552
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50344,
43.70302
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39771,
43.65306
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23582,
43.73955
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25709,
43.77475
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26367,
43.73239
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50045,
43.6215
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.21808,
43.74089
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.13004,
43.78072
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53709,
43.75311
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56787,
43.67408
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45421,
43.69481
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32412,
43.74095
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26605,
43.73315
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4067,
43.65393
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28778,
43.76415
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52723,
43.71664
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56815,
43.71504
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29685,
43.7106
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30282,
43.69524
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32389,
43.68399
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43093,
43.7248
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41807,
43.68275
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44331,
43.67839
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42322,
43.69519
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29283,
43.80214
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26278,
43.7989
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26392,
43.80177
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.256,
43.77475
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23383,
43.78118
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27357,
43.76712
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24343,
43.83827
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35643,
43.64882
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39751,
43.64502
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22512,
43.75996
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37181,
43.71206
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.19954,
43.76532
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33417,
43.72189
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35805,
43.67701
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60581,
43.7338
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47101,
43.76806
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27156,
43.76783
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37759,
43.76899
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26162,
43.77364
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.21585,
43.79387
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26401,
43.73227
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.17083,
43.8094
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39611,
43.69846
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.351,
43.6931
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49191,
43.76632
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25264,
43.77544
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49825,
43.68241
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44199,
43.68642
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50238,
43.69748
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46589,
43.66839
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42011,
43.70222
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5135,
43.75381
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45233,
43.6561
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45237,
43.656
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31115,
43.66987
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31621,
43.80752
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40033,
43.65909
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35499,
43.79969
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41505,
43.7817
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39856,
43.70451
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28941,
43.82778
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34088,
43.72724
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36357,
43.81066
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64253,
43.7037
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29022,
43.7608
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41538,
43.63638
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36891,
43.65469
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36521,
43.71357
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50866,
43.59994
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42005,
43.79729
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29359,
43.81783
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31354,
43.6669
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41659,
43.784
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27633,
43.83087
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40101,
43.80212
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51571,
43.59524
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18774,
43.77256
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33324,
43.75928
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48251,
43.66566
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40676,
43.67428
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60287,
43.6864
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54147,
43.62433
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55746,
43.64136
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55668,
43.60977
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26525,
43.73309
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34766,
43.75552
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2761,
43.78604
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40327,
43.74424
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49905,
43.65007
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60294,
43.72052
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53503,
43.63816
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53609,
43.63729
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46937,
43.78754
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47774,
43.73367
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43459,
43.73118
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56882,
43.6868
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26415,
43.7319
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62115,
43.68747
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50106,
43.72249
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38824,
43.74726
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62213,
43.74689
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.77347,
45.52566
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46056,
43.77028
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4154,
43.63632
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27847,
43.78542
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25554,
43.77479
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32245,
43.76023
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50908,
43.60143
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40647,
43.74516
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3528,
43.70229
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25909,
43.78979
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40911,
43.74325
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4465,
43.63975
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26319,
43.73317
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39865,
43.7046
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27147,
43.76772
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24145,
43.77453
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22377,
43.82565
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48386,
43.65
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18742,
43.75011
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38423,
43.78677
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35307,
43.66857
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33525,
43.78802
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25862,
43.69888
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24517,
43.79262
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34559,
43.81446
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37901,
43.64594
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25914,
43.77429
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34671,
43.65962
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39041,
43.65006
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58429,
43.74026
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.16088,
43.79311
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53683,
43.71586
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32893,
43.67334
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3291,
43.69648
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37777,
43.72138
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22138,
43.81953
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.17963,
43.81932
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28647,
43.74703
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58936,
43.73212
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28848,
43.69377
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31471,
43.67833
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37855,
43.66206
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37628,
43.71131
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3657,
43.79025
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27961,
43.78796
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25729,
43.8353
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41229,
43.78037
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41129,
43.66653
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28198,
43.71434
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32582,
43.70487
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48588,
43.63417
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48409,
43.64994
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35985,
43.8113
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45108,
43.66581
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55903,
43.60984
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4443,
43.6623
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22723,
43.76509
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.487,
43.74464
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30136,
43.68892
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.20311,
43.75289
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42198,
43.75907
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54434,
43.59191
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36695,
43.65511
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46687,
43.6699
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43936,
43.69809
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26075,
43.79432
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32649,
43.71282
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40995,
43.6515
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28258,
43.76964
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52417,
43.61511
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24019,
43.79643
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30816,
43.73839
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54512,
43.6319
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41473,
43.78099
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37906,
43.64582
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54478,
43.76299
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36786,
43.66414
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37391,
43.66505
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36837,
43.6655
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3797,
43.64015
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39221,
43.6385
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39994,
43.64453
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36369,
43.65406
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46141,
43.65824
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28635,
43.82551
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39921,
43.70476
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28083,
43.79097
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26672,
43.80821
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26323,
43.73199
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29235,
43.82705
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18563,
43.7853
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32509,
43.82135
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61047,
43.73701
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44558,
43.63835
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26528,
43.73258
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41994,
43.6405
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5112,
43.64686
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39019,
43.74677
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18575,
43.78536
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26145,
43.77029
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41372,
43.7609
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39992,
43.76443
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50863,
43.77647
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51352,
43.74025
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35393,
43.64515
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30647,
43.70523
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41482,
43.78035
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4265,
43.63429
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51358,
43.75835
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42621,
43.63591
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4004,
43.6579
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54527,
43.72107
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3922,
43.63843
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40443,
43.64844
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46667,
43.63777
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29274,
43.71418
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25229,
43.75403
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41957,
43.64395
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3658,
43.65523
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38572,
43.65105
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34681,
43.77607
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40602,
43.74531
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23676,
43.72177
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18812,
43.77352
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63243,
43.74777
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46665,
43.75156
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59406,
43.73347
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59907,
43.68668
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44136,
43.76739
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30111,
43.68933
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31308,
43.68639
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30455,
43.71837
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50051,
43.73865
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33189,
43.75978
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41026,
43.70848
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51493,
43.74701
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39925,
43.70812
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28134,
43.68153
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.251,
43.71797
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3016,
43.68886
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25737,
43.77446
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28914,
43.69443
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36543,
43.64356
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34288,
43.66771
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35295,
43.66603
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24637,
43.73668
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30063,
43.72456
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38088,
43.6657
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25798,
43.73466
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32088,
43.67687
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35614,
43.6866
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44186,
43.76864
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44282,
43.6773
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37807,
43.72118
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38234,
43.70992
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34184,
43.73119
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40006,
43.70602
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32742,
43.71444
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35428,
43.79081
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.17566,
43.80742
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.19938,
43.80139
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24351,
43.81362
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.20029,
43.76537
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37059,
43.69912
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32635,
43.72416
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47534,
43.70951
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43069,
43.71894
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39958,
43.7064
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.20283,
43.76459
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38302,
43.64805
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34103,
43.68957
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31736,
43.74141
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27022,
43.80736
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29018,
43.73411
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31659,
43.82069
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28075,
43.76522
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33757,
43.89479
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2915,
43.89555
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41678,
43.784
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26374,
43.73236
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47386,
43.69049
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23326,
43.78193
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39312,
43.68815
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42204,
43.64
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4525,
43.65649
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37981,
43.66169
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35822,
43.67718
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44865,
43.65229
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25455,
43.81049
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43184,
43.64962
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39064,
43.65
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37077,
43.65425
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34652,
43.77012
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41599,
43.68361
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44018,
43.6502
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44128,
43.67833
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35815,
43.67701
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29605,
43.67083
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40341,
43.66596
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42603,
43.63538
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55021,
43.70487
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53535,
43.63785
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33374,
43.71005
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35845,
43.67677
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31155,
43.66736
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39362,
43.64925
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37238,
43.65392
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31666,
43.66638
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43071,
43.64186
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37771,
43.64869
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25819,
43.77426
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43557,
43.64075
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58911,
43.73134
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29938,
43.82558
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29537,
43.7469
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29674,
43.80121
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60856,
43.72043
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53153,
43.66322
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52714,
43.62186
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39807,
43.64829
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.21211,
43.78094
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35232,
43.66483
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46255,
43.74953
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.1701,
43.78099
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31007,
43.75918
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23939,
43.79362
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25083,
43.71897
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27053,
43.71418
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22194,
43.74248
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22474,
43.74201
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27828,
43.76637
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38107,
43.6565
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50063,
43.7624
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.17606,
43.78955
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43347,
43.79051
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18546,
43.78456
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18518,
43.78504
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60821,
43.75647
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55476,
43.61935
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49145,
43.66718
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54978,
43.66391
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62487,
43.75278
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38893,
43.75703
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55649,
43.72367
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45114,
43.73462
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50979,
43.77688
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41979,
43.79703
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32644,
43.7748
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53475,
43.69456
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18504,
43.78439
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52978,
43.74619
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18878,
43.77519
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38888,
43.67684
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29442,
43.68983
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33793,
43.68107
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35712,
43.66432
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35841,
43.66177
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28222,
43.69249
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5729,
43.6911
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.57265,
43.72865
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5229,
43.7177
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40339,
43.64557
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4013,
43.66121
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46615,
43.65412
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28533,
43.71102
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51988,
43.76622
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27261,
43.76749
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35822,
43.81189
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5966,
43.70093
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49361,
43.62566
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35787,
43.79211
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.1539,
43.79391
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55217,
43.76902
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24243,
43.78654
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54769,
43.69909
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22997,
43.77695
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40784,
43.65634
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39787,
43.70438
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5182,
43.60083
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35606,
43.73488
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58279,
43.64984
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.13022,
43.78075
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26263,
43.73142
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2575,
43.80982
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.57626,
43.76431
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52386,
43.6149
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35295,
43.76187
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40587,
43.74441
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.537,
43.71707
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34223,
43.64985
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34985,
43.7052
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36491,
43.79042
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.20576,
43.76388
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40514,
43.65703
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46634,
43.73073
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27856,
43.75942
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29879,
43.67023
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41537,
43.68476
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44278,
43.69728
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52619,
43.65058
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42107,
43.63991
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3387,
43.69182
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34067,
43.81426
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29714,
43.69333
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29876,
43.72906
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41332,
43.71693
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26258,
43.71624
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39764,
43.64495
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26299,
43.81987
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27838,
43.73164
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42235,
43.64353
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53525,
43.67149
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42008,
43.7975
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58789,
43.72862
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53559,
43.72585
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24671,
43.73685
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50875,
43.7777
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37901,
43.66608
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4111,
43.66634
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4145,
43.67324
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26123,
43.73396
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44082,
43.79249
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35514,
43.7925
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24871,
43.83711
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26224,
43.77353
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22033,
43.73609
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42952,
43.70014
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31468,
43.7558
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29736,
43.69661
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39843,
43.70492
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25906,
43.77426
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41486,
43.78133
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54608,
43.75116
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26353,
43.73187
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26367,
43.73139
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24575,
43.73113
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26096,
43.77204
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47093,
43.7105
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3455,
43.77599
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35027,
43.71763
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26775,
43.73241
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37696,
43.72177
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39887,
43.70663
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28936,
43.78575
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30733,
43.82348
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3379,
43.79403
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32148,
43.78131
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48013,
43.66018
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31966,
43.67566
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41563,
43.65491
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33013,
43.67049
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45818,
43.67464
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33799,
43.66146
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34468,
43.66003
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32438,
43.81663
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30472,
43.6766
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45368,
43.651
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39547,
43.64901
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41467,
43.78098
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35003,
43.65906
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38967,
43.66009
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39874,
43.64827
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44575,
43.71588
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31345,
43.79725
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28005,
43.71028
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37045,
43.80145
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56441,
43.64689
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47083,
43.72982
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27689,
43.75435
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45346,
43.73319
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55888,
43.69407
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36841,
43.66411
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31424,
43.67864
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3976,
43.65192
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43312,
43.68017
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40802,
43.65188
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47905,
43.63105
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36955,
43.65442
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40803,
43.6571
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39007,
43.70853
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44577,
43.63886
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51422,
43.62263
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44852,
43.63879
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27812,
43.72976
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54166,
43.63445
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50521,
43.64827
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37033,
43.79937
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39606,
43.64889
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56914,
43.6591
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52274,
43.64569
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51118,
43.64834
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42199,
43.67151
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50147,
43.6648
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51129,
43.6481
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49773,
43.61496
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35853,
43.65552
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4063,
43.67503
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39844,
43.64479
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53866,
43.71758
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26353,
43.73242
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29832,
43.78087
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25577,
43.78315
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35871,
43.75312
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.21793,
43.79819
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34378,
43.77608
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.57092,
43.67857
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5286,
43.64881
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36006,
43.75338
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58723,
43.75999
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41533,
43.78158
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41465,
43.78082
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22387,
43.75515
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45308,
43.73323
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49639,
43.6895
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41824,
43.75999
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5364,
43.71672
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45813,
43.75329
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46181,
43.74869
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40781,
43.72399
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44113,
43.72961
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25117,
43.70615
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29282,
43.70162
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37294,
43.64262
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34401,
43.65172
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28001,
43.70982
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37344,
43.75085
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53483,
43.63846
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68186,
45.55994
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75383,
45.60071
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70898,
45.56143
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68556,
45.56574
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69533,
45.56873
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70881,
45.56173
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71118,
45.55029
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.79237,
45.57886
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.76929,
45.58651
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.78751,
45.5767
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70201,
45.57906
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5697,
45.66819
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69445,
43.61331
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73407,
45.60834
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72058,
45.55971
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.78276,
45.62859
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68272,
45.56051
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69278,
45.52822
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70665,
45.61031
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58327,
45.67711
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.76609,
45.54944
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71302,
45.54318
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75343,
45.55809
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74035,
45.56133
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.77737,
45.55294
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65962,
45.59665
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75671,
45.56338
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74766,
45.58117
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72326,
45.56163
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.80281,
45.57965
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71986,
45.55861
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.79192,
45.52726
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73716,
45.53821
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.82652,
45.56592
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68238,
45.51344
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75271,
45.63079
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.85577,
45.52277
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75121,
45.53931
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6492,
45.60909
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63408,
45.63209
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74164,
45.60873
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74927,
45.55083
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67505,
45.58429
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6478,
45.61425
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71067,
45.57784
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74854,
45.56821
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69163,
45.57006
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74871,
45.65436
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71472,
45.59074
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74329,
45.5372
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72069,
45.59735
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74951,
45.63599
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75266,
45.58708
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72789,
45.58227
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68246,
45.56081
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74958,
45.65696
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.78253,
45.60616
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64497,
45.60718
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71478,
45.59047
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72034,
45.55816
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68285,
45.56008
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.7481,
45.54112
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66523,
45.6081
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72019,
45.55846
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74186,
45.53704
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6739,
45.54555
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.77133,
45.62461
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71954,
45.55839
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74741,
45.56967
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72323,
43.54388
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71163,
43.59743
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54481,
43.63204
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64578,
43.59373
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64024,
43.72163
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64333,
43.7042
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61796,
43.60861
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69048,
43.51807
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72965,
43.63806
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59118,
43.6029
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69165,
43.60034
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.25036,
42.98548
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63327,
43.51297
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66927,
43.57763
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.44167,
43.42248
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65777,
43.6023
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64624,
43.59402
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55812,
43.60998
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62927,
43.62816
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63792,
43.70789
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7968,
43.32578
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.81434,
43.35944
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2279,
46.81238
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53155,
43.77324
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61118,
43.70068
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66361,
43.54783
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63326,
43.51272
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60004,
43.59446
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56036,
43.71317
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53809,
43.63548
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70562,
43.53682
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64608,
43.59348
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71223,
43.55372
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73214,
43.53595
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.95397,
45.52298
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.25081,
42.99021
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.29809,
42.99559
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63543,
43.60689
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61183,
43.64412
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71719,
45.36913
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.90298,
43.96297
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43584,
43.6993
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5549,
43.73205
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70188,
43.54836
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.86545,
43.89713
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.78517,
43.40501
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.09417,
43.82668
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.85195,
43.94447
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.06883,
43.87074
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38,
43.64825
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47665,
45.43499
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44482,
43.7156
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47301,
45.40857
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51343,
45.38247
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44704,
43.7923
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66856,
43.61007
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.04093,
43.84755
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6989,
43.55474
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58475,
43.5534
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54099,
43.63518
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49109,
43.66518
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41103,
43.70399
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4593,
43.65566
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22455,
43.52959
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39048,
43.69956
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76029,
43.58496
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58631,
43.63723
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56288,
43.70336
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39651,
43.69759
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70483,
43.64493
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62424,
43.57332
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68005,
43.60936
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41553,
43.78222
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46381,
43.9845
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60358,
43.70319
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.77876,
43.58175
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50973,
43.77715
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47132,
43.69106
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46212,
43.74965
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50399,
43.68859
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48798,
43.75193
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42574,
43.83995
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49502,
43.82052
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42657,
43.83703
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61701,
43.58053
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51183,
43.77928
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50341,
43.70109
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44203,
43.89412
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74062,
43.56615
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66216,
43.54467
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.80766,
43.23984
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61787,
43.63813
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63306,
43.5126
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60787,
43.63747
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66451,
43.56839
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.90175,
43.25921
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51359,
43.74089
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65481,
43.50311
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69276,
44.39189
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.90661,
43.17991
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70415,
44.34684
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53872,
43.63557
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68445,
43.54369
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60932,
43.58177
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48969,
43.69181
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56249,
43.63595
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69014,
44.38938
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.80304,
43.20874
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49063,
43.76149
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41577,
43.77995
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49358,
43.67152
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46976,
43.78747
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41471,
43.63651
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44646,
43.66665
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46683,
43.68086
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45666,
43.76256
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55057,
43.67687
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65203,
43.60635
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62632,
43.59106
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42305,
43.79736
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41548,
43.78088
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45293,
43.65705
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.88407,
43.23858
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24447,
43.8775
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6463,
43.59347
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60975,
43.57574
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65591,
43.58263
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46514,
43.66677
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62371,
43.53804
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43595,
43.6996
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86039,
43.27662
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.67928,
43.54772
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.89278,
43.25108
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46224,
43.67117
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68581,
43.61358
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50431,
43.70057
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43646,
43.69923
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4908,
43.6802
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.92981,
43.25754
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70635,
43.58766
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.79928,
43.236
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50057,
43.69061
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52423,
43.72993
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71432,
43.63478
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51285,
43.73863
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86731,
43.23695
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53854,
43.63494
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41038,
43.70848
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68267,
45.513
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42384,
43.8138
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42997,
43.70004
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51432,
43.74328
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42827,
43.79622
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49511,
43.67512
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62736,
43.66276
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72282,
43.63335
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73248,
43.64805
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.97453,
43.26866
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.87215,
43.24982
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42857,
43.83327
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47925,
43.71468
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.80902,
43.33936
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48469,
43.68399
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58956,
43.66643
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62479,
43.58209
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.67114,
43.56254
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48332,
43.65009
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44756,
43.69626
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.57173,
43.72187
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64288,
43.5571
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59233,
43.6634
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48687,
43.6925
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49569,
43.67645
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40677,
43.63681
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43983,
43.69198
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39158,
43.68788
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51182,
43.73411
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.57752,
43.65711
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3537,
43.6619
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.26926,
46.77998
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62572,
43.60144
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74779,
43.5857
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45352,
43.65692
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.90375,
43.26267
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64423,
43.56496
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44892,
43.72639
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3789,
43.72098
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58749,
43.55535
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68123,
43.5414
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69127,
43.63989
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69321,
43.6101
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55192,
43.62979
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69256,
43.21259
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.89642,
43.22269
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.87682,
43.25716
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63055,
43.59759
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41922,
43.68291
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53451,
43.64064
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59317,
43.75948
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60512,
43.57254
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.89658,
43.24272
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.15014,
46.89078
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59048,
43.66361
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41782,
43.72791
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3985,
43.70763
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6781,
43.55605
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44638,
43.68612
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66422,
43.59756
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49428,
43.69702
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54452,
43.63238
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.78617,
43.35394
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45071,
43.77935
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30783,
43.86172
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31631,
43.85262
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.28918,
46.76846
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.81611,
43.26356
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59048,
43.66352
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4,
43.63692
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40172,
43.70603
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43658,
43.69944
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42406,
43.81408
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39212,
43.8421
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47179,
44.0179
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50994,
43.77715
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69731,
43.65424
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52045,
43.77585
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82386,
43.21047
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43982,
43.65067
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40988,
43.7043
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22402,
43.52929
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.78647,
43.23709
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42706,
43.6628
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46955,
43.70286
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42094,
43.67028
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.94276,
43.25845
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34299,
43.66749
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56967,
43.62242
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38479,
43.65079
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47478,
43.69028
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.99967,
45.77321
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.67083,
43.56252
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50786,
45.72657
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75973,
43.58452
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73462,
43.66527
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.78222,
43.23191
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41526,
43.78133
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.28934,
46.7683
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47044,
43.78704
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42079,
43.64972
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.89664,
45.54448
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47749,
45.47897
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.28979,
42.98688
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41482,
43.78118
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.4548,
45.53333
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48424,
43.75669
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42752,
43.63924
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.29,
45.32945
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35894,
43.67625
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47867,
45.50449
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51165,
45.58612
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47392,
45.47186
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.44424,
45.56859
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46789,
43.71634
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.2818,
43.00049
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47757,
43.68226
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39958,
43.70801
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54347,
43.66014
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6738,
43.51713
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49971,
43.77415
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50361,
43.70237
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4436,
43.79276
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51498,
43.74629
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50339,
43.70136
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.99946,
45.77311
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44182,
43.65554
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.2676,
42.95864
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.8174,
45.61644
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24448,
42.99583
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5233,
43.70211
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.91636,
45.5703
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44071,
43.70965
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62475,
43.7524
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31184,
43.66873
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.29252,
42.94728
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43949,
43.69794
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50344,
43.7022
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.43674,
43.39359
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.33128,
45.36728
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55019,
43.67733
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.19824,
43.02803
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42562,
43.63462
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35809,
43.66125
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45171,
43.88512
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2527,
46.81494
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.91384,
45.55106
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.56379,
46.11789
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41117,
43.63436
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.61748,
46.183
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.23582,
46.82822
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.44165,
43.42167
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40058,
43.71672
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27316,
43.76719
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.42838,
45.80244
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45051,
43.67577
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45224,
43.73351
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52941,
43.70525
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47826,
43.70882
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39905,
43.70814
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44321,
43.67831
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49301,
43.66973
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41553,
43.6426
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43241,
43.65219
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.45511,
45.48228
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46735,
43.6816
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.87503,
45.57562
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26308,
43.73288
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40599,
43.74134
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.23783,
43.00136
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.21709,
43.02314
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41578,
43.677
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42065,
43.64902
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40549,
43.74476
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.86081,
45.29588
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.77654,
45.38248
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.6623,
45.40121
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73552,
45.40379
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.61802,
45.39892
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.83388,
45.29702
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.60892,
45.38337
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73598,
45.40383
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5889,
45.4428
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.687,
45.42444
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73509,
45.38572
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.56725,
45.43675
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.94003,
45.34426
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.64349,
45.37516
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.63511,
45.38954
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.90767,
45.30913
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.81111,
45.34554
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.67609,
45.40577
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.79489,
45.35746
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.72834,
45.40107
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.83916,
45.31966
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.82317,
45.34735
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.75645,
45.361
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73064,
45.35284
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.62072,
45.39946
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.6871,
45.42458
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.61765,
45.38882
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.51888,
45.47842
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73537,
45.26915
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.52612,
45.46158
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69415,
45.42262
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68671,
45.42387
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.75355,
45.39228
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76227,
45.34868
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.64095,
45.35035
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5186,
45.47854
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.74285,
45.2697
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.72099,
45.40634
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.7948,
45.33836
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76853,
45.37243
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.67905,
45.41086
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.86602,
45.28421
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.94432,
45.26417
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.52785,
45.4495
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.6739,
45.41442
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76315,
45.34892
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69669,
45.42238
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.62376,
45.40011
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.6948,
45.38949
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.58836,
45.45033
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.6953,
45.41417
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.62387,
45.40027
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.60461,
45.38562
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.91629,
45.34514
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.81108,
45.34548
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.72343,
45.2843
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.74127,
45.26664
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5192,
45.47863
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.90701,
45.3091
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.8099,
45.3459
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.75165,
45.39309
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.7257,
45.40018
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.65237,
45.35004
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68259,
45.39295
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.70905,
45.29374
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.72847,
45.39965
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.92953,
45.34107
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68599,
45.43433
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.90716,
45.3091
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.82497,
45.32547
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69946,
45.37597
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.47999,
45.4953
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.72737,
45.34055
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76138,
45.34669
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.6532,
45.439
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.67865,
45.38346
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.74126,
45.25102
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.65002,
45.43207
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.44886,
45.46478
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.51479,
45.45156
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.79381,
45.35697
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.74203,
45.26603
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68818,
45.42414
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.64638,
45.44131
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.6367,
45.42056
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.8113,
45.34563
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73312,
45.40174
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.44855,
45.4646
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.7705,
45.37014
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.65883,
45.35979
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68536,
45.37721
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.75683,
45.39673
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.8931,
45.30028
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69668,
45.41573
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73722,
45.29728
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.65702,
45.42484
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.7832,
45.36637
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.60357,
45.43741
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.64648,
45.44005
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.63907,
45.40919
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.78048,
45.26877
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.75746,
45.39378
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.6549,
45.40395
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.62807,
45.31832
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.66416,
45.37281
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.52038,
45.4781
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.67461,
45.41846
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73031,
45.35374
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.75074,
45.34433
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.89462,
45.31182
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69486,
45.42435
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73358,
45.25222
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.65883,
45.35979
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68065,
45.37896
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.75425,
45.35149
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.478,
45.44389
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.59779,
45.42324
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.72853,
45.24058
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.6279,
45.44091
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5638,
45.46228
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.65244,
45.35126
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73744,
45.40355
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.6636,
45.37138
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73562,
45.26332
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.66505,
45.41215
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76332,
45.32939
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73661,
45.40377
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.6892,
45.2724
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.60898,
45.43094
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.65348,
45.33074
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.7632,
45.34896
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.66505,
45.41215
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.65765,
45.41867
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.79438,
45.35826
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73572,
45.40314
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73552,
45.40379
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69977,
45.42103
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.58813,
45.44489
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.66865,
45.27702
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69486,
45.42398
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.78131,
45.26845
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.60833,
45.403
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69057,
45.4181
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.7826,
45.36615
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68004,
45.43448
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9414,
45.29641
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.66505,
45.41215
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73236,
45.38637
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.67562,
45.3857
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.60172,
45.4169
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.59484,
45.37514
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.79158,
45.35038
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.61208,
45.38382
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.63247,
45.36105
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.62608,
45.42829
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.77567,
45.36789
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.6667,
45.41204
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.61413,
45.36954
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68275,
45.43002
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.62361,
45.40056
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.84265,
45.28086
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.90714,
45.30903
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.71577,
45.2752
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.81091,
45.34587
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.70589,
45.41736
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69006,
45.4239
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76322,
45.349
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.74146,
45.26701
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.78153,
45.36546
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.79383,
45.35998
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.75105,
45.3966
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.72761,
45.37945
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68507,
45.37812
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.66594,
45.41209
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.65952,
45.42467
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.70388,
45.40826
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.72595,
45.4001
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.6771,
45.38451
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73744,
45.40341
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73675,
45.29816
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.77575,
45.37886
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73152,
45.36493
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.46066,
45.45566
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.92752,
45.32039
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.91506,
45.31397
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.52321,
45.43289
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.67806,
45.38409
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.66209,
45.44258
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.80655,
45.34439
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.66505,
45.41215
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.4516,
45.46537
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.60815,
45.43154
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.64166,
45.39371
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.66379,
45.34229
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.60411,
45.38599
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.51984,
45.48058
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.77843,
45.37896
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69749,
45.41055
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.6664,
45.27784
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.60682,
45.43362
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.80066,
45.37029
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.78259,
45.3665
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.78228,
45.36471
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69042,
45.42679
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.75073,
45.38699
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68635,
45.43456
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68718,
45.36773
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.59917,
45.43504
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73552,
45.40379
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.6256,
45.37545
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.74284,
45.4001
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.78349,
45.3661
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.52982,
45.43808
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.74212,
45.39726
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73241,
45.38478
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.54328,
45.45848
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.71893,
45.42213
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.49826,
45.49107
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.77444,
45.34674
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73119,
45.39849
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.93186,
45.34637
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23033,
43.78505
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.90801,
45.30141
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.65187,
45.42361
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.65883,
45.35979
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.6236,
45.39986
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.63017,
45.4115
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.88491,
45.31884
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.63359,
45.41769
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.7186,
45.32523
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.70761,
45.30577
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.65834,
45.41853
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.64338,
45.44227
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.78265,
45.36637
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.6866,
45.42845
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69023,
45.42687
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.66904,
45.27735
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73687,
45.30758
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.63916,
45.38065
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.90607,
45.31239
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68518,
45.43409
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.63391,
45.41178
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69634,
45.42423
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9128,
45.25195
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.51072,
45.45319
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73615,
45.3555
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.67698,
45.38423
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73552,
45.40379
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.63651,
45.42074
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69551,
45.38716
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.9994,
45.77311
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.90744,
45.30927
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.63676,
45.42072
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.74284,
45.40012
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.84479,
45.31724
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73683,
45.40357
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.65883,
45.35979
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.6431,
45.41465
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73612,
45.40379
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76248,
45.3508
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.90554,
45.30429
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.6077,
45.43251
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.50047,
45.45698
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9056,
45.33441
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73552,
45.40379
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73564,
45.29981
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76265,
45.35109
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.66703,
45.27748
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73661,
45.40377
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.66618,
45.34537
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.67641,
45.38509
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73658,
45.27099
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.88331,
45.31982
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68176,
45.43563
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73552,
45.40379
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.75558,
45.35467
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73224,
45.38697
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.46076,
45.44756
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.70833,
45.39736
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.70622,
45.33541
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.65189,
45.37803
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.90307,
45.31151
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.70155,
45.3682
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.6403,
45.4294
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.88351,
45.27155
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76452,
45.38932
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.67422,
45.44094
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.82666,
45.32476
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.63674,
45.42054
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.51907,
45.47868
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.66505,
45.41215
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73744,
45.40355
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.77914,
45.267
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.6367,
45.42056
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.90577,
45.31024
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.85622,
45.29103
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.99963,
45.77316
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68917,
45.36759
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.66505,
45.41215
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.70877,
45.41549
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9064,
45.30956
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.75167,
45.34397
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.6352,
45.42062
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.81149,
45.3454
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47283,
43.67787
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.62327,
45.39924
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.74211,
45.33446
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.71193,
45.39561
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69638,
45.38596
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.15086,
46.8903
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.63743,
45.42051
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.658,
45.43743
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45591,
43.72005
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.86914,
45.27736
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.20026,
43.01099
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47162,
43.67714
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41754,
43.78715
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.61743,
45.42205
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.40366,
43.39046
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.78092,
45.66234
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.74312,
45.26606
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45822,
43.73219
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40365,
43.66722
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4243,
43.74338
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44657,
43.73482
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.7163,
45.34868
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54885,
43.67288
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47589,
43.65121
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.54557,
45.46782
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69202,
45.42449
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45865,
43.73135
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.28167,
43.56411
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.22754,
42.9316
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73607,
45.404
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.79809,
45.35397
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.4691,
43.44093
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47827,
43.7092
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43589,
43.6614
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53816,
43.7175
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.0277,
43.84188
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49471,
43.78139
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43904,
43.66853
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58961,
43.75938
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.49158,
43.45077
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45656,
43.72194
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45129,
43.69814
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42587,
43.6344
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5733,
43.78397
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49073,
43.76516
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43049,
43.64712
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27803,
42.92464
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.08003,
43.84398
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.13725,
43.8228
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.08788,
43.83892
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.0854,
43.84772
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.125,
44.10982
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48276,
43.73009
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43687,
43.66341
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43348,
43.65479
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.67825,
45.38374
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50217,
43.69667
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28087,
43.76559
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39114,
43.6378
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.37448,
45.50221
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.86306,
45.64482
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23417,
43.78172
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.28294,
45.43505
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.44961,
45.50665
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.30238,
45.44556
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48927,
43.75653
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.7766,
45.52372
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45592,
43.72011
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43679,
43.66314
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4307,
43.6477
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.14855,
45.43361
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26147,
43.7704
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33095,
43.79328
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4506,
43.73431
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45839,
43.7322
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45537,
43.71696
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2991,
46.8115
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.32774,
45.59396
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4387,
43.68705
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53375,
43.773
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50046,
43.76262
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41514,
43.68427
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38452,
43.74787
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47019,
43.78377
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.02644,
43.88007
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6362,
43.73495
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.30724,
45.52318
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.52018,
45.52425
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.87188,
43.91502
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24555,
42.98582
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.99402,
45.60131
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.22877,
45.54668
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.66464,
45.4118
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.309,
43.00311
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64028,
43.76868
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.87242,
45.63251
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.21582,
46.81238
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51086,
43.72036
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41716,
43.72601
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.23755,
45.2972
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.29179,
43.52869
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.26775,
45.33141
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.24495,
43.54613
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4311,
44.06587
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42108,
44.0214
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38558,
43.85682
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49158,
44.04845
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61571,
43.73471
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34648,
43.7759
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38541,
43.85702
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42408,
43.87285
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52417,
43.79435
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.9449,
44.09997
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72022,
43.71884
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38568,
43.86727
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.78537,
43.90432
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42247,
44.06772
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3819,
43.86423
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23472,
43.78165
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82658,
43.36082
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.80102,
43.34437
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.24382,
46.8279
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.81239,
43.33595
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.14919,
46.01571
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.09272,
46.04494
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.15417,
46.01696
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2887,
46.76886
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22998,
46.81806
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34517,
43.7797
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.78478,
43.36393
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76057,
43.37939
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69254,
45.47912
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.48281,
45.57304
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.39535,
45.679
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76093,
43.39178
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.27534,
46.78758
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.81335,
43.68974
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.27917,
46.78109
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39291,
43.65936
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39998,
43.65778
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.30038,
46.8927
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75574,
45.29445
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83788,
45.31951
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.17416,
46.7971
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.43672,
45.59159
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2475,
46.84046
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.26682,
45.30111
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.78147,
43.3417
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.26281,
45.31836
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72653,
45.36974
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.94494,
43.22788
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.01821,
43.19835
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82796,
43.24748
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8709,
43.25587
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.87061,
43.2562
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.85857,
43.2624
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.90995,
43.25825
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.89226,
43.20422
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.98912,
43.2565
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.89125,
43.20696
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.78078,
45.26767
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64165,
45.42822
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.87032,
43.25731
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.79644,
45.3501
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.21638,
46.84686
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41178,
43.64213
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.12894,
43.80973
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.01725,
43.86666
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.20102,
46.85382
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22486,
46.83094
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.25558,
46.79422
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.99763,
45.62861
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.15333,
45.09617
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.13248,
45.25371
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.21379,
45.17834
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.33014,
46.75246
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.52888,
43.49497
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.12601,
44.42837
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.29445,
46.76428
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5042,
43.70274
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.35302,
46.7907
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47244,
43.75519
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.43732,
45.6732
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.22285,
45.87177
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.4544,
43.43512
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50289,
43.703
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.24838,
46.79214
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.36638,
46.89622
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.40326,
46.83422
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.84327,
43.92153
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38089,
43.64987
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55561,
45.49658
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56338,
45.46174
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56499,
45.50074
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2851,
46.80918
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71136,
45.59526
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.26606,
46.79046
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22438,
46.8135
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.81499,
45.44118
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37878,
43.8398
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61162,
43.81452
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.29574,
46.8315
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.94215,
43.86072
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8627,
43.25466
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2447,
46.79006
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56242,
45.49722
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.37886,
46.79158
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65063,
45.4411
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63388,
45.43085
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58546,
45.48851
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.7572,
45.84926
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58486,
45.45714
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.30534,
46.88934
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.34342,
46.82766
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.34294,
46.85774
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48621,
44.05278
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2135,
46.81846
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74513,
43.57864
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.87062,
43.25379
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.87089,
43.25546
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7761,
43.17476
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.31582,
46.77958
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.39002,
45.75094
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.24198,
46.82246
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.67701,
45.4074
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22318,
46.80638
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39814,
43.65282
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.31014,
46.76734
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54539,
43.7648
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49269,
43.70526
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.44182,
43.42193
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67262,
45.43824
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.93988,
45.40375
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22102,
46.81022
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.30566,
46.88894
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.4411,
43.42262
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.76582,
45.35599
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.94515,
45.31569
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5379,
43.63557
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65311,
43.59171
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75873,
43.58331
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64631,
43.59394
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74222,
43.59785
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59566,
45.47477
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.17097,
46.81018
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.1594,
46.81124
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.85654,
43.31293
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86928,
43.24874
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.40841,
45.49485
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.669,
43.56447
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.25894,
46.85846
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.893,
43.96552
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58101,
45.48294
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.97217,
43.87327
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.26678,
46.79014
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.4676,
45.46643
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.26174,
46.86374
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.02473,
43.89937
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.23672,
46.75346
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.23071,
46.75655
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37554,
43.65263
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86951,
43.25299
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8666,
43.24646
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86609,
43.25436
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43505,
43.71793
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42982,
43.73786
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42612,
43.75805
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.1855,
46.86422
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.52545,
43.47585
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71009,
43.55993
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62763,
43.7253
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.67731,
45.41908
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75493,
43.61254
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72357,
43.63255
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65526,
43.56988
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5638,
43.62691
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68331,
43.54307
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.67686,
43.5454
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.33318,
46.76094
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.67686,
43.55012
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.5255,
43.47875
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.28558,
46.83902
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37869,
43.6405
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22342,
46.80614
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.15945,
45.96408
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.99502,
43.3569
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.96735,
43.36958
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.49908,
43.44012
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31474,
43.75812
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59692,
45.47209
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.29101,
45.32604
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42615,
43.75804
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64837,
45.42506
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.427,
43.63908
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68953,
43.52257
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.48061,
43.45432
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65088,
43.54764
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63975,
43.59733
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.23103,
46.81918
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.79327,
45.40359
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.74167,
45.45943
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.64366,
45.49031
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.23854,
46.83086
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.52177,
43.46297
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.05537,
45.38731
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68033,
45.44303
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22302,
46.80654
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.63422,
45.41893
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.49458,
43.45467
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.4976,
43.45265
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.32382,
46.81286
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.654,
43.57023
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59295,
43.56326
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58704,
43.55574
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75433,
43.58295
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75304,
43.57506
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56123,
43.64142
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70004,
43.55359
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51642,
43.77634
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.29381,
45.328
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.48777,
43.44892
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.116,
43.91083
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.10062,
43.91574
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.08959,
43.92092
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6477,
43.59383
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48174,
43.72692
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50894,
43.70175
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.32406,
46.7583
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.30662,
46.76982
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46705,
43.75192
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45148,
43.73405
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58353,
43.64002
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.28422,
46.76934
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2915,
46.76902
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.78998,
43.60202
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51004,
43.7771
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.70062,
45.47696
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.44173,
43.42175
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6367,
43.57618
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71054,
43.65225
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40222,
43.70601
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47184,
43.67191
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.51907,
45.47868
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.50008,
43.41253
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69046,
45.42682
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.19929,
43.01341
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.54047,
43.47408
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54411,
43.59166
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64609,
43.59379
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.1934,
43.01297
]
}
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Link
GET v2/links
Example request:
curl --request GET \
--get "https://api.transittracker.ca/v2/links" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "Accept-Language: en"
$client = new \GuzzleHttp\Client();
$url = 'https://api.transittracker.ca/v2/links';
$response = $client->get(
$url,
[
'headers' => [
'Content-Type' => 'application/json',
'Accept' => 'application/json',
'Accept-Language' => 'en',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://api.transittracker.ca/v2/links'
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Accept-Language': 'en'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 56
x-ratelimit-remaining: 55
content-language: en
vary: Origin
{
"data": [
{
"id": 3,
"title": "View additional details on this vehicle",
"description": "Using FleetSighter - by Blue Hybrid Bus",
"url": "https://fleetsighter.ca/vehicle/stm/:ref"
},
{
"id": 22,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/Soci%C3%A9t%C3%A9_de_transport_de_Montr%C3%A9al"
},
{
"id": 52,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/Exo_-_R%C3%A9seau_de_transport_m%C3%A9tropolitain"
},
{
"id": 53,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/Soci%C3%A9t%C3%A9_de_transport_de_Laval"
},
{
"id": 54,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/R%C3%A9seau_de_transport_de_Longueuil"
},
{
"id": 55,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/Exo_Laurentides"
},
{
"id": 56,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/Exo_Vall%C3%A9e_du_Richelieu"
},
{
"id": 57,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/Exo_Le_Richelain"
},
{
"id": 58,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/Exo_L%27Assomption"
},
{
"id": 59,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/Exo_Sainte-Julie"
},
{
"id": 60,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/Exo_Sud-Ouest"
},
{
"id": 61,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/Exo_Haut-Saint-Laurent"
},
{
"id": 62,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/Exo_La_Presqu%27%C3%8Ele"
},
{
"id": 63,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/Exo_Roussillon"
},
{
"id": 64,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/Exo_Sorel-Varennes"
},
{
"id": 65,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/Exo_Terrebonne-Mascouche"
},
{
"id": 66,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/Exo_Chambly-Richelieu-Carignan"
},
{
"id": 67,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/Toronto_Transit_Commission"
},
{
"id": 68,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/Brampton_Transit"
},
{
"id": 69,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/Burlington_Transit"
},
{
"id": 70,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/Durham_Region_Transit"
},
{
"id": 71,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/Hamilton_Street_Railway"
},
{
"id": 72,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/York_Region_Transit"
},
{
"id": 73,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/Soci%C3%A9t%C3%A9_de_transport_de_Sherbrooke"
},
{
"id": 74,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/Grand_River_Transit"
},
{
"id": 75,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/Guelph_Transit"
},
{
"id": 76,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/GO_Transit"
},
{
"id": 77,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/Barrie_Transit"
},
{
"id": 78,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/Soci%C3%A9t%C3%A9_de_transport_de_L%C3%A9vis"
},
{
"id": 79,
"title": "Read the wiki",
"description": "On CPTDB",
"url": "https://cptdb.ca/wiki/index.php/R%C3%A9gie_intermunicipale_de_transport_des_Collines"
},
{
"id": 80,
"title": "View additional details on this vehicle",
"description": "Using FleetSighter - by Blue Hybrid Bus",
"url": "https://fleetsighter.ca/vehicle/stl/:ref"
},
{
"id": 81,
"title": "Open exo VIN",
"description": "To see the bus model or to propose a new fleet number",
"url": "https://vin.transittracker.ca/:ref"
},
{
"id": 83,
"title": "View additional details on this vehicle",
"description": "Using FleetSighter - by Blue Hybrid Bus",
"url": "https://fleetsighter.ca/vehicle/ttc/:ref"
},
{
"id": 84,
"title": "View additional details on this vehicle",
"description": "Using FleetSighter - by Blue Hybrid Bus",
"url": "https://fleetsighter.ca/vehicle/sto/:ref"
},
{
"id": 85,
"title": "View additional details on this vehicle",
"description": "Using FleetSighter - by Blue Hybrid Bus",
"url": "https://fleetsighter.ca/vehicle/sts/:ref"
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET v2/links/{link}
Example request:
curl --request GET \
--get "https://api.transittracker.ca/v2/links/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "Accept-Language: en"
$client = new \GuzzleHttp\Client();
$url = 'https://api.transittracker.ca/v2/links/1';
$response = $client->get(
$url,
[
'headers' => [
'Content-Type' => 'application/json',
'Accept' => 'application/json',
'Accept-Language' => 'en',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://api.transittracker.ca/v2/links/1'
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Accept-Language': 'en'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (404):
Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 56
x-ratelimit-remaining: 54
content-language: en
vary: Origin
{
"message": "No query results for model [App\\Models\\Link] 1"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Regions
GET v2/regions
Example request:
curl --request GET \
--get "https://api.transittracker.ca/v2/regions" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "Accept-Language: en"
$client = new \GuzzleHttp\Client();
$url = 'https://api.transittracker.ca/v2/regions';
$response = $client->get(
$url,
[
'headers' => [
'Content-Type' => 'application/json',
'Accept' => 'application/json',
'Accept-Language' => 'en',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://api.transittracker.ca/v2/regions'
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Accept-Language': 'en'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 12
x-ratelimit-remaining: 11
content-language: en
vary: Origin
{
"data": [
{
"name": "Montréal",
"slug": "mtl",
"credits": "<p>Header photo by <a href=\"https://unsplash.com/@storybyphil\"><span style=\"text-decoration: underline;\">Phil Desforges</span></a> </p>",
"infoTitle": "",
"infoBody": "",
"description": "Explore the metropolitan region of Montreal, with its bus networks on the island of Montreal, Laval, Longueuil and on the northern and southern crowns. In addition, commuter train services are also represented.",
"metaDescription": "Explore the metropolitan region of Montreal with Transit Tracker. Bus networks on the island of Montreal, Laval, Longueuil and on the northern and southern crowns, with a commuter train service.",
"cities": [
"Montréal",
"Saint-Jérôme",
"Laval",
"Longueuil",
"Blainville",
"Otterburn Park",
"Candiac",
"Repentigny",
"Sainte-Julie",
"Mercier",
"Mercier",
"Rigaud",
"Sainte-Catherine",
"Saint-Amable",
"Terrebonne",
"Richelieu",
"Sorel-Tracy",
"Howick",
"Saint-Lin-Laurentides",
"Saint-Philippe",
"Saint-Jean-sur-Richelieu",
"Saint-Hyacinthe"
],
"image": "01HRZQK091ZBWWA78YF9M08XR8.jpg",
"mapBox": [
[
"-74.3308",
"45.1917"
],
[
"-72.9355",
"46.058"
]
],
"mapCenter": {
"lat": "45.5894",
"lon": "-73.661"
},
"mapZoom": 9,
"agencies": [
{
"id": 1,
"isArchived": false,
"name": "Société de transport de Montréal",
"shortName": "STM",
"slug": "stm",
"cities": [
"Montréal"
],
"defaultVehicleType": "bus",
"color": "#00AEEF",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 2,
"isArchived": false,
"name": "exo Trains",
"shortName": "Trains",
"slug": "trains",
"cities": [
"Vaudreuil",
"Saint-Jérôme",
"Mont-Saint-Hilaire",
"Candiac",
"Mascouche"
],
"defaultVehicleType": "train",
"color": "#C8017E",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 3,
"isArchived": false,
"name": "Société de transport de Laval",
"shortName": "STL",
"slug": "stl",
"cities": [
"Laval"
],
"defaultVehicleType": "bus",
"color": "#84C444",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 4,
"isArchived": false,
"name": "Réseau de transport de Longueuil",
"shortName": "RTL",
"slug": "rtl",
"cities": [
"Longueuil"
],
"defaultVehicleType": "bus",
"color": "#ce0037",
"textColor": "#ffe8d0",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 5,
"isArchived": false,
"name": "exo Laurentides",
"shortName": "Laurentides",
"slug": "la",
"cities": [
"Boisbriand",
"Mirabel",
"Rosemère",
"Sainte-Marthe-sur-le-Lac",
"Saint-Joseph-du-Lac"
],
"defaultVehicleType": "bus",
"color": "#00A586",
"textColor": "#FFFFFF",
"regions": [
"mtl",
"laurentides"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 6,
"isArchived": false,
"name": "exo Vallée-du-Richelieu",
"shortName": "Vallée-du-Richelieu",
"slug": "vr",
"cities": [
"Beloeil",
"Mont-Saint-Hilaire",
"Saint-Hyacinthe",
"Sainte-Madeleine",
"Sainte-Marie-Madeleine"
],
"defaultVehicleType": "bus",
"color": "#1F96A4",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 7,
"isArchived": true,
"name": "exo Le Richelain",
"shortName": "Le Richelain",
"slug": "lr",
"cities": [
"Candiac",
"La Prairie",
"Saint-Philippe"
],
"defaultVehicleType": "bus",
"color": "#41474d",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 8,
"isArchived": false,
"name": "exo L'Assomption",
"shortName": "L'Assomption",
"slug": "lasso",
"cities": [
"L'Assomption",
"L'Épiphanie",
"Charlemagne",
"Repentigny",
"Saint-Sulpice"
],
"defaultVehicleType": "bus",
"color": "#0071BA",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 9,
"isArchived": false,
"name": "exo Sainte-Julie",
"shortName": "Sainte-Julie",
"slug": "sju",
"cities": [
"Sainte-Julie"
],
"defaultVehicleType": "bus",
"color": "#F7A389",
"textColor": "#000000",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 10,
"isArchived": false,
"name": "exo Sud-Ouest",
"shortName": "Sud-Ouest",
"slug": "so",
"cities": [
"Beauharnois",
"Léry",
"Salaberry-de-Valleyfield",
"Mercier",
"Ormstown"
],
"defaultVehicleType": "bus",
"color": "#B94065",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 11,
"isArchived": true,
"name": "exo Haut-Saint-Laurent",
"shortName": "Haut-Saint-Laurent (exo)",
"slug": "hsl",
"cities": [
"Mercier",
"Sainte-Martine",
"Ormstown",
"Très-Saint-Sacrement",
"Howick"
],
"defaultVehicleType": "bus",
"color": "#41474d",
"textColor": "#000000",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 12,
"isArchived": false,
"name": "exo La Presqu'Île",
"shortName": "La Presqu'Île",
"slug": "pi",
"cities": [
"Hudson",
"Île Perrot",
"Notre-Dame-de-l’Île-Perrot",
"Pincourt",
"St-Lazare"
],
"defaultVehicleType": "bus",
"color": "#FCEFC5",
"textColor": "#000000",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 13,
"isArchived": true,
"name": "exo Roussillon",
"shortName": "Roussillon",
"slug": "rous",
"cities": [
"Delson",
"Saint-Constant",
"Sainte-Catherine"
],
"defaultVehicleType": "bus",
"color": "#41474d",
"textColor": "#ffffff",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 14,
"isArchived": false,
"name": "exo Sorel-Varennes",
"shortName": "Sorel-Varennes",
"slug": "sv",
"cities": [
"Varennes",
"Verchères",
"Contrecoeur",
"Saint-Amable",
"Saint-Joseph-de-Sorel"
],
"defaultVehicleType": "bus",
"color": "#EFDCCE",
"textColor": "#000000",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 15,
"isArchived": false,
"name": "exo Terrebonne-Mascouche",
"shortName": "Terrebonne-Mascouche",
"slug": "tm",
"cities": [
"Terrebonne",
"Mascouche"
],
"defaultVehicleType": "bus",
"color": "#9ED1C6",
"textColor": "#000000",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 16,
"isArchived": false,
"name": "exo Chambly-Richelieu-Carignan",
"shortName": "Chambly-Richelieu-Carignan",
"slug": "crc",
"cities": [
"Chambly",
"Richelieu",
"Carignan"
],
"defaultVehicleType": "bus",
"color": "#F1776A",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 34,
"isArchived": false,
"name": "Société de transport collectif de Pierre-De Saurel",
"shortName": "Pierre-De Saurel",
"slug": "stcpds",
"cities": [
"Sorel-Tracy"
],
"defaultVehicleType": "bus",
"color": "#4b858e",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://zenbus.fr/zenbusapi/",
"title": "Zenbus API",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 35,
"isArchived": false,
"name": "MRC du Haut-Saint-Laurent",
"shortName": "Haut-Saint-Laurent (MRC)",
"slug": "mrchsl",
"cities": [
"Godmanchester",
"Howick",
"Huntingdon",
"Sainte-Barbe",
"Très-Saint-Sacrement"
],
"defaultVehicleType": "bus",
"color": "#1c94cc",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://zenbus.fr/zenbusapi/",
"title": "Zenbus API",
"isDownloadable": true
},
"features": [
"useRouteFromTrip"
],
"meta": {}
},
{
"id": 48,
"isArchived": false,
"name": "MRC de Montcalm",
"shortName": "Montcalm",
"slug": "montcalm",
"cities": [
"Saint-Lin-Laurentides",
"Terrebonne"
],
"defaultVehicleType": "bus",
"color": "#8ebb52",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://zenbus.fr/zenbusapi/",
"title": "Zenbus API",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 49,
"isArchived": false,
"name": "exo Le Richelain / Roussillon",
"shortName": "Richelain / Roussillon",
"slug": "lrrs",
"cities": [
"Candiac",
"La Prairie",
"Saint-Philippe"
],
"defaultVehicleType": "bus",
"color": "#7C5D81",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 51,
"isArchived": false,
"name": "Saint-Jean-sur-Richelieu",
"shortName": "SJSR",
"slug": "sjsr",
"cities": [
"Saint-Jean-sur-Richelieu"
],
"defaultVehicleType": "bus",
"color": "#005982",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://zenbus.fr/zenbusapi/",
"title": "Zenbus API",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 54,
"isArchived": false,
"name": "Ville de Saint-Hyacinthe",
"shortName": "Saint-Hyacinthe",
"slug": "vsh",
"cities": [
"Saint-Hyacinthe"
],
"defaultVehicleType": "bus",
"color": "#08a78b",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": null,
"title": "Not specified",
"isDownloadable": true
},
"features": [
"useRouteFromTrip"
],
"meta": {}
}
]
},
{
"name": "Toronto",
"slug": "tor",
"credits": "<p>Header photo by <a href=\"https://cptdb.ca/profile/38559-8006/\">8006</a></p>",
"infoTitle": "",
"infoBody": "",
"description": "Discover the gigantic Golden Horseshoe Area with its multiple bus services, tram service in downtown Toronto and train service to the suburbs.",
"metaDescription": "Discover the gigantic Toronto region with Transit Tracker. Multiple bus services, tram service in downtown Toronto and train service to the suburbs.",
"cities": [
"Toronto",
"Brampton",
"Burlington",
"Whitby",
"Hamilton",
"East Gwillimbury",
"Cambridge",
"Guelph",
"Kitchener",
"Barrie",
"Toronto",
"London",
"Stratford",
"Orangeville",
"St. Thomas",
"Milton",
"Mississauga"
],
"image": "01HRZQRZYRFGYXJD3P4GDFY5W6.jpg",
"mapBox": [
[
"-81.3922",
"42.747"
],
[
"-78.6511",
"44.4573"
]
],
"mapCenter": {
"lat": "43.6936",
"lon": "-79.4414"
},
"mapZoom": 8,
"agencies": [
{
"id": 17,
"isArchived": false,
"name": "Toronto Transit Comission",
"shortName": "TTC",
"slug": "ttc",
"cities": [
"Toronto"
],
"defaultVehicleType": "bus",
"color": "#DB2727",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": "https://open.toronto.ca/open-data-license/",
"title": "Open Government Licence – Toronto",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 18,
"isArchived": false,
"name": "Brampton Transit",
"shortName": "Brampton",
"slug": "bra",
"cities": [
"Brampton"
],
"defaultVehicleType": "bus",
"color": "#628CAA",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": "https://www.brampton.ca/EN/City-Hall/OpenGov/Open-Data-Catalogue/Pages/Terms-of-Use.aspx",
"title": "City of Brampton Open Data Terms of Use",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 19,
"isArchived": false,
"name": "Burlington Transit",
"shortName": "Burlington",
"slug": "bur",
"cities": [
"Burlington"
],
"defaultVehicleType": "bus",
"color": "#F3B901",
"textColor": "#000000",
"regions": [
"tor"
],
"license": {
"url": "https://www.burlington.ca/en/services-for-you/resources/Ongoing_Projects/Open_Data/OpenDataBurlingtonTermsOfUseSeptember192011.pdf",
"title": "Terms of Use for Open Data Burlington",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 20,
"isArchived": false,
"name": "Durham Region Transit",
"shortName": "DRT",
"slug": "drt",
"cities": [
"Whitby",
"Oshawa",
"Brock",
"Scugog",
"Uxbridge"
],
"defaultVehicleType": "bus",
"color": "#242424",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": "https://www.durham.ca/en/regional-government/resources/Documents/OpenDataLicenceAgreement.pdf",
"title": "Region of Durham - Open Data Licence v.1.0",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 21,
"isArchived": false,
"name": "Hamilton Street Railway",
"shortName": "HSR",
"slug": "hsr",
"cities": [
"Hamilton"
],
"defaultVehicleType": "bus",
"color": "#29578D",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": "https://www.hamilton.ca/city-initiatives/strategies-actions/open-data-licence-terms-and-conditions",
"title": "Open Data Licence Terms and Conditions",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 24,
"isArchived": false,
"name": "York Region Transit",
"shortName": "YRT",
"slug": "yrt",
"cities": [
"East Gwillimbury",
"Georgina",
"Markham",
"Richmond Hill",
"Whitchurch-Stouffville"
],
"defaultVehicleType": "bus",
"color": "#4DA3E0",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": "https://www.yrt.ca/en/about-us/open-data-licence-agreement.aspx",
"title": "YRT Open data licence agreement",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 26,
"isArchived": false,
"name": "Grand River Transit",
"shortName": "GRT",
"slug": "grt",
"cities": [
"Cambridge",
"Kitchener",
"Waterloo",
"Elmira",
"New Hamburg"
],
"defaultVehicleType": "bus",
"color": "#006CB7",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": "https://www.regionofwaterloo.ca/en/regional-government/open-data.aspx",
"title": "Region of Waterloo Open Data Licence v.2.0",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 27,
"isArchived": false,
"name": "Guelph Transit",
"shortName": "Guelph",
"slug": "gt",
"cities": [
"Guelph"
],
"defaultVehicleType": "bus",
"color": "#6CB43F",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": "http://data.open.guelph.ca/pages/open-government-licence",
"title": "City of Guelph Open Government Licence",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 28,
"isArchived": false,
"name": "GO Transit",
"shortName": "GO",
"slug": "go",
"cities": [
"Hamilton",
"Barrie",
"Richmond Hill",
"Stouffville",
"Kitchener"
],
"defaultVehicleType": "bus",
"color": "#256C2F",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": null,
"title": "GO Transit API licence",
"isDownloadable": false
},
"features": [],
"meta": {}
},
{
"id": 29,
"isArchived": false,
"name": "Barrie Transit",
"shortName": "Barrie",
"slug": "bt",
"cities": [
"Barrie",
"Angus",
"Borden"
],
"defaultVehicleType": "bus",
"color": "#12A9D8",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": "https://www.barrie.ca/Living/Getting%20Around/BarrieTransit/Pages/Barrie-GTFS.aspx",
"title": "Barrie Transit Data License",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 37,
"isArchived": false,
"name": "UP Express",
"shortName": "UP",
"slug": "up",
"cities": [
"Toronto"
],
"defaultVehicleType": "train",
"color": "#555025",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": null,
"title": "GO Transit API licence",
"isDownloadable": false
},
"features": [],
"meta": {}
},
{
"id": 39,
"isArchived": false,
"name": "London Transit Commission",
"shortName": "London",
"slug": "ltc",
"cities": [
"London"
],
"defaultVehicleType": "bus",
"color": "#087ac0",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": "https://www.londontransit.ca/open-data/ltcs-open-data-terms-of-use/",
"title": "LTC’s Open Data – Terms of Use",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 42,
"isArchived": false,
"name": "Stratford Transit",
"shortName": "Stratford",
"slug": "stratford",
"cities": [
"Stratford"
],
"defaultVehicleType": "bus",
"color": "#002861",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": null,
"title": "Not specified",
"isDownloadable": true
},
"features": [
"metrolinxTMIX",
"tmixID:349560"
],
"meta": {}
},
{
"id": 43,
"isArchived": false,
"name": "Orangeville Transit",
"shortName": "Orangeville",
"slug": "orangeville",
"cities": [
"Orangeville"
],
"defaultVehicleType": "bus",
"color": "#f9820a",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": null,
"title": "Not specified",
"isDownloadable": true
},
"features": [
"metrolinxTMIX",
"tmixID:349360"
],
"meta": {}
},
{
"id": 44,
"isArchived": false,
"name": "St. Thomas Transit",
"shortName": "St. Thomas",
"slug": "stthomas",
"cities": [
"St. Thomas"
],
"defaultVehicleType": "bus",
"color": "#a70237",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": null,
"title": "Not specified",
"isDownloadable": true
},
"features": [
"metrolinxTMIX",
"tmixID:349660"
],
"meta": {}
},
{
"id": 45,
"isArchived": false,
"name": "Milton Transit",
"shortName": "Milton",
"slug": "milton",
"cities": [
"Milton"
],
"defaultVehicleType": "bus",
"color": "#00b3ee",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": null,
"title": "Not specified",
"isDownloadable": true
},
"features": [
"metrolinxTMIX",
"tmixID:Milton"
],
"meta": {}
},
{
"id": 50,
"isArchived": false,
"name": "MiWay",
"shortName": "MiWay",
"slug": "miway",
"cities": [
"Mississauga"
],
"defaultVehicleType": "bus",
"color": "#f26322",
"textColor": "#FFFFFF",
"regions": [
"tor"
],
"license": {
"url": "http://www5.mississauga.ca/research_catalogue/CityofMississauga_TermsofUse.pdf",
"title": "City of Mississauga’s Terms and Conditions",
"isDownloadable": true
},
"features": [],
"meta": {}
}
]
},
{
"name": "Sherbrooke",
"slug": "sh",
"credits": "<p>Header photo by <a href=\"https://unsplash.com/es/@add_rien_20\">Adrien</a></p>",
"infoTitle": "",
"infoBody": "",
"description": "Explore the sixth largest city in Quebec and its bus network, operated by the Société de transport de Sherbrooke (STSH).",
"metaDescription": "Explore Sherbrooke and its bus network with Transit Tracker.",
"cities": [
"Sherbrooke"
],
"image": "01HRZQTC40EKQSAK4CGD8V8Z2P.jpg",
"mapBox": [
[
"-72.0264",
"45.32451"
],
[
"-71.7919",
"45.4866"
]
],
"mapCenter": {
"lat": "45.4043",
"lon": "-71.8926"
},
"mapZoom": 12,
"agencies": [
{
"id": 25,
"isArchived": false,
"name": "Société de transport de Sherbrooke",
"shortName": "STSH",
"slug": "stsh",
"cities": [
"Sherbrooke"
],
"defaultVehicleType": "bus",
"color": "#2C516A",
"textColor": "#FFFFFF",
"regions": [
"sh"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
}
]
},
{
"name": "Capitale-Nationale (Québec)",
"slug": "qc",
"credits": "<p>Header photo by Samuel Deschenes</p>",
"infoTitle": "",
"infoBody": "",
"description": "In the provincial capital, the Réseau de la Capitale and the Société de transport de Lévis provide bus service on both sides of the St. Lawrence River.",
"metaDescription": "Explore with Transit Tracker the bus service of the Réseau de la Capitale and the Société de transport de Lévis in the Capitale-Nationale region of Quebec.",
"cities": [
"Saint-Lambert-de-Lauzon",
"Québec"
],
"image": "01HWTB2A161KKTFBR0144RNET9.jpg",
"mapBox": [
[
"-71.4455",
"46.6443"
],
[
"-71.0829",
"46.84"
]
],
"mapCenter": {
"lat": "46.7456",
"lon": "-71.3005"
},
"mapZoom": 10,
"agencies": [
{
"id": 30,
"isArchived": false,
"name": "Société de transport de Lévis",
"shortName": "STLévis",
"slug": "stlevis",
"cities": [
"Lévis",
"Saint-Lambert-de-Lauzon"
],
"defaultVehicleType": "bus",
"color": "#0F9BBF",
"textColor": "#FFFFFF",
"regions": [
"qc"
],
"license": {
"url": "http://creativecommons.org/licenses/by/4.0/deed.fr",
"title": "Creative Commons Attribution 4.0 (CC BY 4.0)",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 46,
"isArchived": false,
"name": "Réseau de transport de la Capitale",
"shortName": "RTC",
"slug": "rtc",
"cities": [
"Québec",
"Saint-Augustin-de-Desmaures",
"L'Ancienne-Lorette"
],
"defaultVehicleType": "bus",
"color": "#003e8a",
"textColor": "#FFFFFF",
"regions": [
"qc"
],
"license": {
"url": "https://www.rtcquebec.ca/donnees-ouvertes",
"title": "License des données ouvertes",
"isDownloadable": true
},
"features": [],
"meta": {}
}
]
},
{
"name": "Ottawa-Gatineau",
"slug": "outaouais",
"credits": "<p>Header photo by <a href=\"https://unsplash.com/@shubhamsharan\">Shubham Sharan</a></p>",
"infoTitle": "",
"infoBody": "",
"description": "Discover the Ottawa-Gatineau region, the National Capital of Canada, with bus services from OC Transpo, STO and Transcollines.",
"metaDescription": "Discover the Ottawa-Gatineau region, the National Capital of Canada, with bus services from OC Transpo, STO and Transcollines.",
"cities": [
"Gatineau",
"Ottawa"
],
"image": "01HW8ZFDRVKKH20HPB4K2W67H6.jpg",
"mapBox": [
[
"-76.0721",
"45.3758"
],
[
"-75.3793",
"45.6611"
]
],
"mapCenter": {
"lat": "45.5388",
"lon": "-75.7386"
},
"mapZoom": 10,
"agencies": [
{
"id": 32,
"isArchived": false,
"name": "Société de transport de l'Outaouais",
"shortName": "STO",
"slug": "sto",
"cities": [
"Gatineau"
],
"defaultVehicleType": "bus",
"color": "#007F89",
"textColor": "#FFFFFF",
"regions": [
"outaouais"
],
"license": {
"url": "http://www.sto.ca/index.php?id=598&L=fr",
"title": "Conditions d'utilisation - Données ouvertes et clé API",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 55,
"isArchived": false,
"name": "OC Transpo",
"shortName": "OC Transpo",
"slug": "octranspo",
"cities": [
"Ottawa"
],
"defaultVehicleType": "bus",
"color": "#d94138",
"textColor": "#ffffff",
"regions": [
"outaouais"
],
"license": {
"url": "https://ottawa.ca/en/city-hall/open-transparent-and-accountable-government/open-data#section-7d58affa-59a3-47f2-932d-ccb75000cefc",
"title": "City of Ottawa Open Data Terms of Use",
"isDownloadable": true
},
"features": [],
"meta": {}
}
]
},
{
"name": "Laurentides",
"slug": "laurentides",
"credits": "<p>Header photo by <a href=\"https://unsplash.com/@amandachang\">amanda</a></p>",
"infoTitle": "",
"infoBody": "",
"description": "In the heart of the Laurentians region, the City of Mont-Tremblant offers a free public transit service for its citizens and tourists.",
"metaDescription": "Discover the City of Mont-Tremblant's transportation network with Transit Tracker.",
"cities": [
"Mont-Tremblant",
"Sainte-Anne-des-Lacs",
"Sainte-Marthe-sur-le-Lac"
],
"image": "01HRZR1J93RQ66R61ZJZWBYFK3.jpg",
"mapBox": [
[
"-74.6473",
"45.7623"
],
[
"-73.9867",
"46.2236"
]
],
"mapCenter": {
"lat": "46.1185",
"lon": "-74.593"
},
"mapZoom": 12,
"agencies": [
{
"id": 33,
"isArchived": false,
"name": "BUS Mont-Tremblant",
"shortName": "BMT",
"slug": "tcmt",
"cities": [
"Mont-Tremblant"
],
"defaultVehicleType": "bus",
"color": "#095d7e",
"textColor": "#FFFFFF",
"regions": [
"laurentides"
],
"license": {
"url": "https://zenbus.fr/zenbusapi/",
"title": "Zenbus API",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 40,
"isArchived": false,
"name": "L'Inter",
"shortName": "Inter",
"slug": "inter",
"cities": [
"Mont-Blanc",
"Val-David",
"Sainte-Adèle",
"Saint-Sauveur",
"Saint-Jérôme"
],
"defaultVehicleType": "bus",
"color": "#f5791f",
"textColor": "#FFFFFF",
"regions": [
"laurentides"
],
"license": {
"url": "https://zenbus.fr/zenbusapi/",
"title": "Zenbus API",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 5,
"isArchived": false,
"name": "exo Laurentides",
"shortName": "Laurentides",
"slug": "la",
"cities": [
"Bois-des-Filion",
"Mirabel",
"Rosemère",
"Saint-Jérôme",
"Saint-Joseph-du-Lac"
],
"defaultVehicleType": "bus",
"color": "#00A586",
"textColor": "#FFFFFF",
"regions": [
"mtl",
"laurentides"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
}
]
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET v2/regions/{region_slug}
Example request:
curl --request GET \
--get "https://api.transittracker.ca/v2/regions/mtl" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "Accept-Language: en"
$client = new \GuzzleHttp\Client();
$url = 'https://api.transittracker.ca/v2/regions/mtl';
$response = $client->get(
$url,
[
'headers' => [
'Content-Type' => 'application/json',
'Accept' => 'application/json',
'Accept-Language' => 'en',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://api.transittracker.ca/v2/regions/mtl'
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Accept-Language': 'en'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 12
x-ratelimit-remaining: 10
content-language: en
vary: Origin
{
"data": {
"name": "Montréal",
"slug": "mtl",
"credits": "<p>Header photo by <a href=\"https://unsplash.com/@storybyphil\"><span style=\"text-decoration: underline;\">Phil Desforges</span></a> </p>",
"infoTitle": "",
"infoBody": "",
"description": "Explore the metropolitan region of Montreal, with its bus networks on the island of Montreal, Laval, Longueuil and on the northern and southern crowns. In addition, commuter train services are also represented.",
"metaDescription": "Explore the metropolitan region of Montreal with Transit Tracker. Bus networks on the island of Montreal, Laval, Longueuil and on the northern and southern crowns, with a commuter train service.",
"cities": [
"Montréal",
"Saint-Jérôme",
"Laval",
"Longueuil",
"Blainville",
"Otterburn Park",
"Candiac",
"Repentigny",
"Sainte-Julie",
"Mercier",
"Mercier",
"Rigaud",
"Sainte-Catherine",
"Saint-Amable",
"Terrebonne",
"Richelieu",
"Sorel-Tracy",
"Howick",
"Saint-Lin-Laurentides",
"Saint-Philippe",
"Saint-Jean-sur-Richelieu",
"Saint-Hyacinthe"
],
"image": "01HRZQK091ZBWWA78YF9M08XR8.jpg",
"mapBox": [
[
"-74.3308",
"45.1917"
],
[
"-72.9355",
"46.058"
]
],
"mapCenter": {
"lat": "45.5894",
"lon": "-73.661"
},
"mapZoom": 9,
"agencies": [
{
"id": 1,
"isArchived": false,
"name": "Société de transport de Montréal",
"shortName": "STM",
"slug": "stm",
"cities": [
"Montréal"
],
"defaultVehicleType": "bus",
"color": "#00AEEF",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 2,
"isArchived": false,
"name": "exo Trains",
"shortName": "Trains",
"slug": "trains",
"cities": [
"Vaudreuil",
"Saint-Jérôme",
"Mont-Saint-Hilaire",
"Candiac",
"Mascouche"
],
"defaultVehicleType": "train",
"color": "#C8017E",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 3,
"isArchived": false,
"name": "Société de transport de Laval",
"shortName": "STL",
"slug": "stl",
"cities": [
"Laval"
],
"defaultVehicleType": "bus",
"color": "#84C444",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 4,
"isArchived": false,
"name": "Réseau de transport de Longueuil",
"shortName": "RTL",
"slug": "rtl",
"cities": [
"Longueuil"
],
"defaultVehicleType": "bus",
"color": "#ce0037",
"textColor": "#ffe8d0",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 5,
"isArchived": false,
"name": "exo Laurentides",
"shortName": "Laurentides",
"slug": "la",
"cities": [
"Bois-des-Filion",
"Deux-Montagnes",
"Pointe-Calumet",
"Rosemère",
"Sainte-Anne-des-Plaines"
],
"defaultVehicleType": "bus",
"color": "#00A586",
"textColor": "#FFFFFF",
"regions": [
"mtl",
"laurentides"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 6,
"isArchived": false,
"name": "exo Vallée-du-Richelieu",
"shortName": "Vallée-du-Richelieu",
"slug": "vr",
"cities": [
"Mont-Saint-Hilaire",
"Saint-Basile-le-Grand",
"Saint-Hyacinthe",
"Sainte-Madeleine",
"Sainte-Marie-Madeleine"
],
"defaultVehicleType": "bus",
"color": "#1F96A4",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 7,
"isArchived": true,
"name": "exo Le Richelain",
"shortName": "Le Richelain",
"slug": "lr",
"cities": [
"Candiac",
"La Prairie",
"Saint-Philippe"
],
"defaultVehicleType": "bus",
"color": "#41474d",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 8,
"isArchived": false,
"name": "exo L'Assomption",
"shortName": "L'Assomption",
"slug": "lasso",
"cities": [
"L'Assomption",
"Lavaltrie",
"Charlemagne",
"Repentigny",
"Saint-Sulpice"
],
"defaultVehicleType": "bus",
"color": "#0071BA",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 9,
"isArchived": false,
"name": "exo Sainte-Julie",
"shortName": "Sainte-Julie",
"slug": "sju",
"cities": [
"Sainte-Julie"
],
"defaultVehicleType": "bus",
"color": "#F7A389",
"textColor": "#000000",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 10,
"isArchived": false,
"name": "exo Sud-Ouest",
"shortName": "Sud-Ouest",
"slug": "so",
"cities": [
"Beauharnois",
"Léry",
"Mercier",
"Sainte-Martine",
"Ormstown"
],
"defaultVehicleType": "bus",
"color": "#B94065",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 11,
"isArchived": true,
"name": "exo Haut-Saint-Laurent",
"shortName": "Haut-Saint-Laurent (exo)",
"slug": "hsl",
"cities": [
"Mercier",
"Sainte-Martine",
"Ormstown",
"Très-Saint-Sacrement",
"Howick"
],
"defaultVehicleType": "bus",
"color": "#41474d",
"textColor": "#000000",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 12,
"isArchived": false,
"name": "exo La Presqu'Île",
"shortName": "La Presqu'Île",
"slug": "pi",
"cities": [
"Hudson",
"Île Perrot",
"Notre-Dame-de-l’Île-Perrot",
"Pincourt",
"Rigaud"
],
"defaultVehicleType": "bus",
"color": "#FCEFC5",
"textColor": "#000000",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 13,
"isArchived": true,
"name": "exo Roussillon",
"shortName": "Roussillon",
"slug": "rous",
"cities": [
"Delson",
"Saint-Constant",
"Sainte-Catherine"
],
"defaultVehicleType": "bus",
"color": "#41474d",
"textColor": "#ffffff",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 14,
"isArchived": false,
"name": "exo Sorel-Varennes",
"shortName": "Sorel-Varennes",
"slug": "sv",
"cities": [
"Varennes",
"Verchères",
"Contrecoeur",
"Saint-Amable",
"Saint-Joseph-de-Sorel"
],
"defaultVehicleType": "bus",
"color": "#EFDCCE",
"textColor": "#000000",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 15,
"isArchived": false,
"name": "exo Terrebonne-Mascouche",
"shortName": "Terrebonne-Mascouche",
"slug": "tm",
"cities": [
"Terrebonne",
"Mascouche"
],
"defaultVehicleType": "bus",
"color": "#9ED1C6",
"textColor": "#000000",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 16,
"isArchived": false,
"name": "exo Chambly-Richelieu-Carignan",
"shortName": "Chambly-Richelieu-Carignan",
"slug": "crc",
"cities": [
"Chambly",
"Richelieu",
"Carignan"
],
"defaultVehicleType": "bus",
"color": "#F1776A",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 34,
"isArchived": false,
"name": "Société de transport collectif de Pierre-De Saurel",
"shortName": "Pierre-De Saurel",
"slug": "stcpds",
"cities": [
"Sorel-Tracy"
],
"defaultVehicleType": "bus",
"color": "#4b858e",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://zenbus.fr/zenbusapi/",
"title": "Zenbus API",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 35,
"isArchived": false,
"name": "MRC du Haut-Saint-Laurent",
"shortName": "Haut-Saint-Laurent (MRC)",
"slug": "mrchsl",
"cities": [
"Godmanchester",
"Howick",
"Huntingdon",
"Ormstown",
"Très-Saint-Sacrement"
],
"defaultVehicleType": "bus",
"color": "#1c94cc",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://zenbus.fr/zenbusapi/",
"title": "Zenbus API",
"isDownloadable": true
},
"features": [
"useRouteFromTrip"
],
"meta": {}
},
{
"id": 48,
"isArchived": false,
"name": "MRC de Montcalm",
"shortName": "Montcalm",
"slug": "montcalm",
"cities": [
"Saint-Lin-Laurentides",
"Terrebonne"
],
"defaultVehicleType": "bus",
"color": "#8ebb52",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://zenbus.fr/zenbusapi/",
"title": "Zenbus API",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 49,
"isArchived": false,
"name": "exo Le Richelain / Roussillon",
"shortName": "Richelain / Roussillon",
"slug": "lrrs",
"cities": [
"Candiac",
"La Prairie",
"Saint-Philippe"
],
"defaultVehicleType": "bus",
"color": "#7C5D81",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://www.donneesquebec.ca/fr/licence/#cc-by",
"title": "Creative Commons – Attribution 4.0 CC-BY",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 51,
"isArchived": false,
"name": "Saint-Jean-sur-Richelieu",
"shortName": "SJSR",
"slug": "sjsr",
"cities": [
"Saint-Jean-sur-Richelieu"
],
"defaultVehicleType": "bus",
"color": "#005982",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": "https://zenbus.fr/zenbusapi/",
"title": "Zenbus API",
"isDownloadable": true
},
"features": [],
"meta": {}
},
{
"id": 54,
"isArchived": false,
"name": "Ville de Saint-Hyacinthe",
"shortName": "Saint-Hyacinthe",
"slug": "vsh",
"cities": [
"Saint-Hyacinthe"
],
"defaultVehicleType": "bus",
"color": "#08a78b",
"textColor": "#FFFFFF",
"regions": [
"mtl"
],
"license": {
"url": null,
"title": "Not specified",
"isDownloadable": true
},
"features": [
"useRouteFromTrip"
],
"meta": {}
}
]
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Tags
GET v2/tags
GET v2/tags/{tag_id}
Vehicles
GET v2/agencies/{agency_slug}/vehicles
Example request:
curl --request GET \
--get "https://api.transittracker.ca/v2/agencies/stm/vehicles?geojson=" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "Accept-Language: en"
$client = new \GuzzleHttp\Client();
$url = 'https://api.transittracker.ca/v2/agencies/stm/vehicles';
$response = $client->get(
$url,
[
'headers' => [
'Content-Type' => 'application/json',
'Accept' => 'application/json',
'Accept-Language' => 'en',
],
'query' => [
'geojson' => '0',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://api.transittracker.ca/v2/agencies/stm/vehicles'
params = {
'geojson': '0',
}
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Accept-Language': 'en'
}
response = requests.request('GET', url, headers=headers, params=params)
response.json()
Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 138
x-ratelimit-remaining: 135
content-language: en
vary: Origin
{
"data": [
{
"id": 111,
"ref": "27520",
"isActive": true,
"label": "27520",
"timestamp": 1749738647,
"tripId": "286570790",
"routeId": "71",
"startTime": "09:55:00",
"position": {
"lat": 45.49535,
"lon": -73.57852
},
"bearing": 302,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 34,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286570790",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "71",
"routeLongName": "Pointe-Saint-Charles",
"shapeLink": "/storage/shapes/stm/710083.json",
"shapeId": "710083",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 126,
"ref": "28030",
"isActive": true,
"label": "28030",
"timestamp": 1749738646,
"tripId": "284739513",
"routeId": "45",
"startTime": "10:29:00",
"position": {
"lat": 45.52313,
"lon": -73.55353
},
"bearing": 296,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "284739513",
"headsign": "Nord",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "45",
"routeLongName": "Papineau",
"shapeLink": "/storage/shapes/stm/450176.json",
"shapeId": "450176",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 128,
"ref": "28033",
"isActive": true,
"label": "28033",
"timestamp": 1749738640,
"tripId": "285007658",
"routeId": "170",
"startTime": "10:10:00",
"position": {
"lat": 45.51781,
"lon": -73.68829
},
"bearing": 132,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 26,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285007658",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "170",
"routeLongName": "Keller",
"shapeLink": "/storage/shapes/stm/1700177.json",
"shapeId": "1700177",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 133,
"ref": "28048",
"isActive": true,
"label": "28048",
"timestamp": 1749738632,
"tripId": "286570763",
"routeId": "71",
"startTime": "10:11:00",
"position": {
"lat": 45.47974,
"lon": -73.55314
},
"bearing": 181,
"speed": 7,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 16,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286570763",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "71",
"routeLongName": "Pointe-Saint-Charles",
"shapeLink": "/storage/shapes/stm/710084.json",
"shapeId": "710084",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 154,
"ref": "28107",
"isActive": true,
"label": "28107",
"timestamp": 1749738640,
"tripId": "284739316",
"routeId": "48",
"startTime": "09:51:00",
"position": {
"lat": 45.58415,
"lon": -73.65036
},
"bearing": 196,
"speed": 20,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 45,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "284739316",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": "/storage/shapes/stm/480411.json",
"shapeId": "480411",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 166,
"ref": "28131",
"isActive": true,
"label": "28131",
"timestamp": 1749738646,
"tripId": "285009544",
"routeId": "209",
"startTime": "10:07:00",
"position": {
"lat": 45.46674,
"lon": -73.78773
},
"bearing": 144,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285009544",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "209",
"routeLongName": "Des Sources",
"shapeLink": "/storage/shapes/stm/2090098.json",
"shapeId": "2090098",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 172,
"ref": "29017",
"isActive": true,
"label": "29017",
"timestamp": 1749738635,
"tripId": "284726605",
"routeId": "30",
"startTime": "10:21:00",
"position": {
"lat": 45.54859,
"lon": -73.63349
},
"bearing": 112,
"speed": 1,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 13,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284726605",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "30",
"routeLongName": "Saint-Denis / Saint-Hubert",
"shapeLink": "/storage/shapes/stm/300085.json",
"shapeId": "300085",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 173,
"ref": "29018",
"isActive": true,
"label": "29018",
"timestamp": 1749738633,
"tripId": "284726864",
"routeId": "161",
"startTime": "10:08:00",
"position": {
"lat": 45.50096,
"lon": -73.63209
},
"bearing": 219,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 18,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284726864",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "161",
"routeLongName": "Van Horne",
"shapeLink": "/storage/shapes/stm/1610134.json",
"shapeId": "1610134",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 189,
"ref": "29064",
"isActive": true,
"label": "29064",
"timestamp": 1749738648,
"tripId": "286569740",
"routeId": "12",
"startTime": "10:17:00",
"position": {
"lat": 45.46798,
"lon": -73.54543
},
"bearing": 100,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286569740",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "12",
"routeLongName": "Île-des-Soeurs",
"shapeLink": "/storage/shapes/stm/120115.json",
"shapeId": "120115",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 191,
"ref": "29070",
"isActive": true,
"label": "29070",
"timestamp": 1749738641,
"tripId": "285007191",
"routeId": "72",
"startTime": "10:14:00",
"position": {
"lat": 45.46266,
"lon": -73.81498
},
"bearing": 54,
"speed": 37,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 4,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285007191",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": "/storage/shapes/stm/720182.json",
"shapeId": "720182",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 200,
"ref": "29085",
"isActive": true,
"label": "29085",
"timestamp": 1749738633,
"tripId": "286573270",
"routeId": "195",
"startTime": "09:39:00",
"position": {
"lat": 45.44784,
"lon": -73.73917
},
"bearing": 252,
"speed": 16,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 53,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286573270",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "195",
"routeLongName": "Dorval / Angrignon",
"shapeLink": "/storage/shapes/stm/1950177.json",
"shapeId": "1950177",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 205,
"ref": "29092",
"isActive": true,
"label": "29092",
"timestamp": 1749738632,
"tripId": "286570965",
"routeId": "90",
"startTime": "10:16:00",
"position": {
"lat": 45.47366,
"lon": -73.60476
},
"bearing": 217,
"speed": 28,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 12,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286570965",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "90",
"routeLongName": "Saint-Jacques",
"shapeLink": "/storage/shapes/stm/900254.json",
"shapeId": "900254",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 207,
"ref": "29098",
"isActive": true,
"label": "29098",
"timestamp": 1749738633,
"tripId": "286570637",
"routeId": "190",
"startTime": "10:26:00",
"position": {
"lat": 45.44792,
"lon": -73.65754
},
"bearing": 118,
"speed": 10,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 10,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286570637",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "190",
"routeLongName": "Norman",
"shapeLink": "/storage/shapes/stm/1900003.json",
"shapeId": "1900003",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 213,
"ref": "29125",
"isActive": true,
"label": "29125",
"timestamp": 1749738635,
"tripId": "286574285",
"routeId": "420",
"startTime": "09:36:00",
"position": {
"lat": 45.50159,
"lon": -73.574
},
"bearing": 128,
"speed": 17,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 17,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286574285",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "420",
"routeLongName": "Express Notre-Dame-de-Grâce",
"shapeLink": "/storage/shapes/stm/4200115.json",
"shapeId": "4200115",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 218,
"ref": "29138",
"isActive": true,
"label": "29138",
"timestamp": 1749738644,
"tripId": "286570296",
"routeId": "38",
"startTime": "10:01:00",
"position": {
"lat": 45.47699,
"lon": -73.59868
},
"bearing": 218,
"speed": 24,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 26,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286570296",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "38",
"routeLongName": "De l'Église",
"shapeLink": "/storage/shapes/stm/380008.json",
"shapeId": "380008",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 219,
"ref": "29139",
"isActive": true,
"label": "29139",
"timestamp": 1749738633,
"tripId": "286572555",
"routeId": "35",
"startTime": "09:37:00",
"position": {
"lat": 45.50294,
"lon": -73.56932
},
"bearing": 305,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 44,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286572555",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "35",
"routeLongName": "Griffintown",
"shapeLink": "/storage/shapes/stm/350017.json",
"shapeId": "350017",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 220,
"ref": "29140",
"isActive": true,
"label": "29140",
"timestamp": 1749738634,
"tripId": "286571224",
"routeId": "101",
"startTime": "09:59:00",
"position": {
"lat": 45.44515,
"lon": -73.63377
},
"bearing": 242,
"speed": 7,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 25,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286571224",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "101",
"routeLongName": "Saint-Patrick",
"shapeLink": "/storage/shapes/stm/1010134.json",
"shapeId": "1010134",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 226,
"ref": "29147",
"isActive": true,
"label": "29147",
"timestamp": 1749738647,
"tripId": "286574308",
"routeId": "420",
"startTime": "10:08:00",
"position": {
"lat": 45.47164,
"lon": -73.59846
},
"bearing": 236,
"speed": 60,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 12,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286574308",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "420",
"routeLongName": "Express Notre-Dame-de-Grâce",
"shapeLink": "/storage/shapes/stm/4200115.json",
"shapeId": "4200115",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 238,
"ref": "29825",
"isActive": true,
"label": "29825",
"timestamp": 1749738643,
"tripId": "284739397",
"routeId": "121",
"startTime": "10:40:00",
"position": {
"lat": 45.49798,
"lon": -73.70981
},
"bearing": 312,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739397",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "121",
"routeLongName": "Sauvé / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/1210266.json",
"shapeId": "1210266",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 242,
"ref": "29831",
"isActive": true,
"label": "29831",
"timestamp": 1749738645,
"tripId": "284741419",
"routeId": "439",
"startTime": "10:19:00",
"position": {
"lat": 45.55625,
"lon": -73.5595
},
"bearing": 294,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 9,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284741419",
"headsign": "Nord destination Cégep Marie-Victorin",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390256.json",
"shapeId": "4390256",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 260,
"ref": "30007",
"isActive": true,
"label": "30007",
"timestamp": 1749738569,
"tripId": "284778184",
"routeId": "119",
"startTime": "10:00:00",
"position": {
"lat": 45.51842,
"lon": -73.64458
},
"bearing": 158,
"speed": 24,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 37,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284778184",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "119",
"routeLongName": "Rockland",
"shapeLink": "/storage/shapes/stm/1190075.json",
"shapeId": "1190075",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 267,
"ref": "30050",
"isActive": true,
"label": "30050",
"timestamp": 1749738638,
"tripId": "285002320",
"routeId": "97",
"startTime": "10:15:00",
"position": {
"lat": 45.54187,
"lon": -73.56869
},
"bearing": 279,
"speed": 24,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 37,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285002320",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "97",
"routeLongName": "Avenue-du-Mont-Royal",
"shapeLink": "/storage/shapes/stm/970204.json",
"shapeId": "970204",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 278,
"ref": "30090",
"isActive": true,
"label": "30090",
"timestamp": 1749738648,
"tripId": "285001953",
"routeId": "51",
"startTime": "10:32:00",
"position": {
"lat": 45.52648,
"lon": -73.58653
},
"bearing": 131,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285001953",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": "/storage/shapes/stm/510191.json",
"shapeId": "510191",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 285,
"ref": "30111",
"isActive": true,
"label": "30111",
"timestamp": 1749738356,
"tripId": "285030557",
"routeId": "44",
"startTime": "09:49:00",
"position": {
"lat": 45.58947,
"lon": -73.53971
},
"bearing": 295,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 37,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285030557",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "44",
"routeLongName": "Armand-Bombardier",
"shapeLink": "/storage/shapes/stm/440168.json",
"shapeId": "440168",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 287,
"ref": "30118",
"isActive": true,
"label": "30118",
"timestamp": 1749738632,
"tripId": "285029510",
"routeId": "33",
"startTime": "09:46:00",
"position": {
"lat": 45.59034,
"lon": -73.56798
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 43,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285029510",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": "/storage/shapes/stm/330282.json",
"shapeId": "330282",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 293,
"ref": "30138",
"isActive": true,
"label": "30138",
"timestamp": 1749738637,
"tripId": "285029603",
"routeId": "141",
"startTime": "09:52:00",
"position": {
"lat": 45.60696,
"lon": -73.53789
},
"bearing": 122,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 45,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285029603",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": "/storage/shapes/stm/1410585.json",
"shapeId": "1410585",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 296,
"ref": "30141",
"isActive": true,
"label": "30141",
"timestamp": 1749738645,
"tripId": "285029089",
"routeId": "43",
"startTime": "10:09:00",
"position": {
"lat": 45.59901,
"lon": -73.62185
},
"bearing": 52,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 25,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285029089",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "43",
"routeLongName": "Monselet",
"shapeLink": "/storage/shapes/stm/430204.json",
"shapeId": "430204",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 297,
"ref": "30144",
"isActive": true,
"label": "30144",
"timestamp": 1749738635,
"tripId": "285028469",
"routeId": "26",
"startTime": "10:18:00",
"position": {
"lat": 45.6037,
"lon": -73.53078
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 22,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285028469",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "26",
"routeLongName": "Mercier-Est",
"shapeLink": "/storage/shapes/stm/260107.json",
"shapeId": "260107",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 300,
"ref": "30149",
"isActive": true,
"label": "30149",
"timestamp": 1749738642,
"tripId": "284726948",
"routeId": "197",
"startTime": "10:10:00",
"position": {
"lat": 45.56543,
"lon": -73.56958
},
"bearing": 33,
"speed": 31,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 22,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284726948",
"headsign": "Est via de la Pépinière",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "197",
"routeLongName": "Rosemont",
"shapeLink": "/storage/shapes/stm/1970142.json",
"shapeId": "1970142",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 301,
"ref": "30150",
"isActive": true,
"label": "30150",
"timestamp": 1749738643,
"tripId": "284727956",
"routeId": "92",
"startTime": "09:50:00",
"position": {
"lat": 45.532,
"lon": -73.60142
},
"bearing": 264,
"speed": 15,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 30,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284727956",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "92",
"routeLongName": "Jean-Talon Ouest",
"shapeLink": "/storage/shapes/stm/920105.json",
"shapeId": "920105",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 302,
"ref": "30152",
"isActive": true,
"label": "30152",
"timestamp": 1749738634,
"tripId": "285007279",
"routeId": "72",
"startTime": "09:45:00",
"position": {
"lat": 45.47198,
"lon": -73.79904
},
"bearing": 236,
"speed": 46,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 28,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285007279",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": "/storage/shapes/stm/720183.json",
"shapeId": "720183",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 304,
"ref": "30155",
"isActive": true,
"label": "30155",
"timestamp": 1749738648,
"tripId": "284727222",
"routeId": "18",
"startTime": "10:26:00",
"position": {
"lat": 45.59611,
"lon": -73.54575
},
"bearing": 298,
"speed": 36,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 4,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284727222",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "18",
"routeLongName": "Beaubien",
"shapeLink": "/storage/shapes/stm/180228.json",
"shapeId": "180228",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 310,
"ref": "30174",
"isActive": true,
"label": "30174",
"timestamp": 1749738565,
"tripId": "285009491",
"routeId": "205",
"startTime": "10:08:00",
"position": {
"lat": 45.50926,
"lon": -73.82232
},
"bearing": 151,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 34,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285009491",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "205",
"routeLongName": "Gouin",
"shapeLink": "/storage/shapes/stm/2050112.json",
"shapeId": "2050112",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 311,
"ref": "30179",
"isActive": true,
"label": "30179",
"timestamp": 1749738440,
"tripId": "285008912",
"routeId": "202",
"startTime": "09:32:00",
"position": {
"lat": 45.50779,
"lon": -73.67268
},
"bearing": 32,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 67,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008912",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "202",
"routeLongName": "Dawson",
"shapeLink": "/storage/shapes/stm/2020187.json",
"shapeId": "2020187",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 313,
"ref": "30185",
"isActive": true,
"label": "30185",
"timestamp": 1749738648,
"tripId": "285028502",
"routeId": "32",
"startTime": "09:50:00",
"position": {
"lat": 45.60604,
"lon": -73.61919
},
"bearing": 324,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 36,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285028502",
"headsign": "Nord",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "32",
"routeLongName": "Lacordaire",
"shapeLink": "/storage/shapes/stm/320164.json",
"shapeId": "320164",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 315,
"ref": "30193",
"isActive": true,
"label": "30193",
"timestamp": 1749738635,
"tripId": "285029807",
"routeId": "141",
"startTime": "10:01:00",
"position": {
"lat": 45.61155,
"lon": -73.55576
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 38,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285029807",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": "/storage/shapes/stm/1410585.json",
"shapeId": "1410585",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 319,
"ref": "30201",
"isActive": true,
"label": "30201",
"timestamp": 1749738647,
"tripId": "285006879",
"routeId": "409",
"startTime": "10:01:00",
"position": {
"lat": 45.4904,
"lon": -73.74559
},
"bearing": 93,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285006879",
"headsign": "Sud via Davignon",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "409",
"routeLongName": "Express Des Sources",
"shapeLink": "/storage/shapes/stm/4090095.json",
"shapeId": "4090095",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 325,
"ref": "30232",
"isActive": true,
"label": "30232",
"timestamp": 1749738637,
"tripId": "285007404",
"routeId": "164",
"startTime": "09:53:00",
"position": {
"lat": 45.50336,
"lon": -73.73373
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 40,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285007404",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "164",
"routeLongName": "Dudemaine",
"shapeLink": "/storage/shapes/stm/1640159.json",
"shapeId": "1640159",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 326,
"ref": "30234",
"isActive": true,
"label": "30234",
"timestamp": 1749738301,
"tripId": "285007121",
"routeId": "70",
"startTime": "10:03:00",
"position": {
"lat": 45.49271,
"lon": -73.73937
},
"bearing": 306,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 29,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285007121",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "70",
"routeLongName": "Bois-Franc",
"shapeLink": "/storage/shapes/stm/700197.json",
"shapeId": "700197",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 331,
"ref": "30248",
"isActive": true,
"label": "30248",
"timestamp": 1749738648,
"tripId": "285010246",
"routeId": "468",
"startTime": "09:56:00",
"position": {
"lat": 45.50762,
"lon": -73.76888
},
"bearing": 89,
"speed": 54,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 30,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285010246",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "468",
"routeLongName": "Express Pierrefonds / Gouin",
"shapeLink": "/storage/shapes/stm/4680091.json",
"shapeId": "4680091",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 334,
"ref": "30254",
"isActive": true,
"label": "30254",
"timestamp": 1749738434,
"tripId": "285006630",
"routeId": "64",
"startTime": "10:12:00",
"position": {
"lat": 45.51518,
"lon": -73.68414
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 20,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285006630",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "64",
"routeLongName": "Grenet",
"shapeLink": "/storage/shapes/stm/640165.json",
"shapeId": "640165",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 335,
"ref": "30255",
"isActive": true,
"label": "30255",
"timestamp": 1749738644,
"tripId": "285007164",
"routeId": "72",
"startTime": "10:14:00",
"position": {
"lat": 45.48754,
"lon": -73.73296
},
"bearing": 295,
"speed": 54,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 7,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285007164",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": "/storage/shapes/stm/720183.json",
"shapeId": "720183",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 355,
"ref": "30847",
"isActive": true,
"label": "30847",
"timestamp": 1749738645,
"tripId": "284739006",
"routeId": "67",
"startTime": "09:54:00",
"position": {
"lat": 45.57537,
"lon": -73.63491
},
"bearing": 300,
"speed": 2,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 32,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739006",
"headsign": "Nord",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "67",
"routeLongName": "Saint-Michel",
"shapeLink": "/storage/shapes/stm/670126.json",
"shapeId": "670126",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 364,
"ref": "30874",
"isActive": true,
"label": "30874",
"timestamp": 1749738645,
"tripId": "284738561",
"routeId": "121",
"startTime": "10:25:00",
"position": {
"lat": 45.5688,
"lon": -73.64526
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 8,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284738561",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "121",
"routeLongName": "Sauvé / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/1210271.json",
"shapeId": "1210271",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 367,
"ref": "30879",
"isActive": true,
"label": "30879",
"timestamp": 1749738634,
"tripId": "284739187",
"routeId": "467",
"startTime": "10:24:00",
"position": {
"lat": 45.58223,
"lon": -73.64777
},
"bearing": 132,
"speed": 54,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739187",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "467",
"routeLongName": "Express Saint-Michel",
"shapeLink": "/storage/shapes/stm/4670078.json",
"shapeId": "4670078",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 372,
"ref": "31012",
"isActive": true,
"label": "31012",
"timestamp": 1749738640,
"tripId": "284726813",
"routeId": "99",
"startTime": "10:30:00",
"position": {
"lat": 45.53993,
"lon": -73.61517
},
"bearing": 291,
"speed": 36,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284726813",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "99",
"routeLongName": "Villeray",
"shapeLink": "/storage/shapes/stm/990063.json",
"shapeId": "990063",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 373,
"ref": "31013",
"isActive": true,
"label": "31013",
"timestamp": 1749738635,
"tripId": "284727443",
"routeId": "129",
"startTime": "09:44:00",
"position": {
"lat": 45.49878,
"lon": -73.62733
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 30,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 3,
"label": "Congestion"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284727443",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "129",
"routeLongName": "Côte-Sainte-Catherine",
"shapeLink": "/storage/shapes/stm/1290220.json",
"shapeId": "1290220",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 375,
"ref": "31019",
"isActive": true,
"label": "31019",
"timestamp": 1749738641,
"tripId": "284727244",
"routeId": "99",
"startTime": "10:30:00",
"position": {
"lat": 45.56956,
"lon": -73.59505
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284727244",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "99",
"routeLongName": "Villeray",
"shapeLink": "/storage/shapes/stm/990065.json",
"shapeId": "990065",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 380,
"ref": "31040",
"isActive": true,
"label": "31040",
"timestamp": 1749738167,
"tripId": "285010111",
"routeId": "409",
"startTime": "09:35:00",
"position": {
"lat": 45.50823,
"lon": -73.67303
},
"bearing": 304,
"speed": 36,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 49,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285010111",
"headsign": "Sud via Davignon",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "409",
"routeLongName": "Express Des Sources",
"shapeLink": "/storage/shapes/stm/4090095.json",
"shapeId": "4090095",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 381,
"ref": "31042",
"isActive": true,
"label": "31042",
"timestamp": 1749738645,
"tripId": "285283107",
"routeId": "85",
"startTime": "09:38:00",
"position": {
"lat": 45.62434,
"lon": -73.5501
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 59,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285283107",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "85",
"routeLongName": "Hochelaga",
"shapeLink": "/storage/shapes/stm/850202.json",
"shapeId": "850202",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 387,
"ref": "31052",
"isActive": true,
"label": "31052",
"timestamp": 1749738641,
"tripId": "285282802",
"routeId": "10",
"startTime": "09:58:00",
"position": {
"lat": 45.52768,
"lon": -73.54971
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285282802",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "10",
"routeLongName": "De Lorimier",
"shapeLink": "/storage/shapes/stm/100075.json",
"shapeId": "100075",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 388,
"ref": "31058",
"isActive": true,
"label": "31058",
"timestamp": 1749738632,
"tripId": "285283828",
"routeId": "34",
"startTime": "10:34:00",
"position": {
"lat": 45.56121,
"lon": -73.54692
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285283828",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "34",
"routeLongName": "Sainte-Catherine",
"shapeLink": "/storage/shapes/stm/340097.json",
"shapeId": "340097",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 398,
"ref": "31096",
"isActive": true,
"label": "31096",
"timestamp": 1749738644,
"tripId": "284727100",
"routeId": "95",
"startTime": "09:59:00",
"position": {
"lat": 45.53917,
"lon": -73.61007
},
"bearing": 213,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 41,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284727100",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "95",
"routeLongName": "Bélanger",
"shapeLink": "/storage/shapes/stm/950102.json",
"shapeId": "950102",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 405,
"ref": "31117",
"isActive": true,
"label": "31117",
"timestamp": 1749738634,
"tripId": "284738702",
"routeId": "48",
"startTime": "10:12:00",
"position": {
"lat": 45.60113,
"lon": -73.63626
},
"bearing": 65,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 8,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284738702",
"headsign": "Est via Gouin / Ozias-Leduc",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": "/storage/shapes/stm/480413.json",
"shapeId": "480413",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 413,
"ref": "31139",
"isActive": true,
"label": "31139",
"timestamp": 1749738633,
"tripId": "284726578",
"routeId": "18",
"startTime": "09:54:00",
"position": {
"lat": 45.57923,
"lon": -73.56591
},
"bearing": 24,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 37,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284726578",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "18",
"routeLongName": "Beaubien",
"shapeLink": "/storage/shapes/stm/180220.json",
"shapeId": "180220",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 414,
"ref": "31141",
"isActive": true,
"label": "31141",
"timestamp": 1749738629,
"tripId": "284739893",
"routeId": "146",
"startTime": "10:25:00",
"position": {
"lat": 45.53852,
"lon": -73.65085
},
"bearing": 20,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 10,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739893",
"headsign": "Est destination Georges-Baril / Henri-Bourassa",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "146",
"routeLongName": "Christophe-Colomb / Meilleur",
"shapeLink": "/storage/shapes/stm/1460139.json",
"shapeId": "1460139",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 417,
"ref": "31146",
"isActive": true,
"label": "31146",
"timestamp": 1749738645,
"tripId": "285282850",
"routeId": "125",
"startTime": "09:51:00",
"position": {
"lat": 45.51083,
"lon": -73.56511
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 37,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285282850",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "125",
"routeLongName": "Ontario",
"shapeLink": "/storage/shapes/stm/1250191.json",
"shapeId": "1250191",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 420,
"ref": "31151",
"isActive": true,
"label": "31151",
"timestamp": 1749738639,
"tripId": "285284193",
"routeId": "24",
"startTime": "10:03:00",
"position": {
"lat": 45.50507,
"lon": -73.57339
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 22,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285284193",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "24",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/240184.json",
"shapeId": "240184",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 423,
"ref": "31157",
"isActive": true,
"label": "31157",
"timestamp": 1749738647,
"tripId": "285029704",
"routeId": "86",
"startTime": "09:47:00",
"position": {
"lat": 45.65036,
"lon": -73.49561
},
"bearing": 105,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 61,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285029704",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "86",
"routeLongName": "Pointe-aux-Trembles",
"shapeLink": "/storage/shapes/stm/860188.json",
"shapeId": "860188",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 425,
"ref": "31161",
"isActive": true,
"label": "31161",
"timestamp": 1749738640,
"tripId": "285282777",
"routeId": "24",
"startTime": "10:10:00",
"position": {
"lat": 45.49121,
"lon": -73.58796
},
"bearing": 36,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 17,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285282777",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "24",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/240185.json",
"shapeId": "240185",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 426,
"ref": "31162",
"isActive": true,
"label": "31162",
"timestamp": 1749738632,
"tripId": "285284081",
"routeId": "185",
"startTime": "10:45:00",
"position": {
"lat": 45.59533,
"lon": -73.50961
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285284081",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "185",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/1850127.json",
"shapeId": "1850127",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 429,
"ref": "31170",
"isActive": true,
"label": "31170",
"timestamp": 1749738637,
"tripId": "285030230",
"routeId": "432",
"startTime": "10:03:00",
"position": {
"lat": 45.58722,
"lon": -73.59694
},
"bearing": 153,
"speed": 38,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 28,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285030230",
"headsign": "Sud via Perras / Lacordaire",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "432",
"routeLongName": "Express Lacordaire",
"shapeLink": "/storage/shapes/stm/4320137.json",
"shapeId": "4320137",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 432,
"ref": "31174",
"isActive": true,
"label": "31174",
"timestamp": 1749738559,
"tripId": "285284794",
"routeId": "50",
"startTime": "09:56:00",
"position": {
"lat": 45.50695,
"lon": -73.58031
},
"bearing": 291,
"speed": 22,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 17,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285284794",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "50",
"routeLongName": "Vieux-Montréal / Vieux-Port",
"shapeLink": "/storage/shapes/stm/500003.json",
"shapeId": "500003",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 436,
"ref": "31187",
"isActive": true,
"label": "31187",
"timestamp": 1749738639,
"tripId": "285029491",
"routeId": "192",
"startTime": "10:20:00",
"position": {
"lat": 45.59992,
"lon": -73.5937
},
"bearing": 185,
"speed": 19,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 14,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285029491",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "192",
"routeLongName": "Robert",
"shapeLink": "/storage/shapes/stm/1920151.json",
"shapeId": "1920151",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 442,
"ref": "31204",
"isActive": true,
"label": "31204",
"timestamp": 1749738637,
"tripId": "284727473",
"routeId": "18",
"startTime": "10:29:00",
"position": {
"lat": 45.53122,
"lon": -73.60755
},
"bearing": 29,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 4,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284727473",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "18",
"routeLongName": "Beaubien",
"shapeLink": "/storage/shapes/stm/180220.json",
"shapeId": "180220",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 448,
"ref": "31222",
"isActive": true,
"label": "31222",
"timestamp": 1749738647,
"tripId": "284728073",
"routeId": "18",
"startTime": "10:04:00",
"position": {
"lat": 45.56103,
"lon": -73.58105
},
"bearing": 209,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 29,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284728073",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "18",
"routeLongName": "Beaubien",
"shapeLink": "/storage/shapes/stm/180228.json",
"shapeId": "180228",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 449,
"ref": "31224",
"isActive": true,
"label": "31224",
"timestamp": 1749738644,
"tripId": "285283273",
"routeId": "131",
"startTime": "10:33:00",
"position": {
"lat": 45.56916,
"lon": -73.54677
},
"bearing": 298,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285283273",
"headsign": "Nord destination Antonio-Dagenais / Lespinay",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "131",
"routeLongName": "De l'Assomption",
"shapeLink": "/storage/shapes/stm/1310099.json",
"shapeId": "1310099",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 450,
"ref": "31225",
"isActive": true,
"label": "31225",
"timestamp": 1749738645,
"tripId": "285283174",
"routeId": "94",
"startTime": "10:22:00",
"position": {
"lat": 45.5507,
"lon": -73.59522
},
"bearing": 125,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 10,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285283174",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "94",
"routeLongName": "D'Iberville",
"shapeLink": "/storage/shapes/stm/940089.json",
"shapeId": "940089",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 452,
"ref": "31228",
"isActive": true,
"label": "31228",
"timestamp": 1749738644,
"tripId": "285284013",
"routeId": "136",
"startTime": "10:01:00",
"position": {
"lat": 45.56538,
"lon": -73.55475
},
"bearing": 115,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 27,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285284013",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "136",
"routeLongName": "Viau",
"shapeLink": "/storage/shapes/stm/1360112.json",
"shapeId": "1360112",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 462,
"ref": "31815",
"isActive": true,
"label": "31815",
"timestamp": 1749738636,
"tripId": "284780221",
"routeId": "470",
"startTime": "10:24:00",
"position": {
"lat": 45.47345,
"lon": -73.87239
},
"bearing": 14,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 8,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284780221",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "470",
"routeLongName": "Express Pierrefonds",
"shapeLink": "/storage/shapes/stm/4700247.json",
"shapeId": "4700247",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 463,
"ref": "31816",
"isActive": true,
"label": "31816",
"timestamp": 1749738637,
"tripId": "284776938",
"routeId": "80",
"startTime": "09:53:00",
"position": {
"lat": 45.53431,
"lon": -73.64593
},
"bearing": 36,
"speed": 36,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 28,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284776938",
"headsign": "Nord",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "80",
"routeLongName": "Avenue du Parc",
"shapeLink": "/storage/shapes/stm/800106.json",
"shapeId": "800106",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 467,
"ref": "31826",
"isActive": true,
"label": "31826",
"timestamp": 1749738641,
"tripId": "284739417",
"routeId": "67",
"startTime": "10:14:00",
"position": {
"lat": 45.55781,
"lon": -73.59522
},
"bearing": 288,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 18,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739417",
"headsign": "Nord",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "67",
"routeLongName": "Saint-Michel",
"shapeLink": "/storage/shapes/stm/670126.json",
"shapeId": "670126",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 471,
"ref": "31834",
"isActive": true,
"label": "31834",
"timestamp": 1749738635,
"tripId": "284739365",
"routeId": "467",
"startTime": "09:53:00",
"position": {
"lat": 45.54897,
"lon": -73.55235
},
"bearing": 114,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 18,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739365",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "467",
"routeLongName": "Express Saint-Michel",
"shapeLink": "/storage/shapes/stm/4670078.json",
"shapeId": "4670078",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 472,
"ref": "31835",
"isActive": true,
"label": "31835",
"timestamp": 1749738638,
"tripId": "284741453",
"routeId": "439",
"startTime": "09:49:00",
"position": {
"lat": 45.59629,
"lon": -73.64207
},
"bearing": 28,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 23,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284741453",
"headsign": "Nord destination Cégep Marie-Victorin",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390256.json",
"shapeId": "4390256",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 474,
"ref": "31840",
"isActive": true,
"label": "31840",
"timestamp": 1749738640,
"tripId": "284738979",
"routeId": "69",
"startTime": "09:44:00",
"position": {
"lat": 45.60243,
"lon": -73.63238
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 57,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284738979",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "69",
"routeLongName": "Gouin",
"shapeLink": "/storage/shapes/stm/690225.json",
"shapeId": "690225",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 477,
"ref": "31843",
"isActive": true,
"label": "31843",
"timestamp": 1749738645,
"tripId": "284739549",
"routeId": "121",
"startTime": "09:55:00",
"position": {
"lat": 45.55051,
"lon": -73.6562
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739549",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "121",
"routeLongName": "Sauvé / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/1210266.json",
"shapeId": "1210266",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 482,
"ref": "31854",
"isActive": true,
"label": "31854",
"timestamp": 1749738643,
"tripId": "284739331",
"routeId": "67",
"startTime": "10:29:00",
"position": {
"lat": 45.58398,
"lon": -73.65056
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739331",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "67",
"routeLongName": "Saint-Michel",
"shapeLink": "/storage/shapes/stm/670125.json",
"shapeId": "670125",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 484,
"ref": "31857",
"isActive": true,
"label": "31857",
"timestamp": 1749738643,
"tripId": "284739694",
"routeId": "67",
"startTime": "10:36:00",
"position": {
"lat": 45.54692,
"lon": -73.55136
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739694",
"headsign": "Nord",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "67",
"routeLongName": "Saint-Michel",
"shapeLink": "/storage/shapes/stm/670126.json",
"shapeId": "670126",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 488,
"ref": "32006",
"isActive": true,
"label": "32006",
"timestamp": 1749738645,
"tripId": "284727840",
"routeId": "161",
"startTime": "10:36:00",
"position": {
"lat": 45.53164,
"lon": -73.59792
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284727840",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "161",
"routeLongName": "Van Horne",
"shapeLink": "/storage/shapes/stm/1610134.json",
"shapeId": "1610134",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 495,
"ref": "32023",
"isActive": true,
"label": "32023",
"timestamp": 1749738645,
"tripId": "285030167",
"routeId": "44",
"startTime": "10:09:00",
"position": {
"lat": 45.62073,
"lon": -73.58812
},
"bearing": 53,
"speed": 34,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285030167",
"headsign": "Nord",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "44",
"routeLongName": "Armand-Bombardier",
"shapeLink": "/storage/shapes/stm/440174.json",
"shapeId": "440174",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 498,
"ref": "32030",
"isActive": true,
"label": "32030",
"timestamp": 1749738640,
"tripId": "285007462",
"routeId": "164",
"startTime": "10:18:00",
"position": {
"lat": 45.53803,
"lon": -73.68871
},
"bearing": 219,
"speed": 22,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 12,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285007462",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "164",
"routeLongName": "Dudemaine",
"shapeLink": "/storage/shapes/stm/1640159.json",
"shapeId": "1640159",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 499,
"ref": "32801",
"isActive": true,
"label": "32801",
"timestamp": 1749738636,
"tripId": "284741366",
"routeId": "439",
"startTime": "10:29:00",
"position": {
"lat": 45.54782,
"lon": -73.53585
},
"bearing": 24,
"speed": 4,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284741366",
"headsign": "Nord destination Laval",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390254.json",
"shapeId": "4390254",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 501,
"ref": "32805",
"isActive": true,
"label": "32805",
"timestamp": 1749738640,
"tripId": "284739461",
"routeId": "69",
"startTime": "10:09:00",
"position": {
"lat": 45.55614,
"lon": -73.66756
},
"bearing": 24,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 29,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739461",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "69",
"routeLongName": "Gouin",
"shapeLink": "/storage/shapes/stm/690225.json",
"shapeId": "690225",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 507,
"ref": "33804",
"isActive": true,
"label": "33804",
"timestamp": 1749738644,
"tripId": "284779191",
"routeId": "470",
"startTime": "09:52:00",
"position": {
"lat": 45.49029,
"lon": -73.73875
},
"bearing": 95,
"speed": 81,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284779191",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "470",
"routeLongName": "Express Pierrefonds",
"shapeLink": "/storage/shapes/stm/4700247.json",
"shapeId": "4700247",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 511,
"ref": "33817",
"isActive": true,
"label": "33817",
"timestamp": 1749738639,
"tripId": "284778954",
"routeId": "165",
"startTime": "10:11:00",
"position": {
"lat": 45.49504,
"lon": -73.61941
},
"bearing": 119,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 17,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284778954",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "165",
"routeLongName": "Côte-des-Neiges",
"shapeLink": "/storage/shapes/stm/1650117.json",
"shapeId": "1650117",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 512,
"ref": "33825",
"isActive": true,
"label": "33825",
"timestamp": 1749738642,
"tripId": "284777002",
"routeId": "80",
"startTime": "10:28:00",
"position": {
"lat": 45.50859,
"lon": -73.57176
},
"bearing": 303,
"speed": 36,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284777002",
"headsign": "Nord",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "80",
"routeLongName": "Avenue du Parc",
"shapeLink": "/storage/shapes/stm/800106.json",
"shapeId": "800106",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 520,
"ref": "33838",
"isActive": true,
"label": "33838",
"timestamp": 1749738187,
"tripId": "284780026",
"routeId": "470",
"startTime": "09:36:00",
"position": {
"lat": 45.51342,
"lon": -73.68372
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284780026",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "470",
"routeLongName": "Express Pierrefonds",
"shapeLink": "/storage/shapes/stm/4700247.json",
"shapeId": "4700247",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 522,
"ref": "36003",
"isActive": true,
"label": "36003",
"timestamp": 1749738636,
"tripId": "285029014",
"routeId": "449",
"startTime": "10:25:00",
"position": {
"lat": 45.66846,
"lon": -73.54871
},
"bearing": 233,
"speed": 30,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 9,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285029014",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "449",
"routeLongName": "Express Rivière-des-Prairies",
"shapeLink": "/storage/shapes/stm/4490189.json",
"shapeId": "4490189",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 524,
"ref": "36008",
"isActive": true,
"label": "36008",
"timestamp": 1749738639,
"tripId": "285030712",
"routeId": "192",
"startTime": "10:16:00",
"position": {
"lat": 45.56779,
"lon": -73.60599
},
"bearing": 37,
"speed": 30,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 16,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285030712",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "192",
"routeLongName": "Robert",
"shapeLink": "/storage/shapes/stm/1920150.json",
"shapeId": "1920150",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 530,
"ref": "36024",
"isActive": true,
"label": "36024",
"timestamp": 1749738643,
"tripId": "285029454",
"routeId": "86",
"startTime": "10:44:00",
"position": {
"lat": 45.6592,
"lon": -73.57127
},
"bearing": 324,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285029454",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "86",
"routeLongName": "Pointe-aux-Trembles",
"shapeLink": "/storage/shapes/stm/860188.json",
"shapeId": "860188",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 541,
"ref": "37011",
"isActive": true,
"label": "37011",
"timestamp": 1749738641,
"tripId": "284777698",
"routeId": "105",
"startTime": "10:12:00",
"position": {
"lat": 45.46262,
"lon": -73.63105
},
"bearing": 53,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 18,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284777698",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "105",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/1050147.json",
"shapeId": "1050147",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 542,
"ref": "37014",
"isActive": true,
"label": "37014",
"timestamp": 1749738645,
"tripId": "284776755",
"routeId": "16",
"startTime": "10:12:00",
"position": {
"lat": 45.50677,
"lon": -73.66418
},
"bearing": 214,
"speed": 51,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 23,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284776755",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "16",
"routeLongName": "Graham",
"shapeLink": "/storage/shapes/stm/160088.json",
"shapeId": "160088",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 546,
"ref": "37028",
"isActive": true,
"label": "37028",
"timestamp": 1749738639,
"tripId": "284739783",
"routeId": "55",
"startTime": "10:04:00",
"position": {
"lat": 45.52826,
"lon": -73.60424
},
"bearing": 303,
"speed": 38,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 23,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284739783",
"headsign": "Nord",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "55",
"routeLongName": "Boulevard Saint-Laurent",
"shapeLink": "/storage/shapes/stm/550147.json",
"shapeId": "550147",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 548,
"ref": "37035",
"isActive": true,
"label": "37035",
"timestamp": 1749738644,
"tripId": "284778468",
"routeId": "160",
"startTime": "10:07:00",
"position": {
"lat": 45.51027,
"lon": -73.62862
},
"bearing": 213,
"speed": 25,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 23,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284778468",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "160",
"routeLongName": "Barclay",
"shapeLink": "/storage/shapes/stm/1600126.json",
"shapeId": "1600126",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 553,
"ref": "37043",
"isActive": true,
"label": "37043",
"timestamp": 1749738477,
"tripId": "284777745",
"routeId": "68",
"startTime": "09:20:00",
"position": {
"lat": 45.43764,
"lon": -73.90163
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 79,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284777745",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "68",
"routeLongName": "Pierrefonds",
"shapeLink": "/storage/shapes/stm/680415.json",
"shapeId": "680415",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 557,
"ref": "37056",
"isActive": true,
"label": "37056",
"timestamp": 1749738636,
"tripId": "284780634",
"routeId": "747",
"startTime": "09:50:00",
"position": {
"lat": 45.51559,
"lon": -73.56168
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 14,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284780634",
"headsign": "Est trajet 1 gare d’autocars de Montréal.",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "747",
"routeLongName": "YUL Aéroport / Centre-Ville",
"shapeLink": "/storage/shapes/stm/7471231.json",
"shapeId": "7471231",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 561,
"ref": "37069",
"isActive": true,
"label": "37069",
"timestamp": 1749738633,
"tripId": "284780369",
"routeId": "485",
"startTime": "10:17:00",
"position": {
"lat": 45.45893,
"lon": -73.85016
},
"bearing": 325,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 12,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284780369",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "485",
"routeLongName": "Express Antoine-Faucon",
"shapeLink": "/storage/shapes/stm/4850088.json",
"shapeId": "4850088",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 568,
"ref": "37081",
"isActive": true,
"label": "37081",
"timestamp": 1749738632,
"tripId": "284778507",
"routeId": "160",
"startTime": "10:02:00",
"position": {
"lat": 45.52356,
"lon": -73.60564
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 33,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284778507",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "160",
"routeLongName": "Barclay",
"shapeLink": "/storage/shapes/stm/1600123.json",
"shapeId": "1600123",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 569,
"ref": "37082",
"isActive": true,
"label": "37082",
"timestamp": 1749738648,
"tripId": "284777237",
"routeId": "100",
"startTime": "09:57:00",
"position": {
"lat": 45.47514,
"lon": -73.70069
},
"bearing": 313,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 34,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284777237",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "100",
"routeLongName": "Crémazie",
"shapeLink": "/storage/shapes/stm/1000245.json",
"shapeId": "1000245",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 570,
"ref": "37090",
"isActive": true,
"label": "37090",
"timestamp": 1749738644,
"tripId": "284778418",
"routeId": "128",
"startTime": "09:49:00",
"position": {
"lat": 45.5063,
"lon": -73.70144
},
"bearing": 218,
"speed": 36,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 40,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284778418",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "128",
"routeLongName": "Saint-Laurent",
"shapeLink": "/storage/shapes/stm/1280152.json",
"shapeId": "1280152",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 572,
"ref": "37095",
"isActive": true,
"label": "37095",
"timestamp": 1749738067,
"tripId": "284779599",
"routeId": "171",
"startTime": "09:31:00",
"position": {
"lat": 45.52542,
"lon": -73.71011
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 45,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284779599",
"headsign": "Ouest destination Gare Bois-Franc",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "171",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/1710234.json",
"shapeId": "1710234",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 576,
"ref": "38006",
"isActive": true,
"label": "38006",
"timestamp": 1749738639,
"tripId": "285284097",
"routeId": "131",
"startTime": "10:05:00",
"position": {
"lat": 45.58118,
"lon": -73.58588
},
"bearing": 122,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 15,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285284097",
"headsign": "Nord destination Antonio-Dagenais / Lespinay",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "131",
"routeLongName": "De l'Assomption",
"shapeLink": "/storage/shapes/stm/1310099.json",
"shapeId": "1310099",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 582,
"ref": "38023",
"isActive": true,
"label": "38023",
"timestamp": 1749738638,
"tripId": "285284046",
"routeId": "55",
"startTime": "08:36:00",
"position": {
"lat": 45.5319,
"lon": -73.5488
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 46,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285284046",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "55",
"routeLongName": "Boulevard Saint-Laurent",
"shapeLink": "/storage/shapes/stm/550145.json",
"shapeId": "550145",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 584,
"ref": "38027",
"isActive": true,
"label": "38027",
"timestamp": 1749738645,
"tripId": "285283713",
"routeId": "85",
"startTime": "10:10:00",
"position": {
"lat": 45.59849,
"lon": -73.54174
},
"bearing": 120,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 23,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285283713",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "85",
"routeLongName": "Hochelaga",
"shapeLink": "/storage/shapes/stm/850206.json",
"shapeId": "850206",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 587,
"ref": "38038",
"isActive": true,
"label": "38038",
"timestamp": 1749738632,
"tripId": "285008138",
"routeId": "196",
"startTime": "09:46:00",
"position": {
"lat": 45.44787,
"lon": -73.69335
},
"bearing": 0,
"speed": 12,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 50,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008138",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "196",
"routeLongName": "Parc-Industriel-Lachine",
"shapeLink": "/storage/shapes/stm/1960210.json",
"shapeId": "1960210",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 590,
"ref": "38046",
"isActive": true,
"label": "38046",
"timestamp": 1749738575,
"tripId": "285007073",
"routeId": "70",
"startTime": "10:02:00",
"position": {
"lat": 45.51327,
"lon": -73.6839
},
"bearing": 43,
"speed": 12,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 29,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285007073",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "70",
"routeLongName": "Bois-Franc",
"shapeLink": "/storage/shapes/stm/700192.json",
"shapeId": "700192",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 591,
"ref": "38047",
"isActive": true,
"label": "38047",
"timestamp": 1749738644,
"tripId": "285008930",
"routeId": "207",
"startTime": "10:04:00",
"position": {
"lat": 45.49183,
"lon": -73.86952
},
"bearing": 227,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 41,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008930",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "207",
"routeLongName": "Jacques-Bizard",
"shapeLink": "/storage/shapes/stm/2070090.json",
"shapeId": "2070090",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 593,
"ref": "38052",
"isActive": true,
"label": "38052",
"timestamp": 1749738648,
"tripId": "285008552",
"routeId": "201",
"startTime": "10:12:00",
"position": {
"lat": 45.43072,
"lon": -73.8252
},
"bearing": 244,
"speed": 12,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 18,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008552",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "201",
"routeLongName": "Saint-Charles / Saint-Jean",
"shapeLink": "/storage/shapes/stm/2010212.json",
"shapeId": "2010212",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 595,
"ref": "38055",
"isActive": true,
"label": "38055",
"timestamp": 1749738637,
"tripId": "285008466",
"routeId": "201",
"startTime": "09:36:00",
"position": {
"lat": 45.48701,
"lon": -73.84885
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 60,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008466",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "201",
"routeLongName": "Saint-Charles / Saint-Jean",
"shapeLink": "/storage/shapes/stm/2010212.json",
"shapeId": "2010212",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 602,
"ref": "38072",
"isActive": true,
"label": "38072",
"timestamp": 1749738646,
"tripId": "285009652",
"routeId": "64",
"startTime": "10:36:00",
"position": {
"lat": 45.53122,
"lon": -73.71857
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285009652",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "64",
"routeLongName": "Grenet",
"shapeLink": "/storage/shapes/stm/640165.json",
"shapeId": "640165",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 604,
"ref": "38076",
"isActive": true,
"label": "38076",
"timestamp": 1749738645,
"tripId": "285008260",
"routeId": "196",
"startTime": "10:12:00",
"position": {
"lat": 45.46941,
"lon": -73.69688
},
"bearing": 222,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 21,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008260",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "196",
"routeLongName": "Parc-Industriel-Lachine",
"shapeLink": "/storage/shapes/stm/1960210.json",
"shapeId": "1960210",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 606,
"ref": "38085",
"isActive": true,
"label": "38085",
"timestamp": 1749738365,
"tripId": "285009262",
"routeId": "207",
"startTime": "10:06:00",
"position": {
"lat": 45.46613,
"lon": -73.83169
},
"bearing": 149,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 29,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285009262",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "207",
"routeLongName": "Jacques-Bizard",
"shapeLink": "/storage/shapes/stm/2070089.json",
"shapeId": "2070089",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 609,
"ref": "38089",
"isActive": true,
"label": "38089",
"timestamp": 1749738638,
"tripId": "285282309",
"routeId": "22",
"startTime": "10:27:00",
"position": {
"lat": 45.60275,
"lon": -73.51265
},
"bearing": 179,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 7,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285282309",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "22",
"routeLongName": "Notre-Dame",
"shapeLink": "/storage/shapes/stm/220074.json",
"shapeId": "220074",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 613,
"ref": "38094",
"isActive": true,
"label": "38094",
"timestamp": 1749738375,
"tripId": "285282461",
"routeId": "777",
"startTime": "10:07:00",
"position": {
"lat": 45.51162,
"lon": -73.53103
},
"bearing": 305,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 11,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285282461",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "777",
"routeLongName": "Jean-Drapeau / Casino / Bonaventure",
"shapeLink": "/storage/shapes/stm/7770040.json",
"shapeId": "7770040",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 616,
"ref": "38099",
"isActive": true,
"label": "38099",
"timestamp": 1749738051,
"tripId": "285282535",
"routeId": "176",
"startTime": "10:09:00",
"position": {
"lat": 45.44886,
"lon": -73.55254
},
"bearing": 266,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 14,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285282535",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "176",
"routeLongName": "Berlioz",
"shapeLink": "/storage/shapes/stm/1760010.json",
"shapeId": "1760010",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 617,
"ref": "38100",
"isActive": true,
"label": "38100",
"timestamp": 1749738634,
"tripId": "285283437",
"routeId": "24",
"startTime": "10:22:00",
"position": {
"lat": 45.47762,
"lon": -73.60503
},
"bearing": 39,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 8,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 3,
"label": "Congestion"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285283437",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "24",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/240185.json",
"shapeId": "240185",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 622,
"ref": "39011",
"isActive": true,
"label": "39011",
"timestamp": 1749738648,
"tripId": "284780563",
"routeId": "747",
"startTime": "09:33:00",
"position": {
"lat": 45.51492,
"lon": -73.56026
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 12,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284780563",
"headsign": "Est trajet 1 gare d’autocars de Montréal.",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "747",
"routeLongName": "YUL Aéroport / Centre-Ville",
"shapeLink": "/storage/shapes/stm/7471231.json",
"shapeId": "7471231",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 624,
"ref": "39015",
"isActive": true,
"label": "39015",
"timestamp": 1749738633,
"tripId": "284780469",
"routeId": "747",
"startTime": "10:06:00",
"position": {
"lat": 45.48687,
"lon": -73.57448
},
"bearing": 51,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284780469",
"headsign": "Est trajet 1 gare d’autocars de Montréal.",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "747",
"routeLongName": "YUL Aéroport / Centre-Ville",
"shapeLink": "/storage/shapes/stm/7471231.json",
"shapeId": "7471231",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 626,
"ref": "39022",
"isActive": true,
"label": "39022",
"timestamp": 1749738646,
"tripId": "285283732",
"routeId": "150",
"startTime": "10:01:00",
"position": {
"lat": 45.52534,
"lon": -73.55148
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285283732",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "150",
"routeLongName": "René-Lévesque",
"shapeLink": "/storage/shapes/stm/1500060.json",
"shapeId": "1500060",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 635,
"ref": "39043",
"isActive": true,
"label": "39043",
"timestamp": 1749738643,
"tripId": "285029982",
"routeId": "189",
"startTime": "10:09:00",
"position": {
"lat": 45.63048,
"lon": -73.49693
},
"bearing": 217,
"speed": 5,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 39,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285029982",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "189",
"routeLongName": "Notre-Dame",
"shapeLink": "/storage/shapes/stm/1890204.json",
"shapeId": "1890204",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 636,
"ref": "39045",
"isActive": true,
"label": "39045",
"timestamp": 1749738647,
"tripId": "285030146",
"routeId": "49",
"startTime": "10:28:00",
"position": {
"lat": 45.66116,
"lon": -73.55947
},
"bearing": 233,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 5,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285030146",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "49",
"routeLongName": "Maurice-Duplessis",
"shapeLink": "/storage/shapes/stm/490345.json",
"shapeId": "490345",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 639,
"ref": "39049",
"isActive": true,
"label": "39049",
"timestamp": 1749738643,
"tripId": "285029544",
"routeId": "141",
"startTime": "10:35:00",
"position": {
"lat": 45.5965,
"lon": -73.53465
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285029544",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": "/storage/shapes/stm/1410586.json",
"shapeId": "1410586",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 648,
"ref": "39067",
"isActive": true,
"label": "39067",
"timestamp": 1749738632,
"tripId": "285029829",
"routeId": "32",
"startTime": "09:54:00",
"position": {
"lat": 45.5779,
"lon": -73.54982
},
"bearing": 107,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 37,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285029829",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "32",
"routeLongName": "Lacordaire",
"shapeLink": "/storage/shapes/stm/320170.json",
"shapeId": "320170",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 667,
"ref": "39115",
"isActive": true,
"label": "39115",
"timestamp": 1749738640,
"tripId": "285028164",
"routeId": "43",
"startTime": "10:37:00",
"position": {
"lat": 45.59041,
"lon": -73.64662
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285028164",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "43",
"routeLongName": "Monselet",
"shapeLink": "/storage/shapes/stm/430204.json",
"shapeId": "430204",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 671,
"ref": "39123",
"isActive": true,
"label": "39123",
"timestamp": 1749738630,
"tripId": "285029421",
"routeId": "141",
"startTime": "10:01:00",
"position": {
"lat": 45.58051,
"lon": -73.57413
},
"bearing": 207,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 34,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285029421",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": "/storage/shapes/stm/1410586.json",
"shapeId": "1410586",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 829,
"ref": "29838",
"isActive": true,
"label": "29838",
"timestamp": 1749738632,
"tripId": "284741553",
"routeId": "439",
"startTime": "09:39:00",
"position": {
"lat": 45.56549,
"lon": -73.58874
},
"bearing": 300,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 14,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 3,
"label": "Congestion"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284741553",
"headsign": "Nord destination Cégep Marie-Victorin",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390256.json",
"shapeId": "4390256",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:13",
"meta": {}
},
{
"id": 836,
"ref": "31065",
"isActive": true,
"label": "31065",
"timestamp": 1749738643,
"tripId": "285029258",
"routeId": "183",
"startTime": "10:20:00",
"position": {
"lat": 45.66577,
"lon": -73.54662
},
"bearing": 334,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 12,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285029258",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "183",
"routeLongName": "Gouin Est",
"shapeLink": "/storage/shapes/stm/1830089.json",
"shapeId": "1830089",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:18",
"meta": {}
},
{
"id": 837,
"ref": "31067",
"isActive": true,
"label": "31067",
"timestamp": 1749738648,
"tripId": "284738245",
"routeId": "193",
"startTime": "10:00:00",
"position": {
"lat": 45.55399,
"lon": -73.61833
},
"bearing": 212,
"speed": 12,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 33,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284738245",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "193",
"routeLongName": "Jarry",
"shapeLink": "/storage/shapes/stm/1930135.json",
"shapeId": "1930135",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:18",
"meta": {}
},
{
"id": 848,
"ref": "36016",
"isActive": true,
"label": "36016",
"timestamp": 1749738634,
"tripId": "285029722",
"routeId": "449",
"startTime": "10:04:00",
"position": {
"lat": 45.61774,
"lon": -73.56471
},
"bearing": 122,
"speed": 44,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 38,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285029722",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "449",
"routeLongName": "Express Rivière-des-Prairies",
"shapeLink": "/storage/shapes/stm/4490189.json",
"shapeId": "4490189",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:24",
"meta": {}
},
{
"id": 849,
"ref": "36035",
"isActive": true,
"label": "36035",
"timestamp": 1749738644,
"tripId": "285030852",
"routeId": "186",
"startTime": "10:02:00",
"position": {
"lat": 45.68998,
"lon": -73.49776
},
"bearing": 17,
"speed": 24,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 42,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285030852",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "186",
"routeLongName": "Sherbrooke-Est",
"shapeLink": "/storage/shapes/stm/1860250.json",
"shapeId": "1860250",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:25",
"meta": {}
},
{
"id": 852,
"ref": "37018",
"isActive": true,
"label": "37018",
"timestamp": 1749738647,
"tripId": "284778764",
"routeId": "162",
"startTime": "09:55:00",
"position": {
"lat": 45.47672,
"lon": -73.66083
},
"bearing": 28,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 36,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284778764",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "162",
"routeLongName": "Westminster",
"shapeLink": "/storage/shapes/stm/1620099.json",
"shapeId": "1620099",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:25",
"meta": {}
},
{
"id": 857,
"ref": "38009",
"isActive": true,
"label": "38009",
"timestamp": 1749738648,
"tripId": "285283464",
"routeId": "74",
"startTime": "10:20:00",
"position": {
"lat": 45.48707,
"lon": -73.55535
},
"bearing": 97,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 11,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285283464",
"headsign": "Sud via Wellington / Bridge",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "74",
"routeLongName": "Bridge",
"shapeLink": "/storage/shapes/stm/740073.json",
"shapeId": "740073",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:25",
"meta": {}
},
{
"id": 861,
"ref": "39024",
"isActive": true,
"label": "39024",
"timestamp": 1749738647,
"tripId": "285284058",
"routeId": "10",
"startTime": "10:17:00",
"position": {
"lat": 45.53898,
"lon": -73.5806
},
"bearing": 298,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 14,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285284058",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "10",
"routeLongName": "De Lorimier",
"shapeLink": "/storage/shapes/stm/100073.json",
"shapeId": "100073",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:28",
"meta": {}
},
{
"id": 862,
"ref": "39025",
"isActive": true,
"label": "39025",
"timestamp": 1749738642,
"tripId": "285284125",
"routeId": "24",
"startTime": "09:46:00",
"position": {
"lat": 45.48098,
"lon": -73.60117
},
"bearing": 215,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 41,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285284125",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "24",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/240184.json",
"shapeId": "240184",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:28",
"meta": {}
},
{
"id": 1048,
"ref": "36013",
"isActive": true,
"label": "36013",
"timestamp": 1749738640,
"tripId": "285028320",
"routeId": "141",
"startTime": "10:19:00",
"position": {
"lat": 45.60817,
"lon": -73.55808
},
"bearing": 196,
"speed": 41,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 18,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285028320",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": "/storage/shapes/stm/1410586.json",
"shapeId": "1410586",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 01:19:10",
"meta": {}
},
{
"id": 1083,
"ref": "29067",
"isActive": true,
"label": "29067",
"timestamp": 1749738642,
"tripId": "286573476",
"routeId": "198",
"startTime": "09:59:00",
"position": {
"lat": 45.4409,
"lon": -73.65165
},
"bearing": 274,
"speed": 26,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 23,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286573476",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "198",
"routeLongName": "Broadway",
"shapeLink": "/storage/shapes/stm/1980009.json",
"shapeId": "1980009",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 02:55:09",
"meta": {}
},
{
"id": 1098,
"ref": "30083",
"isActive": true,
"label": "30083",
"timestamp": 1749738646,
"tripId": "285030798",
"routeId": "28",
"startTime": "10:01:00",
"position": {
"lat": 45.59843,
"lon": -73.51908
},
"bearing": 201,
"speed": 31,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 38,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285030798",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "28",
"routeLongName": "Honoré-Beaugrand",
"shapeLink": "/storage/shapes/stm/280921.json",
"shapeId": "280921",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 02:55:13",
"meta": {}
},
{
"id": 1108,
"ref": "38068",
"isActive": true,
"label": "38068",
"timestamp": 1749738642,
"tripId": "285008855",
"routeId": "170",
"startTime": "10:28:00",
"position": {
"lat": 45.51575,
"lon": -73.68504
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008855",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "170",
"routeLongName": "Keller",
"shapeLink": "/storage/shapes/stm/1700176.json",
"shapeId": "1700176",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 02:55:23",
"meta": {}
},
{
"id": 1109,
"ref": "39114",
"isActive": true,
"label": "39114",
"timestamp": 1749738647,
"tripId": "285029378",
"routeId": "49",
"startTime": "09:37:00",
"position": {
"lat": 45.65894,
"lon": -73.56348
},
"bearing": 54,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 46,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285029378",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "49",
"routeLongName": "Maurice-Duplessis",
"shapeLink": "/storage/shapes/stm/490344.json",
"shapeId": "490344",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 02:55:25",
"meta": {}
},
{
"id": 1110,
"ref": "27534",
"isActive": true,
"label": "27534",
"timestamp": 1749738646,
"tripId": "286570902",
"routeId": "37",
"startTime": "10:17:00",
"position": {
"lat": 45.45704,
"lon": -73.5818
},
"bearing": 93,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 15,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286570902",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "37",
"routeLongName": "Jolicoeur",
"shapeLink": "/storage/shapes/stm/370158.json",
"shapeId": "370158",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 03:00:05",
"meta": {}
},
{
"id": 1114,
"ref": "39039",
"isActive": true,
"label": "39039",
"timestamp": 1749738634,
"tripId": "285283769",
"routeId": "24",
"startTime": "10:42:00",
"position": {
"lat": 45.53922,
"lon": -73.56009
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285283769",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "24",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/240184.json",
"shapeId": "240184",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 03:00:25",
"meta": {}
},
{
"id": 1125,
"ref": "38075",
"isActive": true,
"label": "38075",
"timestamp": 1749738634,
"tripId": "285009459",
"routeId": "209",
"startTime": "09:54:00",
"position": {
"lat": 45.51082,
"lon": -73.81424
},
"bearing": 90,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 38,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285009459",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "209",
"routeLongName": "Des Sources",
"shapeLink": "/storage/shapes/stm/2090097.json",
"shapeId": "2090097",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 03:30:21",
"meta": {}
},
{
"id": 1128,
"ref": "31137",
"isActive": true,
"label": "31137",
"timestamp": 1749738632,
"tripId": "284739097",
"routeId": "41",
"startTime": "10:00:00",
"position": {
"lat": 45.56248,
"lon": -73.6075
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739097",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "41",
"routeLongName": "Quartier Saint-Michel / Ahuntsic",
"shapeLink": "/storage/shapes/stm/410323.json",
"shapeId": "410323",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 03:40:16",
"meta": {}
},
{
"id": 1131,
"ref": "37070",
"isActive": true,
"label": "37070",
"timestamp": 1749738636,
"tripId": "284778433",
"routeId": "128",
"startTime": "10:03:00",
"position": {
"lat": 45.50649,
"lon": -73.70094
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284778433",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "128",
"routeLongName": "Saint-Laurent",
"shapeLink": "/storage/shapes/stm/1280153.json",
"shapeId": "1280153",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 03:45:20",
"meta": {}
},
{
"id": 1134,
"ref": "29100",
"isActive": true,
"label": "29100",
"timestamp": 1749738648,
"tripId": "286571927",
"routeId": "107",
"startTime": "09:58:00",
"position": {
"lat": 45.48486,
"lon": -73.55779
},
"bearing": 8,
"speed": 36,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 41,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286571927",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "107",
"routeLongName": "Verdun",
"shapeLink": "/storage/shapes/stm/1070142.json",
"shapeId": "1070142",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 04:05:06",
"meta": {}
},
{
"id": 1137,
"ref": "30023",
"isActive": true,
"label": "30023",
"timestamp": 1749738634,
"tripId": "286571529",
"routeId": "104",
"startTime": "10:19:00",
"position": {
"lat": 45.4793,
"lon": -73.60311
},
"bearing": 220,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 12,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286571529",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "104",
"routeLongName": "Cavendish",
"shapeLink": "/storage/shapes/stm/1040117.json",
"shapeId": "1040117",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 04:15:06",
"meta": {}
},
{
"id": 1145,
"ref": "37102",
"isActive": true,
"label": "37102",
"timestamp": 1749738630,
"tripId": "284779516",
"routeId": "171",
"startTime": "10:09:00",
"position": {
"lat": 45.52436,
"lon": -73.67175
},
"bearing": 212,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 17,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284779516",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "171",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/1710232.json",
"shapeId": "1710232",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 07:40:04",
"meta": {}
},
{
"id": 1156,
"ref": "31859",
"isActive": true,
"label": "31859",
"timestamp": 1749738638,
"tripId": "284738900",
"routeId": "67",
"startTime": "09:54:00",
"position": {
"lat": 45.54963,
"lon": -73.56859
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 34,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284738900",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "67",
"routeLongName": "Saint-Michel",
"shapeLink": "/storage/shapes/stm/670125.json",
"shapeId": "670125",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 09:35:05",
"meta": {}
},
{
"id": 1165,
"ref": "29079",
"isActive": true,
"label": "29079",
"timestamp": 1749738645,
"tripId": "286571982",
"routeId": "107",
"startTime": "10:24:00",
"position": {
"lat": 45.438,
"lon": -73.59009
},
"bearing": 14,
"speed": 25,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 13,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286571982",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "107",
"routeLongName": "Verdun",
"shapeLink": "/storage/shapes/stm/1070142.json",
"shapeId": "1070142",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 09:50:02",
"meta": {}
},
{
"id": 1188,
"ref": "37013",
"isActive": true,
"label": "37013",
"timestamp": 1749738632,
"tripId": "284778572",
"routeId": "175",
"startTime": "10:40:00",
"position": {
"lat": 45.49833,
"lon": -73.76596
},
"bearing": 141,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284778572",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "175",
"routeLongName": "Griffith / Saint-François",
"shapeLink": "/storage/shapes/stm/1750105.json",
"shapeId": "1750105",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 09:55:06",
"meta": {}
},
{
"id": 1189,
"ref": "37074",
"isActive": true,
"label": "37074",
"timestamp": 1749738631,
"tripId": "284779376",
"routeId": "119",
"startTime": "10:29:00",
"position": {
"lat": 45.49826,
"lon": -73.6221
},
"bearing": 32,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284779376",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "119",
"routeLongName": "Rockland",
"shapeLink": "/storage/shapes/stm/1190075.json",
"shapeId": "1190075",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 09:55:06",
"meta": {}
},
{
"id": 1194,
"ref": "29836",
"isActive": true,
"label": "29836",
"timestamp": 1749738637,
"tripId": "284739717",
"routeId": "121",
"startTime": "10:01:00",
"position": {
"lat": 45.52756,
"lon": -73.66975
},
"bearing": 204,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739717",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "121",
"routeLongName": "Sauvé / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/1210271.json",
"shapeId": "1210271",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:00:04",
"meta": {}
},
{
"id": 1201,
"ref": "31032",
"isActive": true,
"label": "31032",
"timestamp": 1749738638,
"tripId": "285283221",
"routeId": "777",
"startTime": "10:17:00",
"position": {
"lat": 45.48975,
"lon": -73.54697
},
"bearing": 280,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 7,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285283221",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "777",
"routeLongName": "Jean-Drapeau / Casino / Bonaventure",
"shapeLink": "/storage/shapes/stm/7770041.json",
"shapeId": "7770041",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 10:00:05",
"meta": {}
},
{
"id": 1224,
"ref": "37053",
"isActive": true,
"label": "37053",
"timestamp": 1749738632,
"tripId": "284777087",
"routeId": "103",
"startTime": "10:14:00",
"position": {
"lat": 45.47476,
"lon": -73.62357
},
"bearing": 34,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284777087",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "103",
"routeLongName": "Monkland",
"shapeLink": "/storage/shapes/stm/1030154.json",
"shapeId": "1030154",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 10:05:07",
"meta": {}
},
{
"id": 1234,
"ref": "30110",
"isActive": true,
"label": "30110",
"timestamp": 1749738632,
"tripId": "284727374",
"routeId": "197",
"startTime": "10:10:00",
"position": {
"lat": 45.55174,
"lon": -73.58168
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 25,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "284727374",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "197",
"routeLongName": "Rosemont",
"shapeLink": "/storage/shapes/stm/1970141.json",
"shapeId": "1970141",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:10:03",
"meta": {}
},
{
"id": 1251,
"ref": "30060",
"isActive": true,
"label": "30060",
"timestamp": 1749738637,
"tripId": "285283792",
"routeId": "150",
"startTime": "10:22:00",
"position": {
"lat": 45.51655,
"lon": -73.55484
},
"bearing": 214,
"speed": 12,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 7,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285283792",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "150",
"routeLongName": "René-Lévesque",
"shapeLink": "/storage/shapes/stm/1500061.json",
"shapeId": "1500061",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 10:15:06",
"meta": {}
},
{
"id": 1263,
"ref": "37008",
"isActive": true,
"label": "37008",
"timestamp": 1749738629,
"tripId": "284777848",
"routeId": "105",
"startTime": "10:33:00",
"position": {
"lat": 45.45818,
"lon": -73.64452
},
"bearing": 121,
"speed": 30,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 4,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284777848",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "105",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/1050151.json",
"shapeId": "1050151",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 10:15:10",
"meta": {}
},
{
"id": 1274,
"ref": "30864",
"isActive": true,
"label": "30864",
"timestamp": 1749738360,
"tripId": "284738764",
"routeId": "67",
"startTime": "09:44:00",
"position": {
"lat": 45.5844,
"lon": -73.65097
},
"bearing": 315,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 38,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284738764",
"headsign": "Nord",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "67",
"routeLongName": "Saint-Michel",
"shapeLink": "/storage/shapes/stm/670126.json",
"shapeId": "670126",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:20:04",
"meta": {}
},
{
"id": 1276,
"ref": "31033",
"isActive": true,
"label": "31033",
"timestamp": 1749738631,
"tripId": "285030460",
"routeId": "141",
"startTime": "10:43:00",
"position": {
"lat": 45.5965,
"lon": -73.53465
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285030460",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": "/storage/shapes/stm/1410586.json",
"shapeId": "1410586",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:20:04",
"meta": {}
},
{
"id": 1286,
"ref": "36019",
"isActive": true,
"label": "36019",
"timestamp": 1749738633,
"tripId": "285028565",
"routeId": "33",
"startTime": "10:00:00",
"position": {
"lat": 45.60342,
"lon": -73.60044
},
"bearing": 312,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 33,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285028565",
"headsign": "Nord",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": "/storage/shapes/stm/330287.json",
"shapeId": "330287",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:20:07",
"meta": {}
},
{
"id": 1297,
"ref": "29829",
"isActive": true,
"label": "29829",
"timestamp": 1749738645,
"tripId": "284741514",
"routeId": "439",
"startTime": "10:49:00",
"position": {
"lat": 45.54726,
"lon": -73.5338
},
"bearing": 226,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284741514",
"headsign": "Nord destination Cégep Marie-Victorin",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390256.json",
"shapeId": "4390256",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:25:04",
"meta": {}
},
{
"id": 1298,
"ref": "30008",
"isActive": true,
"label": "30008",
"timestamp": 1749738636,
"tripId": "284777460",
"routeId": "166",
"startTime": "10:20:00",
"position": {
"lat": 45.49523,
"lon": -73.60299
},
"bearing": 249,
"speed": 55,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 11,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284777460",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "166",
"routeLongName": "Queen-Mary",
"shapeLink": "/storage/shapes/stm/1660192.json",
"shapeId": "1660192",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 10:25:04",
"meta": {}
},
{
"id": 1299,
"ref": "30815",
"isActive": true,
"label": "30815",
"timestamp": 1749738643,
"tripId": "284739019",
"routeId": "121",
"startTime": "10:17:00",
"position": {
"lat": 45.51411,
"lon": -73.68283
},
"bearing": 38,
"speed": 22,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 15,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739019",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "121",
"routeLongName": "Sauvé / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/1210266.json",
"shapeId": "1210266",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:25:04",
"meta": {}
},
{
"id": 1300,
"ref": "31025",
"isActive": true,
"label": "31025",
"timestamp": 1749738206,
"tripId": "284727122",
"routeId": "197",
"startTime": "09:50:00",
"position": {
"lat": 45.53173,
"lon": -73.59769
},
"bearing": 141,
"speed": 12,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 38,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284727122",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "197",
"routeLongName": "Rosemont",
"shapeLink": "/storage/shapes/stm/1970141.json",
"shapeId": "1970141",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:25:04",
"meta": {}
},
{
"id": 1306,
"ref": "31189",
"isActive": true,
"label": "31189",
"timestamp": 1749738638,
"tripId": "285006595",
"routeId": "215",
"startTime": "10:02:00",
"position": {
"lat": 45.49531,
"lon": -73.75429
},
"bearing": 223,
"speed": 44,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 28,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285006595",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "215",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/2150155.json",
"shapeId": "2150155",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:25:06",
"meta": {}
},
{
"id": 1310,
"ref": "36025",
"isActive": true,
"label": "36025",
"timestamp": 1749738574,
"tripId": "285029671",
"routeId": "192",
"startTime": "09:50:00",
"position": {
"lat": 45.54746,
"lon": -73.63733
},
"bearing": 211,
"speed": 41,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 49,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285029671",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "192",
"routeLongName": "Robert",
"shapeLink": "/storage/shapes/stm/1920151.json",
"shapeId": "1920151",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:25:07",
"meta": {}
},
{
"id": 1317,
"ref": "38083",
"isActive": true,
"label": "38083",
"timestamp": 1749738640,
"tripId": "285006561",
"routeId": "64",
"startTime": "10:24:00",
"position": {
"lat": 45.52471,
"lon": -73.70832
},
"bearing": 132,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 9,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285006561",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "64",
"routeLongName": "Grenet",
"shapeLink": "/storage/shapes/stm/640165.json",
"shapeId": "640165",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:25:09",
"meta": {}
},
{
"id": 1339,
"ref": "31080",
"isActive": true,
"label": "31080",
"timestamp": 1749738328,
"tripId": "285282304",
"routeId": "24",
"startTime": "09:28:00",
"position": {
"lat": 45.47903,
"lon": -73.6193
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 47,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285282304",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "24",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/240184.json",
"shapeId": "240184",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 10:30:05",
"meta": {}
},
{
"id": 1366,
"ref": "29037",
"isActive": true,
"label": "29037",
"timestamp": 1749738645,
"tripId": "284727669",
"routeId": "66",
"startTime": "10:00:00",
"position": {
"lat": 45.49352,
"lon": -73.57521
},
"bearing": 33,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 36,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284727669",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "66",
"routeLongName": "The Boulevard",
"shapeLink": "/storage/shapes/stm/660103.json",
"shapeId": "660103",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:35:06",
"meta": {}
},
{
"id": 1371,
"ref": "30813",
"isActive": true,
"label": "30813",
"timestamp": 1749738648,
"tripId": "284741468",
"routeId": "439",
"startTime": "10:02:00",
"position": {
"lat": 45.57743,
"lon": -73.61629
},
"bearing": 121,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 21,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284741468",
"headsign": "Sud destination Pie-IX / Notre-Dame",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390255.json",
"shapeId": "4390255",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:35:09",
"meta": {}
},
{
"id": 1377,
"ref": "37005",
"isActive": true,
"label": "37005",
"timestamp": 1749738638,
"tripId": "284780385",
"routeId": "485",
"startTime": "10:06:00",
"position": {
"lat": 45.44804,
"lon": -73.73817
},
"bearing": 264,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284780385",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "485",
"routeLongName": "Express Antoine-Faucon",
"shapeLink": "/storage/shapes/stm/4850087.json",
"shapeId": "4850087",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 10:35:12",
"meta": {}
},
{
"id": 1378,
"ref": "38098",
"isActive": true,
"label": "38098",
"timestamp": 1749738638,
"tripId": "285283958",
"routeId": "29",
"startTime": "10:06:00",
"position": {
"lat": 45.54372,
"lon": -73.54875
},
"bearing": 117,
"speed": 36,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 30,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285283958",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "29",
"routeLongName": "Rachel",
"shapeLink": "/storage/shapes/stm/290081.json",
"shapeId": "290081",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 10:35:12",
"meta": {}
},
{
"id": 1384,
"ref": "29109",
"isActive": true,
"label": "29109",
"timestamp": 1749738635,
"tripId": "286572921",
"routeId": "114",
"startTime": "09:47:00",
"position": {
"lat": 45.44256,
"lon": -73.65216
},
"bearing": 298,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 39,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286572921",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "114",
"routeLongName": "Angrignon",
"shapeLink": "/storage/shapes/stm/1140009.json",
"shapeId": "1140009",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 10:40:04",
"meta": {}
},
{
"id": 1402,
"ref": "31836",
"isActive": true,
"label": "31836",
"timestamp": 1749738632,
"tripId": "284739500",
"routeId": "67",
"startTime": "10:04:00",
"position": {
"lat": 45.56514,
"lon": -73.61245
},
"bearing": 295,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 25,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739500",
"headsign": "Nord",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "67",
"routeLongName": "Saint-Michel",
"shapeLink": "/storage/shapes/stm/670126.json",
"shapeId": "670126",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:40:10",
"meta": {}
},
{
"id": 1408,
"ref": "38054",
"isActive": true,
"label": "38054",
"timestamp": 1749738632,
"tripId": "285009820",
"routeId": "217",
"startTime": "09:55:00",
"position": {
"lat": 45.49733,
"lon": -73.7514
},
"bearing": 44,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 30,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285009820",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "217",
"routeLongName": "Anse-à-l'Orme",
"shapeLink": "/storage/shapes/stm/2170107.json",
"shapeId": "2170107",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:40:12",
"meta": {}
},
{
"id": 1410,
"ref": "39087",
"isActive": true,
"label": "39087",
"timestamp": 1749738643,
"tripId": "285030496",
"routeId": "49",
"startTime": "09:56:00",
"position": {
"lat": 45.5993,
"lon": -73.63986
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 46,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285030496",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "49",
"routeLongName": "Maurice-Duplessis",
"shapeLink": "/storage/shapes/stm/490345.json",
"shapeId": "490345",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:40:13",
"meta": {}
},
{
"id": 1438,
"ref": "30881",
"isActive": true,
"label": "30881",
"timestamp": 1749738640,
"tripId": "284737803",
"routeId": "69",
"startTime": "10:02:00",
"position": {
"lat": 45.57885,
"lon": -73.65305
},
"bearing": 207,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 29,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284737803",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "69",
"routeLongName": "Gouin",
"shapeLink": "/storage/shapes/stm/690221.json",
"shapeId": "690221",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:45:10",
"meta": {}
},
{
"id": 1441,
"ref": "31150",
"isActive": true,
"label": "31150",
"timestamp": 1749738648,
"tripId": "284739215",
"routeId": "55",
"startTime": "09:44:00",
"position": {
"lat": 45.5129,
"lon": -73.57414
},
"bearing": 123,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 40,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "284739215",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "55",
"routeLongName": "Boulevard Saint-Laurent",
"shapeLink": "/storage/shapes/stm/550145.json",
"shapeId": "550145",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:45:11",
"meta": {}
},
{
"id": 1487,
"ref": "31850",
"isActive": true,
"label": "31850",
"timestamp": 1749738634,
"tripId": "284741397",
"routeId": "439",
"startTime": "09:59:00",
"position": {
"lat": 45.57914,
"lon": -73.61974
},
"bearing": 302,
"speed": 36,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 18,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284741397",
"headsign": "Nord destination Laval",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390254.json",
"shapeId": "4390254",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:50:13",
"meta": {}
},
{
"id": 1488,
"ref": "37083",
"isActive": true,
"label": "37083",
"timestamp": 1749738646,
"tripId": "284779468",
"routeId": "166",
"startTime": "10:36:00",
"position": {
"lat": 45.48899,
"lon": -73.65079
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284779468",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "166",
"routeLongName": "Queen-Mary",
"shapeLink": "/storage/shapes/stm/1660191.json",
"shapeId": "1660191",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 10:50:14",
"meta": {}
},
{
"id": 1497,
"ref": "28093",
"isActive": true,
"label": "28093",
"timestamp": 1749738629,
"tripId": "286573944",
"routeId": "425",
"startTime": "09:40:00",
"position": {
"lat": 45.48212,
"lon": -73.58485
},
"bearing": 124,
"speed": 5,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 33,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286573944",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "425",
"routeLongName": "Express Anse-à-l'Orme",
"shapeLink": "/storage/shapes/stm/4250077.json",
"shapeId": "4250077",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 10:55:03",
"meta": {}
},
{
"id": 1513,
"ref": "31186",
"isActive": true,
"label": "31186",
"timestamp": 1749738648,
"tripId": "285282254",
"routeId": "168",
"startTime": "10:03:00",
"position": {
"lat": 45.44958,
"lon": -73.55052
},
"bearing": 213,
"speed": 31,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 26,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285282254",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "168",
"routeLongName": "Cité-du-Havre",
"shapeLink": "/storage/shapes/stm/1680169.json",
"shapeId": "1680169",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 10:55:12",
"meta": {}
},
{
"id": 1541,
"ref": "30064",
"isActive": true,
"label": "30064",
"timestamp": 1749738641,
"tripId": "285030544",
"routeId": "43",
"startTime": "10:11:00",
"position": {
"lat": 45.6209,
"lon": -73.60771
},
"bearing": 233,
"speed": 43,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 23,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285030544",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "43",
"routeLongName": "Monselet",
"shapeLink": "/storage/shapes/stm/430203.json",
"shapeId": "430203",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:00:08",
"meta": {}
},
{
"id": 1546,
"ref": "30863",
"isActive": true,
"label": "30863",
"timestamp": 1749738640,
"tripId": "284739881",
"routeId": "121",
"startTime": "09:49:00",
"position": {
"lat": 45.51079,
"lon": -73.68723
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 41,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739881",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "121",
"routeLongName": "Sauvé / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/1210271.json",
"shapeId": "1210271",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:00:11",
"meta": {}
},
{
"id": 1555,
"ref": "38033",
"isActive": true,
"label": "38033",
"timestamp": 1749738639,
"tripId": "285282263",
"routeId": "10",
"startTime": "10:28:00",
"position": {
"lat": 45.55323,
"lon": -73.62408
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285282263",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "10",
"routeLongName": "De Lorimier",
"shapeLink": "/storage/shapes/stm/100075.json",
"shapeId": "100075",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 11:00:18",
"meta": {}
},
{
"id": 1578,
"ref": "29095",
"isActive": true,
"label": "29095",
"timestamp": 1749738646,
"tripId": "286574629",
"routeId": "496",
"startTime": "10:01:00",
"position": {
"lat": 45.48168,
"lon": -73.58393
},
"bearing": 124,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 22,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286574629",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "496",
"routeLongName": "Express Victoria",
"shapeLink": "/storage/shapes/stm/4960097.json",
"shapeId": "4960097",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 11:05:09",
"meta": {}
},
{
"id": 1596,
"ref": "31195",
"isActive": true,
"label": "31195",
"timestamp": 1749738637,
"tripId": "285010364",
"routeId": "468",
"startTime": "09:46:00",
"position": {
"lat": 45.46267,
"lon": -73.86995
},
"bearing": 123,
"speed": 36,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 46,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285010364",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "468",
"routeLongName": "Express Pierrefonds / Gouin",
"shapeLink": "/storage/shapes/stm/4680086.json",
"shapeId": "4680086",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:05:18",
"meta": {}
},
{
"id": 1620,
"ref": "37087",
"isActive": true,
"label": "37087",
"timestamp": 1749738636,
"tripId": "284779710",
"routeId": "171",
"startTime": "10:11:00",
"position": {
"lat": 45.51818,
"lon": -73.67744
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 17,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284779710",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "171",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/1710235.json",
"shapeId": "1710235",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 11:10:19",
"meta": {}
},
{
"id": 1621,
"ref": "37097",
"isActive": true,
"label": "37097",
"timestamp": 1749738635,
"tripId": "284777548",
"routeId": "162",
"startTime": "10:26:00",
"position": {
"lat": 45.47523,
"lon": -73.62313
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 4,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284777548",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "162",
"routeLongName": "Westminster",
"shapeLink": "/storage/shapes/stm/1620099.json",
"shapeId": "1620099",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 11:10:19",
"meta": {}
},
{
"id": 1623,
"ref": "38063",
"isActive": true,
"label": "38063",
"timestamp": 1749738629,
"tripId": "285008242",
"routeId": "196",
"startTime": "09:49:00",
"position": {
"lat": 45.50623,
"lon": -73.6927
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 56,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008242",
"headsign": "Nord",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "196",
"routeLongName": "Parc-Industriel-Lachine",
"shapeLink": "/storage/shapes/stm/1960208.json",
"shapeId": "1960208",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:10:20",
"meta": {}
},
{
"id": 1625,
"ref": "39006",
"isActive": true,
"label": "39006",
"timestamp": 1749738631,
"tripId": "284780684",
"routeId": "747",
"startTime": "10:00:00",
"position": {
"lat": 45.48465,
"lon": -73.57997
},
"bearing": 335,
"speed": 12,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 12,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284780684",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "747",
"routeLongName": "YUL Aéroport / Centre-Ville",
"shapeLink": "/storage/shapes/stm/7471239.json",
"shapeId": "7471239",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 11:10:20",
"meta": {}
},
{
"id": 1645,
"ref": "30220",
"isActive": true,
"label": "30220",
"timestamp": 1749738645,
"tripId": "285283878",
"routeId": "150",
"startTime": "10:03:00",
"position": {
"lat": 45.48974,
"lon": -73.57956
},
"bearing": 233,
"speed": 54,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 25,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285283878",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "150",
"routeLongName": "René-Lévesque",
"shapeLink": "/storage/shapes/stm/1500061.json",
"shapeId": "1500061",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 11:15:15",
"meta": {}
},
{
"id": 1673,
"ref": "28076",
"isActive": true,
"label": "28076",
"timestamp": 1749738090,
"tripId": "285009586",
"routeId": "215",
"startTime": "09:35:00",
"position": {
"lat": 45.46726,
"lon": -73.83
},
"bearing": 234,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 51,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285009586",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "215",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/2150155.json",
"shapeId": "2150155",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:20:09",
"meta": {}
},
{
"id": 1688,
"ref": "31193",
"isActive": true,
"label": "31193",
"timestamp": 1749738633,
"tripId": "285030824",
"routeId": "28",
"startTime": "10:10:00",
"position": {
"lat": 45.60495,
"lon": -73.54344
},
"bearing": 186,
"speed": 32,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 21,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285030824",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "28",
"routeLongName": "Honoré-Beaugrand",
"shapeLink": "/storage/shapes/stm/280922.json",
"shapeId": "280922",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:20:22",
"meta": {}
},
{
"id": 1695,
"ref": "37017",
"isActive": true,
"label": "37017",
"timestamp": 1749738636,
"tripId": "284777653",
"routeId": "105",
"startTime": "10:24:00",
"position": {
"lat": 45.46358,
"lon": -73.62921
},
"bearing": 45,
"speed": 20,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 10,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284777653",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "105",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/1050151.json",
"shapeId": "1050151",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 11:20:24",
"meta": {}
},
{
"id": 1697,
"ref": "38031",
"isActive": true,
"label": "38031",
"timestamp": 1749738645,
"tripId": "285283550",
"routeId": "74",
"startTime": "10:14:00",
"position": {
"lat": 45.49902,
"lon": -73.56234
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 12,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285283550",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "74",
"routeLongName": "Bridge",
"shapeLink": "/storage/shapes/stm/740072.json",
"shapeId": "740072",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 11:20:24",
"meta": {}
},
{
"id": 1700,
"ref": "39091",
"isActive": true,
"label": "39091",
"timestamp": 1749738640,
"tripId": "285028799",
"routeId": "49",
"startTime": "09:41:00",
"position": {
"lat": 45.56655,
"lon": -73.66048
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 51,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285028799",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "49",
"routeLongName": "Maurice-Duplessis",
"shapeLink": "/storage/shapes/stm/490345.json",
"shapeId": "490345",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:20:26",
"meta": {}
},
{
"id": 1715,
"ref": "29048",
"isActive": true,
"label": "29048",
"timestamp": 1749738648,
"tripId": "286573113",
"routeId": "138",
"startTime": "10:17:00",
"position": {
"lat": 45.47268,
"lon": -73.65015
},
"bearing": 122,
"speed": 38,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 13,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286573113",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "138",
"routeLongName": "Notre-Dame-de-Grâce",
"shapeLink": "/storage/shapes/stm/1380086.json",
"shapeId": "1380086",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 11:25:10",
"meta": {}
},
{
"id": 1717,
"ref": "29073",
"isActive": true,
"label": "29073",
"timestamp": 1749738640,
"tripId": "286570120",
"routeId": "36",
"startTime": "09:54:00",
"position": {
"lat": 45.44708,
"lon": -73.60471
},
"bearing": 98,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 34,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286570120",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "36",
"routeLongName": "Monk",
"shapeLink": "/storage/shapes/stm/360157.json",
"shapeId": "360157",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 11:25:10",
"meta": {}
},
{
"id": 1721,
"ref": "31068",
"isActive": true,
"label": "31068",
"timestamp": 1749738637,
"tripId": "285030933",
"routeId": "81",
"startTime": "10:30:00",
"position": {
"lat": 45.65072,
"lon": -73.58049
},
"bearing": 236,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285030933",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "81",
"routeLongName": "Saint-Jean-Baptiste",
"shapeLink": "/storage/shapes/stm/810020.json",
"shapeId": "810020",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:25:18",
"meta": {}
},
{
"id": 1726,
"ref": "31820",
"isActive": true,
"label": "31820",
"timestamp": 1749738643,
"tripId": "284779114",
"routeId": "165",
"startTime": "10:41:00",
"position": {
"lat": 45.49564,
"lon": -73.57912
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284779114",
"headsign": "Nord",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "165",
"routeLongName": "Côte-des-Neiges",
"shapeLink": "/storage/shapes/stm/1650126.json",
"shapeId": "1650126",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 11:25:23",
"meta": {}
},
{
"id": 1745,
"ref": "29021",
"isActive": true,
"label": "29021",
"timestamp": 1749738648,
"tripId": "284727873",
"routeId": "129",
"startTime": "10:15:00",
"position": {
"lat": 45.51159,
"lon": -73.57789
},
"bearing": 303,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 11,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284727873",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "129",
"routeLongName": "Côte-Sainte-Catherine",
"shapeLink": "/storage/shapes/stm/1290220.json",
"shapeId": "1290220",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:30:11",
"meta": {}
},
{
"id": 1762,
"ref": "37075",
"isActive": true,
"label": "37075",
"timestamp": 1749738636,
"tripId": "284778204",
"routeId": "119",
"startTime": "10:07:00",
"position": {
"lat": 45.51493,
"lon": -73.61337
},
"bearing": 122,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 28,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284778204",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "119",
"routeLongName": "Rockland",
"shapeLink": "/storage/shapes/stm/1190074.json",
"shapeId": "1190074",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 11:30:26",
"meta": {}
},
{
"id": 1763,
"ref": "38079",
"isActive": true,
"label": "38079",
"timestamp": 1749738643,
"tripId": "285008568",
"routeId": "201",
"startTime": "10:14:00",
"position": {
"lat": 45.47746,
"lon": -73.87389
},
"bearing": 205,
"speed": 36,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 21,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008568",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "201",
"routeLongName": "Saint-Charles / Saint-Jean",
"shapeLink": "/storage/shapes/stm/2010213.json",
"shapeId": "2010213",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:30:27",
"meta": {}
},
{
"id": 1806,
"ref": "39034",
"isActive": true,
"label": "39034",
"timestamp": 1749738643,
"tripId": "285284814",
"routeId": "50",
"startTime": "10:26:00",
"position": {
"lat": 45.51153,
"lon": -73.552
},
"bearing": 112,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285284814",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "50",
"routeLongName": "Vieux-Montréal / Vieux-Port",
"shapeLink": "/storage/shapes/stm/500003.json",
"shapeId": "500003",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 11:35:28",
"meta": {}
},
{
"id": 1839,
"ref": "31181",
"isActive": true,
"label": "31181",
"timestamp": 1749738644,
"tripId": "285283132",
"routeId": "125",
"startTime": "09:53:00",
"position": {
"lat": 45.55556,
"lon": -73.53783
},
"bearing": 27,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 34,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285283132",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "125",
"routeLongName": "Ontario",
"shapeLink": "/storage/shapes/stm/1250192.json",
"shapeId": "1250192",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 11:40:44",
"meta": {}
},
{
"id": 1844,
"ref": "37088",
"isActive": true,
"label": "37088",
"timestamp": 1749738646,
"tripId": "284779836",
"routeId": "175",
"startTime": "10:04:00",
"position": {
"lat": 45.50404,
"lon": -73.67764
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 40,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284779836",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "175",
"routeLongName": "Griffith / Saint-François",
"shapeLink": "/storage/shapes/stm/1750105.json",
"shapeId": "1750105",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 11:40:50",
"meta": {}
},
{
"id": 1869,
"ref": "31138",
"isActive": true,
"label": "31138",
"timestamp": 1749738625,
"tripId": "284740984",
"routeId": "19",
"startTime": "10:28:00",
"position": {
"lat": 45.54247,
"lon": -73.64136
},
"bearing": 203,
"speed": 6,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 4,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284740984",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "19",
"routeLongName": "Chabanel / Marché Central",
"shapeLink": "/storage/shapes/stm/190036.json",
"shapeId": "190036",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:45:43",
"meta": {}
},
{
"id": 1871,
"ref": "31184",
"isActive": true,
"label": "31184",
"timestamp": 1749738643,
"tripId": "285282870",
"routeId": "94",
"startTime": "10:07:00",
"position": {
"lat": 45.55765,
"lon": -73.61114
},
"bearing": 304,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 27,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285282870",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "94",
"routeLongName": "D'Iberville",
"shapeLink": "/storage/shapes/stm/940090.json",
"shapeId": "940090",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 11:45:45",
"meta": {}
},
{
"id": 1948,
"ref": "38028",
"isActive": true,
"label": "38028",
"timestamp": 1749738491,
"tripId": "285283611",
"routeId": "172",
"startTime": "10:15:00",
"position": {
"lat": 45.46963,
"lon": -73.53523
},
"bearing": 270,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285283611",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "172",
"routeLongName": "Du Golf",
"shapeLink": "/storage/shapes/stm/1720009.json",
"shapeId": "1720009",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 11:55:58",
"meta": {}
},
{
"id": 1949,
"ref": "38034",
"isActive": true,
"label": "38034",
"timestamp": 1749738637,
"tripId": "285284994",
"routeId": "811",
"startTime": "10:40:00",
"position": {
"lat": 45.58954,
"lon": -73.53733
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285284994",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "811",
"routeLongName": "Navette Services santé",
"shapeLink": "/storage/shapes/stm/8110009.json",
"shapeId": "8110009",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 11:55:58",
"meta": {}
},
{
"id": 1951,
"ref": "39076",
"isActive": true,
"label": "39076",
"timestamp": 1749738646,
"tripId": "285030689",
"routeId": "40",
"startTime": "09:37:00",
"position": {
"lat": 45.674,
"lon": -73.50509
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 41,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285030689",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "40",
"routeLongName": "Henri-Bourassa-Est",
"shapeLink": "/storage/shapes/stm/400084.json",
"shapeId": "400084",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:56:02",
"meta": {}
},
{
"id": 1982,
"ref": "38043",
"isActive": true,
"label": "38043",
"timestamp": 1749738646,
"tripId": "285007251",
"routeId": "72",
"startTime": "09:46:00",
"position": {
"lat": 45.51029,
"lon": -73.67638
},
"bearing": 310,
"speed": 12,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 36,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285007251",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": "/storage/shapes/stm/720182.json",
"shapeId": "720182",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 12:01:00",
"meta": {}
},
{
"id": 2027,
"ref": "31055",
"isActive": true,
"label": "31055",
"timestamp": 1749738643,
"tripId": "285283332",
"routeId": "29",
"startTime": "10:11:00",
"position": {
"lat": 45.52311,
"lon": -73.57697
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 20,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285283332",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "29",
"routeLongName": "Rachel",
"shapeLink": "/storage/shapes/stm/290083.json",
"shapeId": "290083",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 12:10:49",
"meta": {}
},
{
"id": 2051,
"ref": "29023",
"isActive": true,
"label": "29023",
"timestamp": 1749738646,
"tripId": "284727855",
"routeId": "18",
"startTime": "09:37:00",
"position": {
"lat": 45.53162,
"lon": -73.60719
},
"bearing": 216,
"speed": 5,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 49,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284727855",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "18",
"routeLongName": "Beaubien",
"shapeLink": "/storage/shapes/stm/180228.json",
"shapeId": "180228",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 12:15:26",
"meta": {}
},
{
"id": 2082,
"ref": "30827",
"isActive": true,
"label": "30827",
"timestamp": 1749738630,
"tripId": "284737791",
"routeId": "121",
"startTime": "10:13:00",
"position": {
"lat": 45.55055,
"lon": -73.65639
},
"bearing": 222,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284737791",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "121",
"routeLongName": "Sauvé / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/1210271.json",
"shapeId": "1210271",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 12:20:49",
"meta": {}
},
{
"id": 2093,
"ref": "31036",
"isActive": true,
"label": "31036",
"timestamp": 1749738633,
"tripId": "284738737",
"routeId": "48",
"startTime": "09:39:00",
"position": {
"lat": 45.56198,
"lon": -73.66449
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 50,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284738737",
"headsign": "Ouest via Gouin / Ozias-Leduc",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": "/storage/shapes/stm/480412.json",
"shapeId": "480412",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 12:25:51",
"meta": {}
},
{
"id": 2131,
"ref": "30175",
"isActive": true,
"label": "30175",
"timestamp": 1749738448,
"tripId": "285006489",
"routeId": "17",
"startTime": "09:45:00",
"position": {
"lat": 45.51295,
"lon": -73.68264
},
"bearing": 223,
"speed": 36,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 38,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285006489",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "17",
"routeLongName": "Décarie",
"shapeLink": "/storage/shapes/stm/170094.json",
"shapeId": "170094",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 12:40:44",
"meta": {}
},
{
"id": 2148,
"ref": "36022",
"isActive": true,
"label": "36022",
"timestamp": 1749738643,
"tripId": "285028219",
"routeId": "49",
"startTime": "10:31:00",
"position": {
"lat": 45.55586,
"lon": -73.66729
},
"bearing": 22,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285028219",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "49",
"routeLongName": "Maurice-Duplessis",
"shapeLink": "/storage/shapes/stm/490344.json",
"shapeId": "490344",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 12:50:40",
"meta": {}
},
{
"id": 2151,
"ref": "38008",
"isActive": true,
"label": "38008",
"timestamp": 1749738634,
"tripId": "285284035",
"routeId": "24",
"startTime": "09:46:00",
"position": {
"lat": 45.52176,
"lon": -73.56676
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285284035",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "24",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/240185.json",
"shapeId": "240185",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 12:50:41",
"meta": {}
},
{
"id": 2157,
"ref": "39026",
"isActive": true,
"label": "39026",
"timestamp": 1749738642,
"tripId": "285283572",
"routeId": "85",
"startTime": "09:37:00",
"position": {
"lat": 45.54509,
"lon": -73.55247
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 52,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285283572",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "85",
"routeLongName": "Hochelaga",
"shapeLink": "/storage/shapes/stm/850206.json",
"shapeId": "850206",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 12:50:43",
"meta": {}
},
{
"id": 2160,
"ref": "39042",
"isActive": true,
"label": "39042",
"timestamp": 1749738645,
"tripId": "285030757",
"routeId": "49",
"startTime": "10:12:00",
"position": {
"lat": 45.62622,
"lon": -73.59749
},
"bearing": 230,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 26,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285030757",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "49",
"routeLongName": "Maurice-Duplessis",
"shapeLink": "/storage/shapes/stm/490345.json",
"shapeId": "490345",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 12:50:43",
"meta": {}
},
{
"id": 2162,
"ref": "39100",
"isActive": true,
"label": "39100",
"timestamp": 1749738648,
"tripId": "285028283",
"routeId": "44",
"startTime": "09:46:00",
"position": {
"lat": 45.63836,
"lon": -73.59673
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 3,
"label": "Congestion"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285028283",
"headsign": "Nord",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "44",
"routeLongName": "Armand-Bombardier",
"shapeLink": "/storage/shapes/stm/440174.json",
"shapeId": "440174",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 12:50:44",
"meta": {}
},
{
"id": 2170,
"ref": "31076",
"isActive": true,
"label": "31076",
"timestamp": 1749738647,
"tripId": "284727594",
"routeId": "179",
"startTime": "10:11:00",
"position": {
"lat": 45.52778,
"lon": -73.63857
},
"bearing": 113,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 22,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284727594",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "179",
"routeLongName": "De l'Acadie",
"shapeLink": "/storage/shapes/stm/1790193.json",
"shapeId": "1790193",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 12:55:59",
"meta": {}
},
{
"id": 2180,
"ref": "29846",
"isActive": true,
"label": "29846",
"timestamp": 1749738647,
"tripId": "284739346",
"routeId": "69",
"startTime": "10:22:00",
"position": {
"lat": 45.6068,
"lon": -73.6198
},
"bearing": 246,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 9,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739346",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "69",
"routeLongName": "Gouin",
"shapeLink": "/storage/shapes/stm/690221.json",
"shapeId": "690221",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 13:05:23",
"meta": {}
},
{
"id": 2323,
"ref": "38081",
"isActive": true,
"label": "38081",
"timestamp": 1749738647,
"tripId": "285006920",
"routeId": "68",
"startTime": "09:48:00",
"position": {
"lat": 45.46268,
"lon": -73.88466
},
"bearing": 235,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 63,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285006920",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "68",
"routeLongName": "Pierrefonds",
"shapeLink": "/storage/shapes/stm/680414.json",
"shapeId": "680414",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 20:05:26",
"meta": {}
},
{
"id": 2411,
"ref": "30092",
"isActive": true,
"label": "30092",
"timestamp": 1749738640,
"tripId": "285028538",
"routeId": "44",
"startTime": "10:09:00",
"position": {
"lat": 45.60284,
"lon": -73.57761
},
"bearing": 121,
"speed": 33,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285028538",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "44",
"routeLongName": "Armand-Bombardier",
"shapeLink": "/storage/shapes/stm/440168.json",
"shapeId": "440168",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 21:18:25",
"meta": {}
},
{
"id": 2446,
"ref": "37085",
"isActive": true,
"label": "37085",
"timestamp": 1749738630,
"tripId": "284780328",
"routeId": "485",
"startTime": "09:46:00",
"position": {
"lat": 45.44807,
"lon": -73.70732
},
"bearing": 92,
"speed": 81,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 26,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284780328",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "485",
"routeLongName": "Express Antoine-Faucon",
"shapeLink": "/storage/shapes/stm/4850088.json",
"shapeId": "4850088",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 21:44:41",
"meta": {}
},
{
"id": 2463,
"ref": "31024",
"isActive": true,
"label": "31024",
"timestamp": 1749738640,
"tripId": "284727194",
"routeId": "129",
"startTime": "09:40:00",
"position": {
"lat": 45.50646,
"lon": -73.56728
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 38,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284727194",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "129",
"routeLongName": "Côte-Sainte-Catherine",
"shapeLink": "/storage/shapes/stm/1290221.json",
"shapeId": "1290221",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 22:26:31",
"meta": {}
},
{
"id": 2488,
"ref": "37048",
"isActive": true,
"label": "37048",
"timestamp": 1749738635,
"tripId": "284777134",
"routeId": "93",
"startTime": "10:11:00",
"position": {
"lat": 45.55872,
"lon": -73.59844
},
"bearing": 31,
"speed": 20,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 22,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284777134",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "93",
"routeLongName": "Jean-Talon",
"shapeLink": "/storage/shapes/stm/930090.json",
"shapeId": "930090",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-23 17:04:14",
"meta": {}
},
{
"id": 2501,
"ref": "38042",
"isActive": true,
"label": "38042",
"timestamp": 1749738645,
"tripId": "285007689",
"routeId": "170",
"startTime": "10:00:00",
"position": {
"lat": 45.52628,
"lon": -73.73012
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 26,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285007689",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "170",
"routeLongName": "Keller",
"shapeLink": "/storage/shapes/stm/1700176.json",
"shapeId": "1700176",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-24 11:20:06",
"meta": {}
},
{
"id": 2512,
"ref": "31017",
"isActive": true,
"label": "31017",
"timestamp": 1749738646,
"tripId": "284728188",
"routeId": "24",
"startTime": "09:54:00",
"position": {
"lat": 45.48796,
"lon": -73.59174
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 34,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284728188",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "24",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/240184.json",
"shapeId": "240184",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-24 17:28:09",
"meta": {}
},
{
"id": 2521,
"ref": "30058",
"isActive": true,
"label": "30058",
"timestamp": 1749738648,
"tripId": "285001622",
"routeId": "51",
"startTime": "09:45:00",
"position": {
"lat": 45.45863,
"lon": -73.64564
},
"bearing": 114,
"speed": 24,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 49,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285001622",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": "/storage/shapes/stm/510191.json",
"shapeId": "510191",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-25 09:36:02",
"meta": {}
},
{
"id": 2528,
"ref": "31808",
"isActive": true,
"label": "31808",
"timestamp": 1749738634,
"tripId": "284741297",
"routeId": "439",
"startTime": "09:51:00",
"position": {
"lat": 45.55991,
"lon": -73.5714
},
"bearing": 115,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 28,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284741297",
"headsign": "Sud destination Pie-IX / Notre-Dame",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390255.json",
"shapeId": "4390255",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-25 10:16:06",
"meta": {}
},
{
"id": 2532,
"ref": "37004",
"isActive": true,
"label": "37004",
"timestamp": 1749738627,
"tripId": "284777896",
"routeId": "105",
"startTime": "10:15:00",
"position": {
"lat": 45.4729,
"lon": -73.60574
},
"bearing": 46,
"speed": 29,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284777896",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "105",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/1050151.json",
"shapeId": "1050151",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-25 10:32:10",
"meta": {}
},
{
"id": 2535,
"ref": "31122",
"isActive": true,
"label": "31122",
"timestamp": 1749738648,
"tripId": "284727056",
"routeId": "30",
"startTime": "09:52:00",
"position": {
"lat": 45.55034,
"lon": -73.63937
},
"bearing": 292,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 36,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284727056",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "30",
"routeLongName": "Saint-Denis / Saint-Hubert",
"shapeLink": "/storage/shapes/stm/300087.json",
"shapeId": "300087",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-25 10:38:09",
"meta": {}
},
{
"id": 2537,
"ref": "30087",
"isActive": true,
"label": "30087",
"timestamp": 1749738286,
"tripId": "285001936",
"routeId": "97",
"startTime": "09:56:00",
"position": {
"lat": 45.52288,
"lon": -73.59098
},
"bearing": 213,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 49,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285001936",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "97",
"routeLongName": "Avenue-du-Mont-Royal",
"shapeLink": "/storage/shapes/stm/970204.json",
"shapeId": "970204",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-25 10:50:07",
"meta": {}
},
{
"id": 2544,
"ref": "39010",
"isActive": true,
"label": "39010",
"timestamp": 1749738640,
"tripId": "284780587",
"routeId": "747",
"startTime": "09:49:00",
"position": {
"lat": 45.44633,
"lon": -73.66825
},
"bearing": 286,
"speed": 54,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 12,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284780587",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "747",
"routeLongName": "YUL Aéroport / Centre-Ville",
"shapeLink": "/storage/shapes/stm/7471239.json",
"shapeId": "7471239",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-25 11:10:23",
"meta": {}
},
{
"id": 2548,
"ref": "31862",
"isActive": true,
"label": "31862",
"timestamp": 1749738646,
"tripId": "284741526",
"routeId": "439",
"startTime": "09:18:00",
"position": {
"lat": 45.61941,
"lon": -73.60847
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 36,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284741526",
"headsign": "Nord destination Cégep Marie-Victorin",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390256.json",
"shapeId": "4390256",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-25 11:20:22",
"meta": {}
},
{
"id": 2580,
"ref": "39126",
"isActive": true,
"label": "39126",
"timestamp": 1749738647,
"tripId": "285029932",
"routeId": "40",
"startTime": "10:03:00",
"position": {
"lat": 45.65092,
"lon": -73.53935
},
"bearing": 236,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285029932",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "40",
"routeLongName": "Henri-Bourassa-Est",
"shapeLink": "/storage/shapes/stm/400083.json",
"shapeId": "400083",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-25 12:10:41",
"meta": {}
},
{
"id": 2583,
"ref": "29089",
"isActive": true,
"label": "29089",
"timestamp": 1749738636,
"tripId": "286570463",
"routeId": "61",
"startTime": "10:03:00",
"position": {
"lat": 45.46285,
"lon": -73.5637
},
"bearing": 159,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 20,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286570463",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "61",
"routeLongName": "Wellington",
"shapeLink": "/storage/shapes/stm/610126.json",
"shapeId": "610126",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-25 12:16:14",
"meta": {}
},
{
"id": 2584,
"ref": "30251",
"isActive": true,
"label": "30251",
"timestamp": 1749738648,
"tripId": "285284988",
"routeId": "811",
"startTime": "10:10:00",
"position": {
"lat": 45.57666,
"lon": -73.57714
},
"bearing": 32,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 11,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285284988",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "811",
"routeLongName": "Navette Services santé",
"shapeLink": "/storage/shapes/stm/8110009.json",
"shapeId": "8110009",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-25 12:20:28",
"meta": {}
},
{
"id": 2592,
"ref": "31176",
"isActive": true,
"label": "31176",
"timestamp": 1749738427,
"tripId": "285282370",
"routeId": "185",
"startTime": "09:46:00",
"position": {
"lat": 45.53256,
"lon": -73.54978
},
"bearing": 120,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 49,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285282370",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "185",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/1850127.json",
"shapeId": "1850127",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-25 12:52:39",
"meta": {}
},
{
"id": 2613,
"ref": "38029",
"isActive": true,
"label": "38029",
"timestamp": 1749738607,
"tripId": "285282993",
"routeId": "34",
"startTime": "10:04:00",
"position": {
"lat": 45.5243,
"lon": -73.5528
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 27,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285282993",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "34",
"routeLongName": "Sainte-Catherine",
"shapeLink": "/storage/shapes/stm/340097.json",
"shapeId": "340097",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-25 20:30:34",
"meta": {}
},
{
"id": 2630,
"ref": "36040",
"isActive": true,
"label": "36040",
"timestamp": 1749738183,
"tripId": "285030424",
"routeId": "432",
"startTime": "09:33:00",
"position": {
"lat": 45.57639,
"lon": -73.54693
},
"bearing": 26,
"speed": 19,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285030424",
"headsign": "Sud via Perras / Lacordaire",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "432",
"routeLongName": "Express Lacordaire",
"shapeLink": "/storage/shapes/stm/4320137.json",
"shapeId": "4320137",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-25 21:58:42",
"meta": {}
},
{
"id": 2632,
"ref": "38025",
"isActive": true,
"label": "38025",
"timestamp": 1749738648,
"tripId": "285282824",
"routeId": "136",
"startTime": "10:13:00",
"position": {
"lat": 45.57753,
"lon": -73.597
},
"bearing": 301,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 17,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285282824",
"headsign": "Nord",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "136",
"routeLongName": "Viau",
"shapeLink": "/storage/shapes/stm/1360114.json",
"shapeId": "1360114",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-25 22:04:41",
"meta": {}
},
{
"id": 2647,
"ref": "37098",
"isActive": true,
"label": "37098",
"timestamp": 1749738645,
"tripId": "284778362",
"routeId": "128",
"startTime": "10:21:00",
"position": {
"lat": 45.52358,
"lon": -73.68521
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 9,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284778362",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "128",
"routeLongName": "Saint-Laurent",
"shapeLink": "/storage/shapes/stm/1280152.json",
"shapeId": "1280152",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-26 11:04:19",
"meta": {}
},
{
"id": 2652,
"ref": "32013",
"isActive": true,
"label": "32013",
"timestamp": 1749738648,
"tripId": "284727161",
"routeId": "129",
"startTime": "09:56:00",
"position": {
"lat": 45.51369,
"lon": -73.58292
},
"bearing": 123,
"speed": 4,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284727161",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "129",
"routeLongName": "Côte-Sainte-Catherine",
"shapeLink": "/storage/shapes/stm/1290221.json",
"shapeId": "1290221",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-26 11:20:31",
"meta": {}
},
{
"id": 2661,
"ref": "37089",
"isActive": true,
"label": "37089",
"timestamp": 1749738633,
"tripId": "284778277",
"routeId": "124",
"startTime": "10:16:00",
"position": {
"lat": 45.50488,
"lon": -73.65249
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 13,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284778277",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "124",
"routeLongName": "Victoria",
"shapeLink": "/storage/shapes/stm/1240126.json",
"shapeId": "1240126",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-26 12:06:38",
"meta": {}
},
{
"id": 2677,
"ref": "32020",
"isActive": true,
"label": "32020",
"timestamp": 1749738639,
"tripId": "285030084",
"routeId": "141",
"startTime": "10:19:00",
"position": {
"lat": 45.57882,
"lon": -73.5753
},
"bearing": 25,
"speed": 25,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 17,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285030084",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": "/storage/shapes/stm/1410585.json",
"shapeId": "1410585",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-26 20:14:30",
"meta": {}
},
{
"id": 2683,
"ref": "39127",
"isActive": true,
"label": "39127",
"timestamp": 1749738632,
"tripId": "285028257",
"routeId": "449",
"startTime": "10:06:00",
"position": {
"lat": 45.64913,
"lon": -73.57914
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 21,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285028257",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "449",
"routeLongName": "Express Rivière-des-Prairies",
"shapeLink": "/storage/shapes/stm/4490191.json",
"shapeId": "4490191",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-26 21:24:44",
"meta": {}
},
{
"id": 2703,
"ref": "37104",
"isActive": true,
"label": "37104",
"timestamp": 1749738647,
"tripId": "284779430",
"routeId": "175",
"startTime": "10:11:00",
"position": {
"lat": 45.48536,
"lon": -73.71931
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 22,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284779430",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "175",
"routeLongName": "Griffith / Saint-François",
"shapeLink": "/storage/shapes/stm/1750104.json",
"shapeId": "1750104",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-27 11:54:34",
"meta": {}
},
{
"id": 2711,
"ref": "30237",
"isActive": true,
"label": "30237",
"timestamp": 1749738644,
"tripId": "285009224",
"routeId": "206",
"startTime": "09:59:00",
"position": {
"lat": 45.47263,
"lon": -73.83076
},
"bearing": 236,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 29,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285009224",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "206",
"routeLongName": "Roger-Pilon",
"shapeLink": "/storage/shapes/stm/2060110.json",
"shapeId": "2060110",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-27 13:06:33",
"meta": {}
},
{
"id": 2712,
"ref": "37033",
"isActive": true,
"label": "37033",
"timestamp": 1749738647,
"tripId": "284778691",
"routeId": "162",
"startTime": "10:08:00",
"position": {
"lat": 45.47174,
"lon": -73.62633
},
"bearing": 34,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 30,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284778691",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "162",
"routeLongName": "Westminster",
"shapeLink": "/storage/shapes/stm/1620101.json",
"shapeId": "1620101",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-11-27 19:40:27",
"meta": {}
},
{
"id": 2718,
"ref": "39128",
"isActive": true,
"label": "39128",
"timestamp": 1749738638,
"tripId": "285029284",
"routeId": "81",
"startTime": "10:18:00",
"position": {
"lat": 45.66468,
"lon": -73.53499
},
"bearing": 332,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 17,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285029284",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "81",
"routeLongName": "Saint-Jean-Baptiste",
"shapeLink": "/storage/shapes/stm/810021.json",
"shapeId": "810021",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-27 21:06:43",
"meta": {}
},
{
"id": 2722,
"ref": "38041",
"isActive": true,
"label": "38041",
"timestamp": 1749738634,
"tripId": "285010264",
"routeId": "468",
"startTime": "10:15:00",
"position": {
"lat": 45.53143,
"lon": -73.72156
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 5,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285010264",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "468",
"routeLongName": "Express Pierrefonds / Gouin",
"shapeLink": "/storage/shapes/stm/4680086.json",
"shapeId": "4680086",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-27 21:16:42",
"meta": {}
},
{
"id": 2751,
"ref": "31134",
"isActive": true,
"label": "31134",
"timestamp": 1749738629,
"tripId": "284738056",
"routeId": "140",
"startTime": "10:02:00",
"position": {
"lat": 45.59082,
"lon": -73.63235
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 33,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284738056",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "140",
"routeLongName": "Fleury",
"shapeLink": "/storage/shapes/stm/1400133.json",
"shapeId": "1400133",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-28 13:28:34",
"meta": {}
},
{
"id": 2762,
"ref": "30865",
"isActive": true,
"label": "30865",
"timestamp": 1749738605,
"tripId": "284738636",
"routeId": "69",
"startTime": "09:32:00",
"position": {
"lat": 45.53178,
"lon": -73.71853
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 66,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284738636",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "69",
"routeLongName": "Gouin",
"shapeLink": "/storage/shapes/stm/690221.json",
"shapeId": "690221",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-28 21:12:34",
"meta": {}
},
{
"id": 2776,
"ref": "32007",
"isActive": true,
"label": "32007",
"timestamp": 1749738648,
"tripId": "284728052",
"routeId": "179",
"startTime": "10:05:00",
"position": {
"lat": 45.53542,
"lon": -73.6685
},
"bearing": 254,
"speed": 3,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284728052",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "179",
"routeLongName": "De l'Acadie",
"shapeLink": "/storage/shapes/stm/1790192.json",
"shapeId": "1790192",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-29 11:00:16",
"meta": {}
},
{
"id": 2790,
"ref": "31086",
"isActive": true,
"label": "31086",
"timestamp": 1749738091,
"tripId": "284726628",
"routeId": "92",
"startTime": "09:57:00",
"position": {
"lat": 45.49339,
"lon": -73.65421
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 28,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284726628",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "92",
"routeLongName": "Jean-Talon Ouest",
"shapeLink": "/storage/shapes/stm/920108.json",
"shapeId": "920108",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-29 20:04:22",
"meta": {}
},
{
"id": 2795,
"ref": "30854",
"isActive": true,
"label": "30854",
"timestamp": 1749738647,
"tripId": "284738606",
"routeId": "67",
"startTime": "10:05:00",
"position": {
"lat": 45.55775,
"lon": -73.59542
},
"bearing": 113,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 25,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284738606",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "67",
"routeLongName": "Saint-Michel",
"shapeLink": "/storage/shapes/stm/670125.json",
"shapeId": "670125",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-29 20:46:29",
"meta": {}
},
{
"id": 2806,
"ref": "32025",
"isActive": true,
"label": "32025",
"timestamp": 1749738648,
"tripId": "285030777",
"routeId": "187",
"startTime": "10:10:00",
"position": {
"lat": 45.64349,
"lon": -73.49963
},
"bearing": 193,
"speed": 28,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 26,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285030777",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "187",
"routeLongName": "René-Lévesque",
"shapeLink": "/storage/shapes/stm/1870218.json",
"shapeId": "1870218",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-29 22:46:38",
"meta": {}
},
{
"id": 2811,
"ref": "39148",
"isActive": true,
"label": "39148",
"timestamp": 1749738643,
"tripId": "285030108",
"routeId": "189",
"startTime": "09:52:00",
"position": {
"lat": 45.59343,
"lon": -73.52501
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 59,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285030108",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "189",
"routeLongName": "Notre-Dame",
"shapeLink": "/storage/shapes/stm/1890204.json",
"shapeId": "1890204",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-30 17:18:16",
"meta": {}
},
{
"id": 2812,
"ref": "29101",
"isActive": true,
"label": "29101",
"timestamp": 1749738644,
"tripId": "286570716",
"routeId": "71",
"startTime": "10:25:00",
"position": {
"lat": 45.46237,
"lon": -73.57574
},
"bearing": 86,
"speed": 17,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286570716",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "71",
"routeLongName": "Pointe-Saint-Charles",
"shapeLink": "/storage/shapes/stm/710083.json",
"shapeId": "710083",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-30 17:24:06",
"meta": {}
},
{
"id": 2820,
"ref": "31026",
"isActive": true,
"label": "31026",
"timestamp": 1749738639,
"tripId": "285028232",
"routeId": "86",
"startTime": "10:02:00",
"position": {
"lat": 45.65914,
"lon": -73.51329
},
"bearing": 283,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 51,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "285028232",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "86",
"routeLongName": "Pointe-aux-Trembles",
"shapeLink": "/storage/shapes/stm/860189.json",
"shapeId": "860189",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-01 11:14:05",
"meta": {}
},
{
"id": 2824,
"ref": "31832",
"isActive": true,
"label": "31832",
"timestamp": 1749738631,
"tripId": "284739428",
"routeId": "121",
"startTime": "09:45:00",
"position": {
"lat": 45.57174,
"lon": -73.64278
},
"bearing": 33,
"speed": 12,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 45,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739428",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "121",
"routeLongName": "Sauvé / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/1210266.json",
"shapeId": "1210266",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-02 02:06:10",
"meta": {}
},
{
"id": 2835,
"ref": "39062",
"isActive": true,
"label": "39062",
"timestamp": 1749738647,
"tripId": "285030587",
"routeId": "32",
"startTime": "10:07:00",
"position": {
"lat": 45.58598,
"lon": -73.5957
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 22,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285030587",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "32",
"routeLongName": "Lacordaire",
"shapeLink": "/storage/shapes/stm/320170.json",
"shapeId": "320170",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-02 12:32:44",
"meta": {}
},
{
"id": 2842,
"ref": "32017",
"isActive": true,
"label": "32017",
"timestamp": 1749738648,
"tripId": "285282627",
"routeId": "136",
"startTime": "10:23:00",
"position": {
"lat": 45.58448,
"lon": -73.60522
},
"bearing": 120,
"speed": 26,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 12,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285282627",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "136",
"routeLongName": "Viau",
"shapeLink": "/storage/shapes/stm/1360112.json",
"shapeId": "1360112",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-12-02 20:24:30",
"meta": {}
},
{
"id": 2850,
"ref": "29093",
"isActive": true,
"label": "29093",
"timestamp": 1749738644,
"tripId": "286572448",
"routeId": "108",
"startTime": "10:11:00",
"position": {
"lat": 45.47625,
"lon": -73.57415
},
"bearing": 321,
"speed": 47,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 21,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286572448",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "108",
"routeLongName": "Bannantyne",
"shapeLink": "/storage/shapes/stm/1080081.json",
"shapeId": "1080081",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-12-03 10:32:03",
"meta": {}
},
{
"id": 2858,
"ref": "31015",
"isActive": true,
"label": "31015",
"timestamp": 1749738636,
"tripId": "285028589",
"routeId": "186",
"startTime": "10:10:00",
"position": {
"lat": 45.63638,
"lon": -73.51643
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 27,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "285028589",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "186",
"routeLongName": "Sherbrooke-Est",
"shapeLink": "/storage/shapes/stm/1860252.json",
"shapeId": "1860252",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-03 12:02:28",
"meta": {}
},
{
"id": 2861,
"ref": "30872",
"isActive": true,
"label": "30872",
"timestamp": 1749738631,
"tripId": "284741495",
"routeId": "439",
"startTime": "10:39:00",
"position": {
"lat": 45.54726,
"lon": -73.5338
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284741495",
"headsign": "Nord destination Cégep Marie-Victorin",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390256.json",
"shapeId": "4390256",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-03 12:26:34",
"meta": {}
},
{
"id": 2879,
"ref": "31022",
"isActive": true,
"label": "31022",
"timestamp": 1749738646,
"tripId": "284727779",
"routeId": "161",
"startTime": "10:21:00",
"position": {
"lat": 45.51992,
"lon": -73.6154
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 7,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284727779",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "161",
"routeLongName": "Van Horne",
"shapeLink": "/storage/shapes/stm/1610134.json",
"shapeId": "1610134",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-03 21:58:31",
"meta": {}
},
{
"id": 2905,
"ref": "39075",
"isActive": true,
"label": "39075",
"timestamp": 1749738249,
"tripId": "285028926",
"routeId": "33",
"startTime": "09:30:00",
"position": {
"lat": 45.57962,
"lon": -73.51727
},
"bearing": 114,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 60,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285028926",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": "/storage/shapes/stm/330282.json",
"shapeId": "330282",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-04 21:32:49",
"meta": {}
},
{
"id": 2912,
"ref": "29137",
"isActive": true,
"label": "29137",
"timestamp": 1749738506,
"tripId": "286572416",
"routeId": "90",
"startTime": "09:44:00",
"position": {
"lat": 45.48866,
"lon": -73.58526
},
"bearing": 41,
"speed": 22,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 53,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286572416",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "90",
"routeLongName": "Saint-Jacques",
"shapeLink": "/storage/shapes/stm/900252.json",
"shapeId": "900252",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-12-05 10:02:03",
"meta": {}
},
{
"id": 2917,
"ref": "37068",
"isActive": true,
"label": "37068",
"timestamp": 1749738646,
"tripId": "284777335",
"routeId": "100",
"startTime": "10:07:00",
"position": {
"lat": 45.5003,
"lon": -73.66194
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 23,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284777335",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "100",
"routeLongName": "Crémazie",
"shapeLink": "/storage/shapes/stm/1000244.json",
"shapeId": "1000244",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-12-05 11:20:23",
"meta": {}
},
{
"id": 2923,
"ref": "33840",
"isActive": true,
"label": "33840",
"timestamp": 1749738645,
"tripId": "284778894",
"routeId": "165",
"startTime": "10:08:00",
"position": {
"lat": 45.50166,
"lon": -73.63395
},
"bearing": 305,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284778894",
"headsign": "Nord",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "165",
"routeLongName": "Côte-des-Neiges",
"shapeLink": "/storage/shapes/stm/1650126.json",
"shapeId": "1650126",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-12-05 13:16:45",
"meta": {}
},
{
"id": 2926,
"ref": "36047",
"isActive": true,
"label": "36047",
"timestamp": 1749738642,
"tripId": "285030889",
"routeId": "187",
"startTime": "10:22:00",
"position": {
"lat": 45.62403,
"lon": -73.52
},
"bearing": 14,
"speed": 55,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 8,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285030889",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "187",
"routeLongName": "René-Lévesque",
"shapeLink": "/storage/shapes/stm/1870223.json",
"shapeId": "1870223",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-05 20:04:28",
"meta": {}
},
{
"id": 2927,
"ref": "37030",
"isActive": true,
"label": "37030",
"timestamp": 1749738644,
"tripId": "284777161",
"routeId": "93",
"startTime": "10:13:00",
"position": {
"lat": 45.54076,
"lon": -73.61313
},
"bearing": 199,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 22,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284777161",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "93",
"routeLongName": "Jean-Talon",
"shapeLink": "/storage/shapes/stm/930087.json",
"shapeId": "930087",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-12-05 20:06:28",
"meta": {}
},
{
"id": 2932,
"ref": "30067",
"isActive": true,
"label": "30067",
"timestamp": 1749738635,
"tripId": "285002240",
"routeId": "97",
"startTime": "10:08:00",
"position": {
"lat": 45.5395,
"lon": -73.57451
},
"bearing": 126,
"speed": 23,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 20,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285002240",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "97",
"routeLongName": "Avenue-du-Mont-Royal",
"shapeLink": "/storage/shapes/stm/970203.json",
"shapeId": "970203",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2019-12-05 21:44:20",
"meta": {}
},
{
"id": 2940,
"ref": "30820",
"isActive": true,
"label": "30820",
"timestamp": 1749738631,
"tripId": "284738815",
"routeId": "121",
"startTime": "10:05:00",
"position": {
"lat": 45.53358,
"lon": -73.66602
},
"bearing": 16,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 23,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284738815",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "121",
"routeLongName": "Sauvé / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/1210266.json",
"shapeId": "1210266",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-06 11:38:23",
"meta": {}
},
{
"id": 2943,
"ref": "31156",
"isActive": true,
"label": "31156",
"timestamp": 1749738408,
"tripId": "285283192",
"routeId": "24",
"startTime": "09:37:00",
"position": {
"lat": 45.47937,
"lon": -73.6199
},
"bearing": 314,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 47,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285283192",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "24",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/240184.json",
"shapeId": "240184",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-12-06 12:14:34",
"meta": {}
},
{
"id": 2947,
"ref": "30136",
"isActive": true,
"label": "30136",
"timestamp": 1749738638,
"tripId": "285029653",
"routeId": "33",
"startTime": "09:22:00",
"position": {
"lat": 45.62907,
"lon": -73.6127
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 60,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285029653",
"headsign": "Nord",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": "/storage/shapes/stm/330287.json",
"shapeId": "330287",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-06 20:02:18",
"meta": {}
},
{
"id": 2951,
"ref": "30108",
"isActive": true,
"label": "30108",
"timestamp": 1749738642,
"tripId": "285029123",
"routeId": "86",
"startTime": "10:15:00",
"position": {
"lat": 45.63243,
"lon": -73.50935
},
"bearing": 104,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285029123",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "86",
"routeLongName": "Pointe-aux-Trembles",
"shapeLink": "/storage/shapes/stm/860188.json",
"shapeId": "860188",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-06 20:28:22",
"meta": {}
},
{
"id": 2953,
"ref": "32015",
"isActive": true,
"label": "32015",
"timestamp": 1749738648,
"tripId": "285029331",
"routeId": "43",
"startTime": "09:38:00",
"position": {
"lat": 45.64913,
"lon": -73.57914
},
"bearing": 38,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 56,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285029331",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "43",
"routeLongName": "Monselet",
"shapeLink": "/storage/shapes/stm/430204.json",
"shapeId": "430204",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-06 20:50:34",
"meta": {}
},
{
"id": 2957,
"ref": "29111",
"isActive": true,
"label": "29111",
"timestamp": 1749738647,
"tripId": "286570824",
"routeId": "57",
"startTime": "10:21:00",
"position": {
"lat": 45.4774,
"lon": -73.56744
},
"bearing": 309,
"speed": 33,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 13,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286570824",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "57",
"routeLongName": "Charlevoix",
"shapeLink": "/storage/shapes/stm/570103.json",
"shapeId": "570103",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-12-06 21:20:22",
"meta": {}
},
{
"id": 2968,
"ref": "31216",
"isActive": true,
"label": "31216",
"timestamp": 1749738640,
"tripId": "285001221",
"routeId": "25",
"startTime": "10:24:00",
"position": {
"lat": 45.54609,
"lon": -73.58531
},
"bearing": 126,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 12,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "285001221",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "25",
"routeLongName": "Angus",
"shapeLink": "/storage/shapes/stm/250055.json",
"shapeId": "250055",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2019-12-08 15:00:10",
"meta": {}
},
{
"id": 2972,
"ref": "31061",
"isActive": true,
"label": "31061",
"timestamp": 1749738637,
"tripId": "285028879",
"routeId": "33",
"startTime": "10:14:00",
"position": {
"lat": 45.6031,
"lon": -73.61625
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 23,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285028879",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": "/storage/shapes/stm/330282.json",
"shapeId": "330282",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-09 10:26:05",
"meta": {}
},
{
"id": 2973,
"ref": "31133",
"isActive": true,
"label": "31133",
"timestamp": 1749738634,
"tripId": "284738961",
"routeId": "41",
"startTime": "10:27:00",
"position": {
"lat": 45.55439,
"lon": -73.65361
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 4,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284738961",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "41",
"routeLongName": "Quartier Saint-Michel / Ahuntsic",
"shapeLink": "/storage/shapes/stm/410323.json",
"shapeId": "410323",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-09 10:30:04",
"meta": {}
},
{
"id": 2978,
"ref": "30159",
"isActive": true,
"label": "30159",
"timestamp": 1749738645,
"tripId": "285030029",
"routeId": "43",
"startTime": "09:39:00",
"position": {
"lat": 45.58343,
"lon": -73.64895
},
"bearing": 207,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 56,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285030029",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "43",
"routeLongName": "Monselet",
"shapeLink": "/storage/shapes/stm/430203.json",
"shapeId": "430203",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-09 11:54:18",
"meta": {}
},
{
"id": 2980,
"ref": "30013",
"isActive": true,
"label": "30013",
"timestamp": 1749738637,
"tripId": "286571015",
"routeId": "110",
"startTime": "09:52:00",
"position": {
"lat": 45.43211,
"lon": -73.66297
},
"bearing": 239,
"speed": 31,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 49,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286571015",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "110",
"routeLongName": "Centrale",
"shapeLink": "/storage/shapes/stm/1100210.json",
"shapeId": "1100210",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-12-09 12:24:21",
"meta": {}
},
{
"id": 2983,
"ref": "31814",
"isActive": true,
"label": "31814",
"timestamp": 1749738420,
"tripId": "284779147",
"routeId": "165",
"startTime": "09:56:00",
"position": {
"lat": 45.51484,
"lon": -73.64304
},
"bearing": 21,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 32,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284779147",
"headsign": "Nord",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "165",
"routeLongName": "Côte-des-Neiges",
"shapeLink": "/storage/shapes/stm/1650126.json",
"shapeId": "1650126",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-12-09 14:30:20",
"meta": {}
},
{
"id": 2996,
"ref": "30181",
"isActive": true,
"label": "30181",
"timestamp": 1749738636,
"tripId": "284726840",
"routeId": "18",
"startTime": "09:46:00",
"position": {
"lat": 45.53839,
"lon": -73.60102
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 44,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284726840",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "18",
"routeLongName": "Beaubien",
"shapeLink": "/storage/shapes/stm/180228.json",
"shapeId": "180228",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-10 10:40:07",
"meta": {}
},
{
"id": 3007,
"ref": "30224",
"isActive": true,
"label": "30224",
"timestamp": 1749738638,
"tripId": "284727735",
"routeId": "30",
"startTime": "09:51:00",
"position": {
"lat": 45.51949,
"lon": -73.57313
},
"bearing": 124,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 37,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284727735",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "30",
"routeLongName": "Saint-Denis / Saint-Hubert",
"shapeLink": "/storage/shapes/stm/300085.json",
"shapeId": "300085",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-10 20:40:27",
"meta": {}
},
{
"id": 3021,
"ref": "30164",
"isActive": true,
"label": "30164",
"timestamp": 1749738643,
"tripId": "284726687",
"routeId": "18",
"startTime": "10:05:00",
"position": {
"lat": 45.55787,
"lon": -73.58381
},
"bearing": 32,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 22,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284726687",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "18",
"routeLongName": "Beaubien",
"shapeLink": "/storage/shapes/stm/180220.json",
"shapeId": "180220",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-11 20:32:26",
"meta": {}
},
{
"id": 3023,
"ref": "37019",
"isActive": true,
"label": "37019",
"timestamp": 1749738097,
"tripId": "284777950",
"routeId": "105",
"startTime": "10:05:00",
"position": {
"lat": 45.47335,
"lon": -73.60511
},
"bearing": 35,
"speed": 14,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284777950",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "105",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/1050151.json",
"shapeId": "1050151",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-12-11 21:48:43",
"meta": {}
},
{
"id": 3024,
"ref": "30132",
"isActive": true,
"label": "30132",
"timestamp": 1749738642,
"tripId": "284741131",
"routeId": "56",
"startTime": "10:16:00",
"position": {
"lat": 45.55038,
"lon": -73.64033
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 15,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "284741131",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "56",
"routeLongName": "Saint-Hubert",
"shapeLink": "/storage/shapes/stm/560031.json",
"shapeId": "560031",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-11 22:22:27",
"meta": {}
},
{
"id": 3039,
"ref": "30157",
"isActive": true,
"label": "30157",
"timestamp": 1749738644,
"tripId": "284727500",
"routeId": "18",
"startTime": "09:43:00",
"position": {
"lat": 45.59766,
"lon": -73.55286
},
"bearing": 119,
"speed": 40,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 47,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284727500",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "18",
"routeLongName": "Beaubien",
"shapeLink": "/storage/shapes/stm/180220.json",
"shapeId": "180220",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-12 20:28:25",
"meta": {}
},
{
"id": 3042,
"ref": "39144",
"isActive": true,
"label": "39144",
"timestamp": 1749738646,
"tripId": "285030278",
"routeId": "49",
"startTime": "10:04:00",
"position": {
"lat": 45.61449,
"lon": -73.61989
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 18,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285030278",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "49",
"routeLongName": "Maurice-Duplessis",
"shapeLink": "/storage/shapes/stm/490344.json",
"shapeId": "490344",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-12 21:26:44",
"meta": {}
},
{
"id": 3045,
"ref": "39142",
"isActive": true,
"label": "39142",
"timestamp": 1749738632,
"tripId": "285030627",
"routeId": "141",
"startTime": "09:52:00",
"position": {
"lat": 45.56811,
"lon": -73.59351
},
"bearing": 213,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 44,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285030627",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": "/storage/shapes/stm/1410586.json",
"shapeId": "1410586",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-12 21:48:49",
"meta": {}
},
{
"id": 3080,
"ref": "30011",
"isActive": true,
"label": "30011",
"timestamp": 1749738630,
"tripId": "286569903",
"routeId": "35",
"startTime": "09:56:00",
"position": {
"lat": 45.46206,
"lon": -73.58801
},
"bearing": 187,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 32,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286569903",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "35",
"routeLongName": "Griffintown",
"shapeLink": "/storage/shapes/stm/350019.json",
"shapeId": "350019",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-12-16 20:46:26",
"meta": {}
},
{
"id": 3085,
"ref": "31003",
"isActive": true,
"label": "31003",
"timestamp": 1749738599,
"tripId": "284780654",
"routeId": "747",
"startTime": "09:37:00",
"position": {
"lat": 45.45734,
"lon": -73.75158
},
"bearing": 183,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 12,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284780654",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "747",
"routeLongName": "YUL Aéroport / Centre-Ville",
"shapeLink": "/storage/shapes/stm/7471239.json",
"shapeId": "7471239",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-12-17 11:32:21",
"meta": {}
},
{
"id": 3103,
"ref": "39061",
"isActive": true,
"label": "39061",
"timestamp": 1749738641,
"tripId": "285002429",
"routeId": "427",
"startTime": "09:01:00",
"position": {
"lat": 45.53852,
"lon": -73.5714
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 29,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285002429",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "427",
"routeLongName": "Express Saint-Joseph",
"shapeLink": "/storage/shapes/stm/4270111.json",
"shapeId": "4270111",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2019-12-18 11:28:30",
"meta": {}
},
{
"id": 3106,
"ref": "31807",
"isActive": true,
"label": "31807",
"timestamp": 1749738489,
"tripId": "284739229",
"routeId": "121",
"startTime": "09:37:00",
"position": {
"lat": 45.5764,
"lon": -73.63886
},
"bearing": 29,
"speed": 14,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 48,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284739229",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "121",
"routeLongName": "Sauvé / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/1210266.json",
"shapeId": "1210266",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-18 11:52:37",
"meta": {}
},
{
"id": 3115,
"ref": "40011",
"isActive": true,
"label": "40011",
"timestamp": 1749738648,
"tripId": "286572223",
"routeId": "110",
"startTime": "09:39:00",
"position": {
"lat": 45.4291,
"lon": -73.60833
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 59,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286572223",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "110",
"routeLongName": "Centrale",
"shapeLink": "/storage/shapes/stm/1100211.json",
"shapeId": "1100211",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-12-19 09:38:06",
"meta": {}
},
{
"id": 3117,
"ref": "40008",
"isActive": true,
"label": "40008",
"timestamp": 1749738642,
"tripId": "286573019",
"routeId": "123",
"startTime": "10:12:00",
"position": {
"lat": 45.44224,
"lon": -73.64692
},
"bearing": 344,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286573019",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "123",
"routeLongName": "Dollard / Shevchenko",
"shapeLink": "/storage/shapes/stm/1230115.json",
"shapeId": "1230115",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-12-19 10:08:06",
"meta": {}
},
{
"id": 3124,
"ref": "40030",
"isActive": true,
"label": "40030",
"timestamp": 1749738631,
"tripId": "286571896",
"routeId": "425",
"startTime": "10:04:00",
"position": {
"lat": 45.44874,
"lon": -73.7633
},
"bearing": 95,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 25,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286571896",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "425",
"routeLongName": "Express Anse-à-l'Orme",
"shapeLink": "/storage/shapes/stm/4250077.json",
"shapeId": "4250077",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-12-19 12:24:49",
"meta": {}
},
{
"id": 3145,
"ref": "38082",
"isActive": true,
"label": "38082",
"timestamp": 1749738640,
"tripId": "285007348",
"routeId": "117",
"startTime": "10:29:00",
"position": {
"lat": 45.50825,
"lon": -73.67307
},
"bearing": 310,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285007348",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "117",
"routeLongName": "O'Brien",
"shapeLink": "/storage/shapes/stm/1170071.json",
"shapeId": "1170071",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-20 21:48:36",
"meta": {}
},
{
"id": 3149,
"ref": "30852",
"isActive": true,
"label": "30852",
"timestamp": 1749738638,
"tripId": "284737982",
"routeId": "69",
"startTime": "10:42:00",
"position": {
"lat": 45.61754,
"lon": -73.60651
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284737982",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "69",
"routeLongName": "Gouin",
"shapeLink": "/storage/shapes/stm/690221.json",
"shapeId": "690221",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-21 20:56:12",
"meta": {}
},
{
"id": 3155,
"ref": "33811",
"isActive": true,
"label": "33811",
"timestamp": 1749738646,
"tripId": "284780049",
"routeId": "470",
"startTime": "10:08:00",
"position": {
"lat": 45.47371,
"lon": -73.83555
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284780049",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "470",
"routeLongName": "Express Pierrefonds",
"shapeLink": "/storage/shapes/stm/4700247.json",
"shapeId": "4700247",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2019-12-23 12:20:41",
"meta": {}
},
{
"id": 3157,
"ref": "39040",
"isActive": true,
"label": "39040",
"timestamp": 1749738638,
"tripId": "285284156",
"routeId": "85",
"startTime": "10:11:00",
"position": {
"lat": 45.56366,
"lon": -73.54123
},
"bearing": 18,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285284156",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "85",
"routeLongName": "Hochelaga",
"shapeLink": "/storage/shapes/stm/850202.json",
"shapeId": "850202",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2019-12-23 12:26:47",
"meta": {}
},
{
"id": 3158,
"ref": "29096",
"isActive": true,
"label": "29096",
"timestamp": 1749738634,
"tripId": "286571262",
"routeId": "90",
"startTime": "09:58:00",
"position": {
"lat": 45.47032,
"lon": -73.60773
},
"bearing": 46,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 42,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286571262",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "90",
"routeLongName": "Saint-Jacques",
"shapeLink": "/storage/shapes/stm/900252.json",
"shapeId": "900252",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-12-23 19:54:11",
"meta": {}
},
{
"id": 3166,
"ref": "40033",
"isActive": true,
"label": "40033",
"timestamp": 1749738638,
"tripId": "286573600",
"routeId": "198",
"startTime": "10:10:00",
"position": {
"lat": 45.44178,
"lon": -73.69254
},
"bearing": 353,
"speed": 12,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286573600",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "198",
"routeLongName": "Broadway",
"shapeLink": "/storage/shapes/stm/1980012.json",
"shapeId": "1980012",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-12-24 21:34:39",
"meta": {}
},
{
"id": 3172,
"ref": "40031",
"isActive": true,
"label": "40031",
"timestamp": 1749738632,
"tripId": "286570049",
"routeId": "36",
"startTime": "09:29:00",
"position": {
"lat": 45.44967,
"lon": -73.62212
},
"bearing": 109,
"speed": 54,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 36,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286570049",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "36",
"routeLongName": "Monk",
"shapeLink": "/storage/shapes/stm/360158.json",
"shapeId": "360158",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-12-27 21:28:41",
"meta": {}
},
{
"id": 3173,
"ref": "40038",
"isActive": true,
"label": "40038",
"timestamp": 1749738644,
"tripId": "286569920",
"routeId": "35",
"startTime": "10:00:00",
"position": {
"lat": 45.48998,
"lon": -73.56728
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 29,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286569920",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "35",
"routeLongName": "Griffintown",
"shapeLink": "/storage/shapes/stm/350017.json",
"shapeId": "350017",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-12-27 22:10:45",
"meta": {}
},
{
"id": 3175,
"ref": "32001",
"isActive": true,
"label": "32001",
"timestamp": 1749738644,
"tripId": "285028680",
"routeId": "28",
"startTime": "09:39:00",
"position": {
"lat": 45.61679,
"lon": -73.58038
},
"bearing": 26,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 47,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "285028680",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "28",
"routeLongName": "Honoré-Beaugrand",
"shapeLink": "/storage/shapes/stm/280922.json",
"shapeId": "280922",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-27 23:08:35",
"meta": {}
},
{
"id": 3213,
"ref": "37092",
"isActive": true,
"label": "37092",
"timestamp": 1749738643,
"tripId": "284778395",
"routeId": "128",
"startTime": "09:33:00",
"position": {
"lat": 45.52259,
"lon": -73.70654
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 63,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284778395",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "128",
"routeLongName": "Saint-Laurent",
"shapeLink": "/storage/shapes/stm/1280153.json",
"shapeId": "1280153",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2020-01-08 10:40:21",
"meta": {}
},
{
"id": 3214,
"ref": "30061",
"isActive": true,
"label": "30061",
"timestamp": 1749738648,
"tripId": "285001653",
"routeId": "51",
"startTime": "09:56:00",
"position": {
"lat": 45.48273,
"lon": -73.62998
},
"bearing": 216,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285001653",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": "/storage/shapes/stm/510191.json",
"shapeId": "510191",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2020-01-08 11:02:17",
"meta": {}
},
{
"id": 3231,
"ref": "40009",
"isActive": true,
"label": "40009",
"timestamp": 1749738648,
"tripId": "286570430",
"routeId": "61",
"startTime": "10:23:00",
"position": {
"lat": 45.43624,
"lon": -73.59068
},
"bearing": 15,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 12,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286570430",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "61",
"routeLongName": "Wellington",
"shapeLink": "/storage/shapes/stm/610123.json",
"shapeId": "610123",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-01-11 21:14:41",
"meta": {}
},
{
"id": 3235,
"ref": "33806",
"isActive": true,
"label": "33806",
"timestamp": 1749738647,
"tripId": "284738486",
"routeId": "467",
"startTime": "10:10:00",
"position": {
"lat": 45.56249,
"lon": -73.60601
},
"bearing": 325,
"speed": 11,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 10,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284738486",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "467",
"routeLongName": "Express Saint-Michel",
"shapeLink": "/storage/shapes/stm/4670079.json",
"shapeId": "4670079",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2020-01-13 11:50:50",
"meta": {}
},
{
"id": 3241,
"ref": "40046",
"isActive": true,
"label": "40046",
"timestamp": 1749738637,
"tripId": "286571703",
"routeId": "106",
"startTime": "10:09:00",
"position": {
"lat": 45.43916,
"lon": -73.62243
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 20,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286571703",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "106",
"routeLongName": "Newman",
"shapeLink": "/storage/shapes/stm/1060134.json",
"shapeId": "1060134",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-01-14 11:14:45",
"meta": {}
},
{
"id": 3242,
"ref": "40042",
"isActive": true,
"label": "40042",
"timestamp": 1749738638,
"tripId": "286572174",
"routeId": "108",
"startTime": "10:12:00",
"position": {
"lat": 45.45568,
"lon": -73.57634
},
"bearing": 184,
"speed": 36,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 21,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286572174",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "108",
"routeLongName": "Bannantyne",
"shapeLink": "/storage/shapes/stm/1080082.json",
"shapeId": "1080082",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-01-14 14:13:01",
"meta": {}
},
{
"id": 3244,
"ref": "29099",
"isActive": true,
"label": "29099",
"timestamp": 1749738635,
"tripId": "286572125",
"routeId": "198",
"startTime": "09:29:00",
"position": {
"lat": 45.44656,
"lon": -73.74097
},
"bearing": 46,
"speed": 33,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 55,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286572125",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "198",
"routeLongName": "Broadway",
"shapeLink": "/storage/shapes/stm/1980009.json",
"shapeId": "1980009",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-01-14 20:10:24",
"meta": {}
},
{
"id": 3247,
"ref": "40052",
"isActive": true,
"label": "40052",
"timestamp": 1749738641,
"tripId": "286571494",
"routeId": "104",
"startTime": "09:43:00",
"position": {
"lat": 45.47154,
"lon": -73.64764
},
"bearing": 301,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 32,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286571494",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "104",
"routeLongName": "Cavendish",
"shapeLink": "/storage/shapes/stm/1040117.json",
"shapeId": "1040117",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-01-15 10:48:31",
"meta": {}
},
{
"id": 3249,
"ref": "40002",
"isActive": true,
"label": "40002",
"timestamp": 1749738636,
"tripId": "286573047",
"routeId": "138",
"startTime": "10:01:00",
"position": {
"lat": 45.4757,
"lon": -73.66039
},
"bearing": 301,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 38,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286573047",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "138",
"routeLongName": "Notre-Dame-de-Grâce",
"shapeLink": "/storage/shapes/stm/1380088.json",
"shapeId": "1380088",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-01-15 11:16:44",
"meta": {}
},
{
"id": 3251,
"ref": "29024",
"isActive": true,
"label": "29024",
"timestamp": 1749738648,
"tripId": "284726649",
"routeId": "66",
"startTime": "10:28:00",
"position": {
"lat": 45.46991,
"lon": -73.64953
},
"bearing": 292,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284726649",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "66",
"routeLongName": "The Boulevard",
"shapeLink": "/storage/shapes/stm/660103.json",
"shapeId": "660103",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2020-01-15 20:36:30",
"meta": {}
},
{
"id": 3256,
"ref": "30002",
"isActive": true,
"label": "30002",
"timestamp": 1749738630,
"tripId": "285030524",
"routeId": "141",
"startTime": "10:45:00",
"position": {
"lat": 45.55986,
"lon": -73.59965
},
"bearing": 180,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285030524",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": "/storage/shapes/stm/1410585.json",
"shapeId": "1410585",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2020-01-16 20:52:40",
"meta": {}
},
{
"id": 3257,
"ref": "33819",
"isActive": true,
"label": "33819",
"timestamp": 1749738646,
"tripId": "284777023",
"routeId": "80",
"startTime": "09:49:00",
"position": {
"lat": 45.51048,
"lon": -73.56715
},
"bearing": 200,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 30,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284777023",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "80",
"routeLongName": "Avenue du Parc",
"shapeLink": "/storage/shapes/stm/800107.json",
"shapeId": "800107",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2020-01-16 21:01:00",
"meta": {}
},
{
"id": 3259,
"ref": "40021",
"isActive": true,
"label": "40021",
"timestamp": 1749738637,
"tripId": "286572641",
"routeId": "90",
"startTime": "09:45:00",
"position": {
"lat": 45.4432,
"lon": -73.64885
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 32,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 3,
"label": "Congestion"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286572641",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "90",
"routeLongName": "Saint-Jacques",
"shapeLink": "/storage/shapes/stm/900254.json",
"shapeId": "900254",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-01-17 14:03:02",
"meta": {}
},
{
"id": 3262,
"ref": "40012",
"isActive": true,
"label": "40012",
"timestamp": 1749738631,
"tripId": "286571400",
"routeId": "491",
"startTime": "09:54:00",
"position": {
"lat": 45.43756,
"lon": -73.69213
},
"bearing": 173,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 10,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286571400",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "491",
"routeLongName": "Express Provost",
"shapeLink": "/storage/shapes/stm/4910084.json",
"shapeId": "4910084",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-01-17 16:46:50",
"meta": {}
},
{
"id": 3277,
"ref": "31861",
"isActive": true,
"label": "31861",
"timestamp": 1749738641,
"tripId": "284741329",
"routeId": "439",
"startTime": "10:18:00",
"position": {
"lat": 45.60759,
"lon": -73.62104
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 11,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 3,
"label": "Congestion"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284741329",
"headsign": "Sud destination Pie-IX / Notre-Dame",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390255.json",
"shapeId": "4390255",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2020-01-21 17:56:37",
"meta": {}
},
{
"id": 3290,
"ref": "40027",
"isActive": true,
"label": "40027",
"timestamp": 1749738630,
"tripId": "286573328",
"routeId": "195",
"startTime": "10:07:00",
"position": {
"lat": 45.43177,
"lon": -73.66811
},
"bearing": 257,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 26,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286573328",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "195",
"routeLongName": "Dorval / Angrignon",
"shapeLink": "/storage/shapes/stm/1950177.json",
"shapeId": "1950177",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-01-25 11:05:03",
"meta": {}
},
{
"id": 3297,
"ref": "40059",
"isActive": true,
"label": "40059",
"timestamp": 1749738642,
"tripId": "286572986",
"routeId": "123",
"startTime": "10:12:00",
"position": {
"lat": 45.43227,
"lon": -73.63014
},
"bearing": 57,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 17,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286572986",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "123",
"routeLongName": "Dollard / Shevchenko",
"shapeLink": "/storage/shapes/stm/1230114.json",
"shapeId": "1230114",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-01-27 12:34:08",
"meta": {}
},
{
"id": 3300,
"ref": "40054",
"isActive": true,
"label": "40054",
"timestamp": 1749738631,
"tripId": "286573773",
"routeId": "211",
"startTime": "10:23:00",
"position": {
"lat": 45.48809,
"lon": -73.57915
},
"bearing": 225,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286573773",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "211",
"routeLongName": "Bord-du-Lac",
"shapeLink": "/storage/shapes/stm/2110143.json",
"shapeId": "2110143",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-01-27 21:40:06",
"meta": {}
},
{
"id": 3303,
"ref": "40057",
"isActive": true,
"label": "40057",
"timestamp": 1749738637,
"tripId": "286573389",
"routeId": "113",
"startTime": "10:14:00",
"position": {
"lat": 45.42963,
"lon": -73.63277
},
"bearing": 309,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286573389",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "113",
"routeLongName": "Lapierre",
"shapeLink": "/storage/shapes/stm/1130161.json",
"shapeId": "1130161",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-01-28 12:04:09",
"meta": {}
},
{
"id": 3306,
"ref": "31047",
"isActive": true,
"label": "31047",
"timestamp": 1749738642,
"tripId": "285282963",
"routeId": "168",
"startTime": "10:19:00",
"position": {
"lat": 45.4594,
"lon": -73.54437
},
"bearing": 316,
"speed": 6,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 10,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285282963",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "168",
"routeLongName": "Cité-du-Havre",
"shapeLink": "/storage/shapes/stm/1680170.json",
"shapeId": "1680170",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2020-01-28 20:36:06",
"meta": {}
},
{
"id": 3313,
"ref": "40060",
"isActive": true,
"label": "40060",
"timestamp": 1749738578,
"tripId": "286571291",
"routeId": "102",
"startTime": "10:08:00",
"position": {
"lat": 45.46217,
"lon": -73.65487
},
"bearing": 286,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 26,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286571291",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "102",
"routeLongName": "Somerled",
"shapeLink": "/storage/shapes/stm/1020074.json",
"shapeId": "1020074",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-01-30 12:24:09",
"meta": {}
},
{
"id": 3314,
"ref": "31844",
"isActive": true,
"label": "31844",
"timestamp": 1749738630,
"tripId": "284738573",
"routeId": "69",
"startTime": "10:34:00",
"position": {
"lat": 45.53158,
"lon": -73.7188
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284738573",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "69",
"routeLongName": "Gouin",
"shapeLink": "/storage/shapes/stm/690225.json",
"shapeId": "690225",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2020-01-30 20:36:08",
"meta": {}
},
{
"id": 3319,
"ref": "33841",
"isActive": true,
"label": "33841",
"timestamp": 1749738648,
"tripId": "284779243",
"routeId": "165",
"startTime": "09:59:00",
"position": {
"lat": 45.49386,
"lon": -73.57933
},
"bearing": 128,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 33,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284779243",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "165",
"routeLongName": "Côte-des-Neiges",
"shapeLink": "/storage/shapes/stm/1650117.json",
"shapeId": "1650117",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2020-02-04 00:34:03",
"meta": {}
},
{
"id": 3321,
"ref": "37007",
"isActive": true,
"label": "37007",
"timestamp": 1749738636,
"tripId": "284778244",
"routeId": "124",
"startTime": "10:00:00",
"position": {
"lat": 45.49495,
"lon": -73.63895
},
"bearing": 304,
"speed": 30,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284778244",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "124",
"routeLongName": "Victoria",
"shapeLink": "/storage/shapes/stm/1240125.json",
"shapeId": "1240125",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2020-02-04 01:15:06",
"meta": {}
},
{
"id": 3328,
"ref": "40044",
"isActive": true,
"label": "40044",
"timestamp": 1749738647,
"tripId": "286571852",
"routeId": "107",
"startTime": "09:55:00",
"position": {
"lat": 45.43453,
"lon": -73.59161
},
"bearing": 283,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 43,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286571852",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "107",
"routeLongName": "Verdun",
"shapeLink": "/storage/shapes/stm/1070141.json",
"shapeId": "1070141",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-02-05 16:26:07",
"meta": {}
},
{
"id": 3336,
"ref": "29115",
"isActive": true,
"label": "29115",
"timestamp": 1749738247,
"tripId": "286570671",
"routeId": "63",
"startTime": "09:56:00",
"position": {
"lat": 45.48232,
"lon": -73.63415
},
"bearing": 302,
"speed": 4,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286570671",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "63",
"routeLongName": "Girouard",
"shapeLink": "/storage/shapes/stm/630364.json",
"shapeId": "630364",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-02-07 17:00:04",
"meta": {}
},
{
"id": 3342,
"ref": "40022",
"isActive": true,
"label": "40022",
"timestamp": 1749738644,
"tripId": "286571552",
"routeId": "104",
"startTime": "10:00:00",
"position": {
"lat": 45.4743,
"lon": -73.60404
},
"bearing": 36,
"speed": 19,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 30,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286571552",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "104",
"routeLongName": "Cavendish",
"shapeLink": "/storage/shapes/stm/1040114.json",
"shapeId": "1040114",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-02-10 16:32:04",
"meta": {}
},
{
"id": 3344,
"ref": "37027",
"isActive": true,
"label": "37027",
"timestamp": 1749738644,
"tripId": "284777801",
"routeId": "103",
"startTime": "10:29:00",
"position": {
"lat": 45.45927,
"lon": -73.66229
},
"bearing": 58,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 3,
"label": "Congestion"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284777801",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "103",
"routeLongName": "Monkland",
"shapeLink": "/storage/shapes/stm/1030154.json",
"shapeId": "1030154",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2020-02-10 16:46:04",
"meta": {}
},
{
"id": 3347,
"ref": "31020",
"isActive": true,
"label": "31020",
"timestamp": 1749738635,
"tripId": "284727143",
"routeId": "179",
"startTime": "10:30:00",
"position": {
"lat": 45.52148,
"lon": -73.62506
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284727143",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "179",
"routeLongName": "De l'Acadie",
"shapeLink": "/storage/shapes/stm/1790192.json",
"shapeId": "1790192",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2020-02-11 16:10:03",
"meta": {}
},
{
"id": 3353,
"ref": "29036",
"isActive": true,
"label": "29036",
"timestamp": 1749738647,
"tripId": "284726706",
"routeId": "129",
"startTime": "10:14:00",
"position": {
"lat": 45.49841,
"lon": -73.62767
},
"bearing": 38,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 12,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 3,
"label": "Congestion"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284726706",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "129",
"routeLongName": "Côte-Sainte-Catherine",
"shapeLink": "/storage/shapes/stm/1290221.json",
"shapeId": "1290221",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2020-02-13 01:19:04",
"meta": {}
},
{
"id": 3363,
"ref": "40061",
"isActive": true,
"label": "40061",
"timestamp": 1749738111,
"tripId": "286570411",
"routeId": "61",
"startTime": "09:32:00",
"position": {
"lat": 45.42615,
"lon": -73.61088
},
"bearing": 119,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 51,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286570411",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "61",
"routeLongName": "Wellington",
"shapeLink": "/storage/shapes/stm/610126.json",
"shapeId": "610126",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-02-18 00:45:06",
"meta": {}
},
{
"id": 3380,
"ref": "33820",
"isActive": true,
"label": "33820",
"timestamp": 1749738637,
"tripId": "284778991",
"routeId": "470",
"startTime": "09:46:00",
"position": {
"lat": 45.46316,
"lon": -73.88374
},
"bearing": 229,
"speed": 36,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284778991",
"headsign": "Ouest destination Usine de filtration",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "470",
"routeLongName": "Express Pierrefonds",
"shapeLink": "/storage/shapes/stm/4700259.json",
"shapeId": "4700259",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2020-02-26 17:30:07",
"meta": {}
},
{
"id": 3399,
"ref": "30129",
"isActive": true,
"label": "30129",
"timestamp": 1749738636,
"tripId": "285030372",
"routeId": "192",
"startTime": "09:48:00",
"position": {
"lat": 45.61842,
"lon": -73.58096
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 48,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
2
],
"trip": {
"id": "285030372",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "192",
"routeLongName": "Robert",
"shapeLink": "/storage/shapes/stm/1920150.json",
"shapeId": "1920150",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2020-03-03 17:37:06",
"meta": {}
},
{
"id": 6789,
"ref": "31029",
"isActive": true,
"label": "31029",
"timestamp": 1749738648,
"tripId": "284727564",
"routeId": "161",
"startTime": "09:55:00",
"position": {
"lat": 45.47569,
"lon": -73.66177
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 34,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284727564",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "161",
"routeLongName": "Van Horne",
"shapeLink": "/storage/shapes/stm/1610134.json",
"shapeId": "1610134",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2020-03-08 20:56:03",
"meta": {}
},
{
"id": 7021,
"ref": "29816",
"isActive": true,
"label": "29816",
"timestamp": 1749738644,
"tripId": "284776860",
"routeId": "80",
"startTime": "10:06:00",
"position": {
"lat": 45.51712,
"lon": -73.59012
},
"bearing": 125,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 20,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
9
],
"trip": {
"id": "284776860",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "80",
"routeLongName": "Avenue du Parc",
"shapeLink": "/storage/shapes/stm/800107.json",
"shapeId": "800107",
"serviceId": "25M-H50M000S-81-S",
"blockId": null
},
"createdAt": "2020-03-23 14:02:03",
"meta": {}
},
{
"id": 7076,
"ref": "31169",
"isActive": true,
"label": "31169",
"timestamp": 1749738643,
"tripId": "285283941",
"routeId": "185",
"startTime": "10:16:00",
"position": {
"lat": 45.56004,
"lon": -73.55431
},
"bearing": 357,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 16,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285283941",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "185",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/1850126.json",
"shapeId": "1850126",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2020-04-04 13:21:03",
"meta": {}
},
{
"id": 7297,
"ref": "31009",
"isActive": true,
"label": "31009",
"timestamp": 1749738641,
"tripId": "285030331",
"routeId": "81",
"startTime": "10:05:00",
"position": {
"lat": 45.64035,
"lon": -73.49292
},
"bearing": 106,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 29,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "285030331",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "81",
"routeLongName": "Saint-Jean-Baptiste",
"shapeLink": "/storage/shapes/stm/810020.json",
"shapeId": "810020",
"serviceId": "25M-H54M000S-80-S",
"blockId": null
},
"createdAt": "2020-06-04 14:04:07",
"meta": {}
},
{
"id": 7839,
"ref": "40115",
"isActive": true,
"label": "40115",
"timestamp": 1749738648,
"tripId": "285001027",
"routeId": "11",
"startTime": "10:14:00",
"position": {
"lat": 45.51337,
"lon": -73.59224
},
"bearing": 236,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 15,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285001027",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "11",
"routeLongName": "Parc-du-Mont-Royal / Ridgewood",
"shapeLink": "/storage/shapes/stm/110157.json",
"shapeId": "110157",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2020-08-14 18:00:13",
"meta": {}
},
{
"id": 8505,
"ref": "40107",
"isActive": true,
"label": "40107",
"timestamp": 1749738640,
"tripId": "285001109",
"routeId": "14",
"startTime": "09:58:00",
"position": {
"lat": 45.53122,
"lon": -73.5832
},
"bearing": 34,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 22,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285001109",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "14",
"routeLongName": "Atateken",
"shapeLink": "/storage/shapes/stm/140065.json",
"shapeId": "140065",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2020-08-26 15:08:04",
"meta": {}
},
{
"id": 8602,
"ref": "40075",
"isActive": true,
"label": "40075",
"timestamp": 1749738561,
"tripId": "286574215",
"routeId": "405",
"startTime": "09:36:00",
"position": {
"lat": 45.404,
"lon": -73.93906
},
"bearing": 245,
"speed": 36,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286574215",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "405",
"routeLongName": "Express Bord-du-Lac",
"shapeLink": "/storage/shapes/stm/4050078.json",
"shapeId": "4050078",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-08-28 22:49:05",
"meta": {}
},
{
"id": 8603,
"ref": "40074",
"isActive": true,
"label": "40074",
"timestamp": 1749738633,
"tripId": "286571655",
"routeId": "113",
"startTime": "10:34:00",
"position": {
"lat": 45.44673,
"lon": -73.60329
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286571655",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "113",
"routeLongName": "Lapierre",
"shapeLink": "/storage/shapes/stm/1130161.json",
"shapeId": "1130161",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-08-28 23:13:06",
"meta": {}
},
{
"id": 8634,
"ref": "40071",
"isActive": true,
"label": "40071",
"timestamp": 1749738646,
"tripId": "286572856",
"routeId": "114",
"startTime": "09:17:00",
"position": {
"lat": 45.44188,
"lon": -73.63353
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 40,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286572856",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "114",
"routeLongName": "Angrignon",
"shapeLink": "/storage/shapes/stm/1140009.json",
"shapeId": "1140009",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-08-31 13:51:07",
"meta": {}
},
{
"id": 8765,
"ref": "40067",
"isActive": true,
"label": "40067",
"timestamp": 1749738647,
"tripId": "286572747",
"routeId": "113",
"startTime": "10:22:00",
"position": {
"lat": 45.42898,
"lon": -73.64001
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 9,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286572747",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "113",
"routeLongName": "Lapierre",
"shapeLink": "/storage/shapes/stm/1130162.json",
"shapeId": "1130162",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-09-08 07:44:14",
"meta": {}
},
{
"id": 8825,
"ref": "40079",
"isActive": true,
"label": "40079",
"timestamp": 1749738636,
"tripId": "286572317",
"routeId": "195",
"startTime": "10:10:00",
"position": {
"lat": 45.43473,
"lon": -73.688
},
"bearing": 86,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286572317",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "195",
"routeLongName": "Dorval / Angrignon",
"shapeLink": "/storage/shapes/stm/1950182.json",
"shapeId": "1950182",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-09-15 09:09:15",
"meta": {}
},
{
"id": 8843,
"ref": "40097",
"isActive": true,
"label": "40097",
"timestamp": 1749738634,
"tripId": "285001672",
"routeId": "51",
"startTime": "10:14:00",
"position": {
"lat": 45.48168,
"lon": -73.63542
},
"bearing": 120,
"speed": 12,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 52,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285001672",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": "/storage/shapes/stm/510185.json",
"shapeId": "510185",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2020-09-18 07:06:13",
"meta": {}
},
{
"id": 8849,
"ref": "40096",
"isActive": true,
"label": "40096",
"timestamp": 1749738642,
"tripId": "285002447",
"routeId": "430",
"startTime": "09:33:00",
"position": {
"lat": 45.5182,
"lon": -73.55287
},
"bearing": 211,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 25,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285002447",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "430",
"routeLongName": "Express Pointe-aux-Trembles",
"shapeLink": "/storage/shapes/stm/4300151.json",
"shapeId": "4300151",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2020-09-19 15:06:08",
"meta": {}
},
{
"id": 8851,
"ref": "40081",
"isActive": true,
"label": "40081",
"timestamp": 1749738631,
"tripId": "286571176",
"routeId": "405",
"startTime": "09:56:00",
"position": {
"lat": 45.44069,
"lon": -73.82346
},
"bearing": 252,
"speed": 90,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 5,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286571176",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "405",
"routeLongName": "Express Bord-du-Lac",
"shapeLink": "/storage/shapes/stm/4050078.json",
"shapeId": "4050078",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-09-19 16:43:07",
"meta": {}
},
{
"id": 8857,
"ref": "40108",
"isActive": true,
"label": "40108",
"timestamp": 1749738630,
"tripId": "285002217",
"routeId": "97",
"startTime": "09:36:00",
"position": {
"lat": 45.53877,
"lon": -73.57207
},
"bearing": 186,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285002217",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "97",
"routeLongName": "Avenue-du-Mont-Royal",
"shapeLink": "/storage/shapes/stm/970203.json",
"shapeId": "970203",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2020-09-21 05:53:05",
"meta": {}
},
{
"id": 8860,
"ref": "31182",
"isActive": true,
"label": "31182",
"timestamp": 1749738648,
"tripId": "285284833",
"routeId": "50",
"startTime": "10:10:00",
"position": {
"lat": 45.49889,
"lon": -73.55287
},
"bearing": 357,
"speed": 33,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 14,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
3
],
"trip": {
"id": "285284833",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "50",
"routeLongName": "Vieux-Montréal / Vieux-Port",
"shapeLink": "/storage/shapes/stm/500006.json",
"shapeId": "500006",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2020-09-21 08:37:07",
"meta": {}
},
{
"id": 8867,
"ref": "40118",
"isActive": true,
"label": "40118",
"timestamp": 1749738637,
"tripId": "285001742",
"routeId": "51",
"startTime": "10:15:00",
"position": {
"lat": 45.51495,
"lon": -73.60789
},
"bearing": 248,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 11,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285001742",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": "/storage/shapes/stm/510191.json",
"shapeId": "510191",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2020-09-22 06:36:07",
"meta": {}
},
{
"id": 8897,
"ref": "40068",
"isActive": true,
"label": "40068",
"timestamp": 1749738636,
"tripId": "286571632",
"routeId": "112",
"startTime": "10:03:00",
"position": {
"lat": 45.42158,
"lon": -73.6348
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 36,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286571632",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "112",
"routeLongName": "Airlie",
"shapeLink": "/storage/shapes/stm/1120178.json",
"shapeId": "1120178",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-09-25 05:29:05",
"meta": {}
},
{
"id": 8907,
"ref": "40092",
"isActive": true,
"label": "40092",
"timestamp": 1749738646,
"tripId": "285001824",
"routeId": "161",
"startTime": "09:43:00",
"position": {
"lat": 45.46217,
"lon": -73.67149
},
"bearing": 32,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 48,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285001824",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "161",
"routeLongName": "Van Horne",
"shapeLink": "/storage/shapes/stm/1610134.json",
"shapeId": "1610134",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2020-09-28 06:18:05",
"meta": {}
},
{
"id": 8911,
"ref": "30146",
"isActive": true,
"label": "30146",
"timestamp": 1749738645,
"tripId": "284727020",
"routeId": "144",
"startTime": "10:23:00",
"position": {
"lat": 45.50547,
"lon": -73.57847
},
"bearing": 358,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 11,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
7
],
"trip": {
"id": "284727020",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "144",
"routeLongName": "Avenue des Pins",
"shapeLink": "/storage/shapes/stm/1440095.json",
"shapeId": "1440095",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2020-09-29 06:01:05",
"meta": {}
},
{
"id": 8913,
"ref": "40066",
"isActive": true,
"label": "40066",
"timestamp": 1749738513,
"tripId": "286573286",
"routeId": "195",
"startTime": "09:41:00",
"position": {
"lat": 45.44706,
"lon": -73.60488
},
"bearing": 172,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 59,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286573286",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "195",
"routeLongName": "Dorval / Angrignon",
"shapeLink": "/storage/shapes/stm/1950182.json",
"shapeId": "1950182",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-09-29 17:32:12",
"meta": {}
},
{
"id": 8915,
"ref": "40094",
"isActive": true,
"label": "40094",
"timestamp": 1749738297,
"tripId": "285001716",
"routeId": "51",
"startTime": "09:33:00",
"position": {
"lat": 45.52641,
"lon": -73.58765
},
"bearing": 39,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 51,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285001716",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": "/storage/shapes/stm/510185.json",
"shapeId": "510185",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2020-09-30 06:25:06",
"meta": {}
},
{
"id": 8917,
"ref": "40111",
"isActive": true,
"label": "40111",
"timestamp": 1749738646,
"tripId": "285001601",
"routeId": "51",
"startTime": "09:49:00",
"position": {
"lat": 45.51822,
"lon": -73.59706
},
"bearing": 31,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 46,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285001601",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": "/storage/shapes/stm/510185.json",
"shapeId": "510185",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2020-09-30 07:33:10",
"meta": {}
},
{
"id": 9051,
"ref": "40139",
"isActive": true,
"label": "40139",
"timestamp": 1749738646,
"tripId": "285009394",
"routeId": "204",
"startTime": "09:57:00",
"position": {
"lat": 45.45527,
"lon": -73.75182
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 34,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285009394",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "204",
"routeLongName": "Cardinal",
"shapeLink": "/storage/shapes/stm/2040212.json",
"shapeId": "2040212",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-10-05 15:50:09",
"meta": {}
},
{
"id": 9080,
"ref": "40156",
"isActive": true,
"label": "40156",
"timestamp": 1749738114,
"tripId": "285008364",
"routeId": "225",
"startTime": "09:40:00",
"position": {
"lat": 45.46627,
"lon": -73.83175
},
"bearing": 234,
"speed": 36,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 49,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008364",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "225",
"routeLongName": "Hymus",
"shapeLink": "/storage/shapes/stm/2250139.json",
"shapeId": "2250139",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-10-09 14:17:07",
"meta": {}
},
{
"id": 9082,
"ref": "40157",
"isActive": true,
"label": "40157",
"timestamp": 1749738646,
"tripId": "285006813",
"routeId": "68",
"startTime": "09:44:00",
"position": {
"lat": 45.52383,
"lon": -73.73646
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 66,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285006813",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "68",
"routeLongName": "Pierrefonds",
"shapeLink": "/storage/shapes/stm/680412.json",
"shapeId": "680412",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-10-09 15:08:10",
"meta": {}
},
{
"id": 9098,
"ref": "40133",
"isActive": true,
"label": "40133",
"timestamp": 1749738644,
"tripId": "285009518",
"routeId": "205",
"startTime": "10:21:00",
"position": {
"lat": 45.50962,
"lon": -73.8467
},
"bearing": 183,
"speed": 4,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 15,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285009518",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "205",
"routeLongName": "Gouin",
"shapeLink": "/storage/shapes/stm/2050111.json",
"shapeId": "2050111",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-10-14 07:22:13",
"meta": {}
},
{
"id": 9204,
"ref": "40126",
"isActive": true,
"label": "40126",
"timestamp": 1749738634,
"tripId": "285009042",
"routeId": "203",
"startTime": "10:02:00",
"position": {
"lat": 45.44973,
"lon": -73.78223
},
"bearing": 164,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 34,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285009042",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "203",
"routeLongName": "Carson",
"shapeLink": "/storage/shapes/stm/2030123.json",
"shapeId": "2030123",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 08:02:11",
"meta": {}
},
{
"id": 9208,
"ref": "40134",
"isActive": true,
"label": "40134",
"timestamp": 1749738630,
"tripId": "285008418",
"routeId": "200",
"startTime": "09:58:00",
"position": {
"lat": 45.40535,
"lon": -73.9243
},
"bearing": 276,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 42,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008418",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "200",
"routeLongName": "Sainte-Anne-de-Bellevue",
"shapeLink": "/storage/shapes/stm/2000098.json",
"shapeId": "2000098",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 08:02:12",
"meta": {}
},
{
"id": 9211,
"ref": "40138",
"isActive": true,
"label": "40138",
"timestamp": 1749738646,
"tripId": "285009183",
"routeId": "206",
"startTime": "10:00:00",
"position": {
"lat": 45.49518,
"lon": -73.74842
},
"bearing": 224,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 29,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285009183",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "206",
"routeLongName": "Roger-Pilon",
"shapeLink": "/storage/shapes/stm/2060107.json",
"shapeId": "2060107",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 08:02:12",
"meta": {}
},
{
"id": 9216,
"ref": "40148",
"isActive": true,
"label": "40148",
"timestamp": 1749738631,
"tripId": "285008716",
"routeId": "202",
"startTime": "10:20:00",
"position": {
"lat": 45.44922,
"lon": -73.81805
},
"bearing": 163,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 6,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008716",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "202",
"routeLongName": "Dawson",
"shapeLink": "/storage/shapes/stm/2020187.json",
"shapeId": "2020187",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 08:02:12",
"meta": {}
},
{
"id": 9226,
"ref": "40172",
"isActive": true,
"label": "40172",
"timestamp": 1749738645,
"tripId": "285009305",
"routeId": "202",
"startTime": "09:54:00",
"position": {
"lat": 45.44194,
"lon": -73.75921
},
"bearing": 267,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 42,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285009305",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "202",
"routeLongName": "Dawson",
"shapeLink": "/storage/shapes/stm/2020185.json",
"shapeId": "2020185",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 08:02:12",
"meta": {}
},
{
"id": 9227,
"ref": "40173",
"isActive": true,
"label": "40173",
"timestamp": 1749738647,
"tripId": "285009093",
"routeId": "204",
"startTime": "10:09:00",
"position": {
"lat": 45.45006,
"lon": -73.77731
},
"bearing": 272,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 17,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285009093",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "204",
"routeLongName": "Cardinal",
"shapeLink": "/storage/shapes/stm/2040214.json",
"shapeId": "2040214",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 08:02:12",
"meta": {}
},
{
"id": 9228,
"ref": "40177",
"isActive": true,
"label": "40177",
"timestamp": 1749738646,
"tripId": "285009376",
"routeId": "208",
"startTime": "10:00:00",
"position": {
"lat": 45.49397,
"lon": -73.80618
},
"bearing": 236,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 41,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285009376",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "208",
"routeLongName": "Brunswick",
"shapeLink": "/storage/shapes/stm/2080107.json",
"shapeId": "2080107",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 08:02:12",
"meta": {}
},
{
"id": 9239,
"ref": "40200",
"isActive": true,
"label": "40200",
"timestamp": 1749738632,
"tripId": "285009612",
"routeId": "215",
"startTime": "10:06:00",
"position": {
"lat": 45.49917,
"lon": -73.74889
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 27,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285009612",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "215",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/2150156.json",
"shapeId": "2150156",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 08:02:13",
"meta": {}
},
{
"id": 9242,
"ref": "40213",
"isActive": true,
"label": "40213",
"timestamp": 1749738640,
"tripId": "285010184",
"routeId": "419",
"startTime": "10:15:00",
"position": {
"lat": 45.42583,
"lon": -73.92599
},
"bearing": 247,
"speed": 44,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 15,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285010184",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "419",
"routeLongName": "Express John Abbott",
"shapeLink": "/storage/shapes/stm/4190067.json",
"shapeId": "4190067",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 08:02:13",
"meta": {}
},
{
"id": 9247,
"ref": "40190",
"isActive": true,
"label": "40190",
"timestamp": 1749738645,
"tripId": "285008518",
"routeId": "208",
"startTime": "10:14:00",
"position": {
"lat": 45.50219,
"lon": -73.78725
},
"bearing": 8,
"speed": 5,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 20,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008518",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "208",
"routeLongName": "Brunswick",
"shapeLink": "/storage/shapes/stm/2080106.json",
"shapeId": "2080106",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 08:14:10",
"meta": {}
},
{
"id": 9248,
"ref": "40194",
"isActive": true,
"label": "40194",
"timestamp": 1749738644,
"tripId": "285008393",
"routeId": "200",
"startTime": "10:09:00",
"position": {
"lat": 45.44763,
"lon": -73.85383
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008393",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "200",
"routeLongName": "Sainte-Anne-de-Bellevue",
"shapeLink": "/storage/shapes/stm/2000101.json",
"shapeId": "2000101",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 09:04:09",
"meta": {}
},
{
"id": 9257,
"ref": "40125",
"isActive": true,
"label": "40125",
"timestamp": 1749738635,
"tripId": "285008744",
"routeId": "202",
"startTime": "09:29:00",
"position": {
"lat": 45.4688,
"lon": -73.82853
},
"bearing": 135,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 69,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008744",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "202",
"routeLongName": "Dawson",
"shapeLink": "/storage/shapes/stm/2020185.json",
"shapeId": "2020185",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-02 05:52:05",
"meta": {}
},
{
"id": 9260,
"ref": "40196",
"isActive": true,
"label": "40196",
"timestamp": 1749738593,
"tripId": "285007834",
"routeId": "174",
"startTime": "10:12:00",
"position": {
"lat": 45.51355,
"lon": -73.68364
},
"bearing": 302,
"speed": 6,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 17,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285007834",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "174",
"routeLongName": "Côte-Vertu-Ouest",
"shapeLink": "/storage/shapes/stm/1740117.json",
"shapeId": "1740117",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-02 06:09:07",
"meta": {}
},
{
"id": 9262,
"ref": "40174",
"isActive": true,
"label": "40174",
"timestamp": 1749738647,
"tripId": "285009794",
"routeId": "217",
"startTime": "10:28:00",
"position": {
"lat": 45.46134,
"lon": -73.83588
},
"bearing": 144,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285009794",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "217",
"routeLongName": "Anse-à-l'Orme",
"shapeLink": "/storage/shapes/stm/2170107.json",
"shapeId": "2170107",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-02 11:51:09",
"meta": {}
},
{
"id": 9263,
"ref": "40217",
"isActive": true,
"label": "40217",
"timestamp": 1749738640,
"tripId": "286572605",
"routeId": "190",
"startTime": "10:09:00",
"position": {
"lat": 45.44716,
"lon": -73.63814
},
"bearing": 232,
"speed": 63,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 16,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286572605",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "190",
"routeLongName": "Norman",
"shapeLink": "/storage/shapes/stm/1900002.json",
"shapeId": "1900002",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-12-02 16:09:15",
"meta": {}
},
{
"id": 9267,
"ref": "40221",
"isActive": true,
"label": "40221",
"timestamp": 1749738640,
"tripId": "286572496",
"routeId": "112",
"startTime": "10:31:00",
"position": {
"lat": 45.42538,
"lon": -73.64808
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286572496",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "112",
"routeLongName": "Airlie",
"shapeLink": "/storage/shapes/stm/1120177.json",
"shapeId": "1120177",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-12-03 17:02:13",
"meta": {}
},
{
"id": 9271,
"ref": "40127",
"isActive": true,
"label": "40127",
"timestamp": 1749738643,
"tripId": "285006856",
"routeId": "68",
"startTime": "10:13:00",
"position": {
"lat": 45.48832,
"lon": -73.85609
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 27,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285006856",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "68",
"routeLongName": "Pierrefonds",
"shapeLink": "/storage/shapes/stm/680412.json",
"shapeId": "680412",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-04 16:56:10",
"meta": {}
},
{
"id": 9272,
"ref": "40225",
"isActive": true,
"label": "40225",
"timestamp": 1749738257,
"tripId": "286574121",
"routeId": "57",
"startTime": "09:57:00",
"position": {
"lat": 45.48983,
"lon": -73.58389
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 23,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286574121",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "57",
"routeLongName": "Charlevoix",
"shapeLink": "/storage/shapes/stm/570103.json",
"shapeId": "570103",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-12-05 09:59:04",
"meta": {}
},
{
"id": 9275,
"ref": "40226",
"isActive": true,
"label": "40226",
"timestamp": 1749738648,
"tripId": "286574292",
"routeId": "420",
"startTime": "08:34:00",
"position": {
"lat": 45.45917,
"lon": -73.65933
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 20,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286574292",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "420",
"routeLongName": "Express Notre-Dame-de-Grâce",
"shapeLink": "/storage/shapes/stm/4200115.json",
"shapeId": "4200115",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-12-07 15:20:15",
"meta": {}
},
{
"id": 9282,
"ref": "40214",
"isActive": true,
"label": "40214",
"timestamp": 1749738639,
"tripId": "285007868",
"routeId": "208",
"startTime": "10:30:00",
"position": {
"lat": 45.46693,
"lon": -73.83038
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285007868",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "208",
"routeLongName": "Brunswick",
"shapeLink": "/storage/shapes/stm/2080107.json",
"shapeId": "2080107",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-09 15:39:15",
"meta": {}
},
{
"id": 9285,
"ref": "40189",
"isActive": true,
"label": "40189",
"timestamp": 1749738288,
"tripId": "285008077",
"routeId": "117",
"startTime": "10:09:00",
"position": {
"lat": 45.50834,
"lon": -73.67213
},
"bearing": 216,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 22,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008077",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "117",
"routeLongName": "O'Brien",
"shapeLink": "/storage/shapes/stm/1170074.json",
"shapeId": "1170074",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-09 16:16:17",
"meta": {}
},
{
"id": 9290,
"ref": "40228",
"isActive": true,
"label": "40228",
"timestamp": 1749738632,
"tripId": "286572277",
"routeId": "112",
"startTime": "10:11:00",
"position": {
"lat": 45.42802,
"lon": -73.59888
},
"bearing": 13,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286572277",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "112",
"routeLongName": "Airlie",
"shapeLink": "/storage/shapes/stm/1120177.json",
"shapeId": "1120177",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-12-12 04:55:05",
"meta": {}
},
{
"id": 9291,
"ref": "40195",
"isActive": true,
"label": "40195",
"timestamp": 1749738642,
"tripId": "285008611",
"routeId": "201",
"startTime": "09:35:00",
"position": {
"lat": 45.45419,
"lon": -73.80923
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 57,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008611",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "201",
"routeLongName": "Saint-Charles / Saint-Jean",
"shapeLink": "/storage/shapes/stm/2010213.json",
"shapeId": "2010213",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-12 07:03:08",
"meta": {}
},
{
"id": 9296,
"ref": "40223",
"isActive": true,
"label": "40223",
"timestamp": 1749738647,
"tripId": "286569896",
"routeId": "113",
"startTime": "10:06:00",
"position": {
"lat": 45.44574,
"lon": -73.59497
},
"bearing": 287,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 28,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286569896",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "113",
"routeLongName": "Lapierre",
"shapeLink": "/storage/shapes/stm/1130162.json",
"shapeId": "1130162",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-12-14 23:03:07",
"meta": {}
},
{
"id": 9300,
"ref": "40236",
"isActive": true,
"label": "40236",
"timestamp": 1749738648,
"tripId": "286573752",
"routeId": "211",
"startTime": "09:52:00",
"position": {
"lat": 45.43504,
"lon": -73.82563
},
"bearing": 166,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 13,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286573752",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "211",
"routeLongName": "Bord-du-Lac",
"shapeLink": "/storage/shapes/stm/2110143.json",
"shapeId": "2110143",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-12-15 17:19:15",
"meta": {}
},
{
"id": 9301,
"ref": "40184",
"isActive": true,
"label": "40184",
"timestamp": 1749738638,
"tripId": "285008793",
"routeId": "202",
"startTime": "09:56:00",
"position": {
"lat": 45.45588,
"lon": -73.73198
},
"bearing": 44,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 40,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008793",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "202",
"routeLongName": "Dawson",
"shapeLink": "/storage/shapes/stm/2020187.json",
"shapeId": "2020187",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-16 06:07:05",
"meta": {}
},
{
"id": 9302,
"ref": "40165",
"isActive": true,
"label": "40165",
"timestamp": 1749738349,
"tripId": "285008690",
"routeId": "215",
"startTime": "09:38:00",
"position": {
"lat": 45.51349,
"lon": -73.68363
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 50,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008690",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "215",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/2150156.json",
"shapeId": "2150156",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-16 06:33:07",
"meta": {}
},
{
"id": 9304,
"ref": "40167",
"isActive": true,
"label": "40167",
"timestamp": 1749738632,
"tripId": "285007552",
"routeId": "164",
"startTime": "09:49:00",
"position": {
"lat": 45.55439,
"lon": -73.66859
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 47,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285007552",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "164",
"routeLongName": "Dudemaine",
"shapeLink": "/storage/shapes/stm/1640160.json",
"shapeId": "1640160",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-16 13:05:07",
"meta": {}
},
{
"id": 9317,
"ref": "40231",
"isActive": true,
"label": "40231",
"timestamp": 1749738634,
"tripId": "286570496",
"routeId": "61",
"startTime": "09:53:00",
"position": {
"lat": 45.48552,
"lon": -73.55778
},
"bearing": 26,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 44,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286570496",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "61",
"routeLongName": "Wellington",
"shapeLink": "/storage/shapes/stm/610123.json",
"shapeId": "610123",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-12-19 05:16:04",
"meta": {}
},
{
"id": 9320,
"ref": "40216",
"isActive": true,
"label": "40216",
"timestamp": 1749738641,
"tripId": "285008997",
"routeId": "225",
"startTime": "10:07:00",
"position": {
"lat": 45.50077,
"lon": -73.74702
},
"bearing": 225,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 26,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008997",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "225",
"routeLongName": "Hymus",
"shapeLink": "/storage/shapes/stm/2250139.json",
"shapeId": "2250139",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-22 06:22:06",
"meta": {}
},
{
"id": 9323,
"ref": "40209",
"isActive": true,
"label": "40209",
"timestamp": 1749738636,
"tripId": "285006468",
"routeId": "17",
"startTime": "10:00:00",
"position": {
"lat": 45.47269,
"lon": -73.61235
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 30,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285006468",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "17",
"routeLongName": "Décarie",
"shapeLink": "/storage/shapes/stm/170097.json",
"shapeId": "170097",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-23 06:26:09",
"meta": {}
},
{
"id": 9325,
"ref": "40170",
"isActive": true,
"label": "40170",
"timestamp": 1749738637,
"tripId": "285008048",
"routeId": "177",
"startTime": "10:18:00",
"position": {
"lat": 45.4921,
"lon": -73.7247
},
"bearing": 195,
"speed": 14,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 16,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008048",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "177",
"routeLongName": "Thimens",
"shapeLink": "/storage/shapes/stm/1770139.json",
"shapeId": "1770139",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-26 15:57:12",
"meta": {}
},
{
"id": 9329,
"ref": "40243",
"isActive": true,
"label": "40243",
"timestamp": 1749738640,
"tripId": "286570079",
"routeId": "36",
"startTime": "10:17:00",
"position": {
"lat": 45.45679,
"lon": -73.59538
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 9,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286570079",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "36",
"routeLongName": "Monk",
"shapeLink": "/storage/shapes/stm/360158.json",
"shapeId": "360158",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-12-29 14:29:10",
"meta": {}
},
{
"id": 9331,
"ref": "40247",
"isActive": true,
"label": "40247",
"timestamp": 1749738568,
"tripId": "286574160",
"routeId": "190",
"startTime": "09:57:00",
"position": {
"lat": 45.48268,
"lon": -73.58147
},
"bearing": 49,
"speed": 36,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 34,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286574160",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "190",
"routeLongName": "Norman",
"shapeLink": "/storage/shapes/stm/1900003.json",
"shapeId": "1900003",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-12-29 20:38:06",
"meta": {}
},
{
"id": 9336,
"ref": "40240",
"isActive": true,
"label": "40240",
"timestamp": 1749738643,
"tripId": "286570861",
"routeId": "101",
"startTime": "09:58:00",
"position": {
"lat": 45.45905,
"lon": -73.60831
},
"bearing": 66,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 32,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286570861",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "101",
"routeLongName": "Saint-Patrick",
"shapeLink": "/storage/shapes/stm/1010135.json",
"shapeId": "1010135",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2021-01-02 16:52:08",
"meta": {}
},
{
"id": 9351,
"ref": "40251",
"isActive": true,
"label": "40251",
"timestamp": 1749738374,
"tripId": "286572786",
"routeId": "106",
"startTime": "10:05:00",
"position": {
"lat": 45.42507,
"lon": -73.6498
},
"bearing": 20,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 26,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286572786",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "106",
"routeLongName": "Newman",
"shapeLink": "/storage/shapes/stm/1060135.json",
"shapeId": "1060135",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2021-01-13 16:01:15",
"meta": {}
},
{
"id": 9352,
"ref": "40244",
"isActive": true,
"label": "40244",
"timestamp": 1749738639,
"tripId": "286572242",
"routeId": "211",
"startTime": "10:07:00",
"position": {
"lat": 45.42847,
"lon": -73.83572
},
"bearing": 110,
"speed": 36,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 29,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286572242",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "211",
"routeLongName": "Bord-du-Lac",
"shapeLink": "/storage/shapes/stm/2110142.json",
"shapeId": "2110142",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2021-01-13 16:42:13",
"meta": {}
},
{
"id": 9358,
"ref": "40233",
"isActive": true,
"label": "40233",
"timestamp": 1749738641,
"tripId": "286572767",
"routeId": "110",
"startTime": "10:40:00",
"position": {
"lat": 45.43736,
"lon": -73.68871
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286572767",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "110",
"routeLongName": "Centrale",
"shapeLink": "/storage/shapes/stm/1100211.json",
"shapeId": "1100211",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2021-01-15 13:04:10",
"meta": {}
},
{
"id": 9740,
"ref": "40246",
"isActive": true,
"label": "40246",
"timestamp": 1749738364,
"tripId": "286571351",
"routeId": "102",
"startTime": "10:05:00",
"position": {
"lat": 45.47319,
"lon": -73.60532
},
"bearing": 38,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 25,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286571351",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "102",
"routeLongName": "Somerled",
"shapeLink": "/storage/shapes/stm/1020075.json",
"shapeId": "1020075",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2021-02-01 14:34:08",
"meta": {}
},
{
"id": 10677,
"ref": "41003",
"isActive": true,
"label": "41003",
"timestamp": 1749738640,
"tripId": "285001900",
"routeId": "51",
"startTime": "10:06:00",
"position": {
"lat": 45.49779,
"lon": -73.61986
},
"bearing": 121,
"speed": 36,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285001900",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": "/storage/shapes/stm/510191.json",
"shapeId": "510191",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2021-07-09 16:36:04",
"meta": {}
},
{
"id": 10678,
"ref": "41014",
"isActive": true,
"label": "41014",
"timestamp": 1749738634,
"tripId": "285002299",
"routeId": "51",
"startTime": "10:06:00",
"position": {
"lat": 45.49469,
"lon": -73.61929
},
"bearing": 33,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 29,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285002299",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": "/storage/shapes/stm/510185.json",
"shapeId": "510185",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2021-07-09 17:01:04",
"meta": {}
},
{
"id": 10682,
"ref": "41010",
"isActive": true,
"label": "41010",
"timestamp": 1749738395,
"tripId": "285001328",
"routeId": "27",
"startTime": "10:10:00",
"position": {
"lat": 45.55679,
"lon": -73.5662
},
"bearing": 293,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 22,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285001328",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "27",
"routeLongName": "Boulevard Saint-Joseph",
"shapeLink": "/storage/shapes/stm/270111.json",
"shapeId": "270111",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2021-07-12 16:32:04",
"meta": {}
},
{
"id": 10688,
"ref": "41024",
"isActive": true,
"label": "41024",
"timestamp": 1749738643,
"tripId": "285001513",
"routeId": "47",
"startTime": "10:18:00",
"position": {
"lat": 45.54341,
"lon": -73.57787
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 13,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285001513",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "47",
"routeLongName": "Masson",
"shapeLink": "/storage/shapes/stm/470114.json",
"shapeId": "470114",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2021-07-13 23:44:03",
"meta": {}
},
{
"id": 10689,
"ref": "41008",
"isActive": true,
"label": "41008",
"timestamp": 1749738645,
"tripId": "285001459",
"routeId": "47",
"startTime": "10:22:00",
"position": {
"lat": 45.53785,
"lon": -73.58523
},
"bearing": 124,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 8,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285001459",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "47",
"routeLongName": "Masson",
"shapeLink": "/storage/shapes/stm/470115.json",
"shapeId": "470115",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2021-07-14 06:04:03",
"meta": {}
},
{
"id": 10696,
"ref": "41011",
"isActive": true,
"label": "41011",
"timestamp": 1749738637,
"tripId": "285001882",
"routeId": "51",
"startTime": "09:57:00",
"position": {
"lat": 45.5089,
"lon": -73.61375
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 37,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285001882",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": "/storage/shapes/stm/510185.json",
"shapeId": "510185",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2021-07-16 16:55:05",
"meta": {}
},
{
"id": 10710,
"ref": "41026",
"isActive": true,
"label": "41026",
"timestamp": 1749738639,
"tripId": "285001694",
"routeId": "430",
"startTime": "10:05:00",
"position": {
"lat": 45.60783,
"lon": -73.51164
},
"bearing": 192,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 21,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285001694",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "430",
"routeLongName": "Express Pointe-aux-Trembles",
"shapeLink": "/storage/shapes/stm/4300151.json",
"shapeId": "4300151",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2021-07-22 16:58:05",
"meta": {}
},
{
"id": 10720,
"ref": "41018",
"isActive": true,
"label": "41018",
"timestamp": 1749738635,
"tripId": "285001969",
"routeId": "51",
"startTime": "09:41:00",
"position": {
"lat": 45.5195,
"lon": -73.59592
},
"bearing": 29,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 46,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285001969",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": "/storage/shapes/stm/510185.json",
"shapeId": "510185",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2021-07-24 08:44:04",
"meta": {}
},
{
"id": 10728,
"ref": "41017",
"isActive": true,
"label": "41017",
"timestamp": 1749738643,
"tripId": "285001173",
"routeId": "25",
"startTime": "10:24:00",
"position": {
"lat": 45.54301,
"lon": -73.56255
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 5,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285001173",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "25",
"routeLongName": "Angus",
"shapeLink": "/storage/shapes/stm/250054.json",
"shapeId": "250054",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2021-07-27 15:14:06",
"meta": {}
},
{
"id": 10748,
"ref": "41042",
"isActive": true,
"label": "41042",
"timestamp": 1749738648,
"tripId": "284739443",
"routeId": "180",
"startTime": "10:32:00",
"position": {
"lat": 45.5313,
"lon": -73.72341
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739443",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "180",
"routeLongName": "De Salaberry",
"shapeLink": "/storage/shapes/stm/1800111.json",
"shapeId": "1800111",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2021-08-03 17:50:05",
"meta": {}
},
{
"id": 10753,
"ref": "41007",
"isActive": true,
"label": "41007",
"timestamp": 1749738648,
"tripId": "285001001",
"routeId": "11",
"startTime": "10:14:00",
"position": {
"lat": 45.51664,
"lon": -73.58948
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 26,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285001001",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "11",
"routeLongName": "Parc-du-Mont-Royal / Ridgewood",
"shapeLink": "/storage/shapes/stm/110156.json",
"shapeId": "110156",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2021-08-05 05:56:04",
"meta": {}
},
{
"id": 10794,
"ref": "41029",
"isActive": true,
"label": "41029",
"timestamp": 1749738632,
"tripId": "285001300",
"routeId": "27",
"startTime": "10:09:00",
"position": {
"lat": 45.53761,
"lon": -73.57734
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 14,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
6
],
"trip": {
"id": "285001300",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "27",
"routeLongName": "Boulevard Saint-Joseph",
"shapeLink": "/storage/shapes/stm/270110.json",
"shapeId": "270110",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2021-08-25 13:36:05",
"meta": {}
},
{
"id": 10795,
"ref": "41049",
"isActive": true,
"label": "41049",
"timestamp": 1749738636,
"tripId": "284738922",
"routeId": "48",
"startTime": "09:42:00",
"position": {
"lat": 45.6479,
"lon": -73.56693
},
"bearing": 52,
"speed": 44,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 43,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284738922",
"headsign": "Est via Gouin / Ozias-Leduc",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": "/storage/shapes/stm/480413.json",
"shapeId": "480413",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2021-08-25 15:58:12",
"meta": {}
},
{
"id": 10807,
"ref": "41053",
"isActive": true,
"label": "41053",
"timestamp": 1749738638,
"tripId": "284739808",
"routeId": "45",
"startTime": "09:50:00",
"position": {
"lat": 45.53062,
"lon": -73.56965
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739808",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "45",
"routeLongName": "Papineau",
"shapeLink": "/storage/shapes/stm/450177.json",
"shapeId": "450177",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2021-09-01 16:12:05",
"meta": {}
},
{
"id": 10813,
"ref": "41052",
"isActive": true,
"label": "41052",
"timestamp": 1749738648,
"tripId": "284739924",
"routeId": "460",
"startTime": "09:19:00",
"position": {
"lat": 45.47136,
"lon": -73.71104
},
"bearing": 224,
"speed": 44,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739924",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "460",
"routeLongName": "Express Métropolitaine",
"shapeLink": "/storage/shapes/stm/4600351.json",
"shapeId": "4600351",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2021-09-02 14:59:05",
"meta": {}
},
{
"id": 10855,
"ref": "41054",
"isActive": true,
"label": "41054",
"timestamp": 1749738641,
"tripId": "284741161",
"routeId": "56",
"startTime": "10:33:00",
"position": {
"lat": 45.55622,
"lon": -73.66711
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284741161",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "56",
"routeLongName": "Saint-Hubert",
"shapeLink": "/storage/shapes/stm/560031.json",
"shapeId": "560031",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2021-09-08 06:39:06",
"meta": {}
},
{
"id": 10876,
"ref": "41059",
"isActive": true,
"label": "41059",
"timestamp": 1749738640,
"tripId": "284738459",
"routeId": "55",
"startTime": "10:00:00",
"position": {
"lat": 45.52556,
"lon": -73.60197
},
"bearing": 123,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 28,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284738459",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "55",
"routeLongName": "Boulevard Saint-Laurent",
"shapeLink": "/storage/shapes/stm/550145.json",
"shapeId": "550145",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2021-09-15 05:34:04",
"meta": {}
},
{
"id": 10887,
"ref": "41063",
"isActive": true,
"label": "41063",
"timestamp": 1749738644,
"tripId": "284739030",
"routeId": "55",
"startTime": "09:30:00",
"position": {
"lat": 45.51223,
"lon": -73.56876
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 46,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739030",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "55",
"routeLongName": "Boulevard Saint-Laurent",
"shapeLink": "/storage/shapes/stm/550145.json",
"shapeId": "550145",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2021-09-17 15:11:03",
"meta": {}
},
{
"id": 10896,
"ref": "41044",
"isActive": true,
"label": "41044",
"timestamp": 1749738641,
"tripId": "284737655",
"routeId": "55",
"startTime": "10:16:00",
"position": {
"lat": 45.547,
"lon": -73.65995
},
"bearing": 112,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 9,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284737655",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "55",
"routeLongName": "Boulevard Saint-Laurent",
"shapeLink": "/storage/shapes/stm/550145.json",
"shapeId": "550145",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2021-09-22 15:03:06",
"meta": {}
},
{
"id": 10910,
"ref": "41062",
"isActive": true,
"label": "41062",
"timestamp": 1749738643,
"tripId": "284739746",
"routeId": "180",
"startTime": "10:03:00",
"position": {
"lat": 45.53574,
"lon": -73.70268
},
"bearing": 225,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 22,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 5,
"label": "Full"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739746",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "180",
"routeLongName": "De Salaberry",
"shapeLink": "/storage/shapes/stm/1800112.json",
"shapeId": "1800112",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2021-09-30 15:12:10",
"meta": {}
},
{
"id": 10923,
"ref": "41046",
"isActive": true,
"label": "41046",
"timestamp": 1749738641,
"tripId": "284738672",
"routeId": "469",
"startTime": "10:30:00",
"position": {
"lat": 45.55657,
"lon": -73.66709
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284738672",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "469",
"routeLongName": "Express Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/4690080.json",
"shapeId": "4690080",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2021-10-05 06:45:16",
"meta": {}
},
{
"id": 10944,
"ref": "41070",
"isActive": true,
"label": "41070",
"timestamp": 1749738290,
"tripId": "284739847",
"routeId": "146",
"startTime": "09:53:00",
"position": {
"lat": 45.56058,
"lon": -73.66644
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 32,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739847",
"headsign": "Est destination Georges-Baril / Henri-Bourassa",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "146",
"routeLongName": "Christophe-Colomb / Meilleur",
"shapeLink": "/storage/shapes/stm/1460139.json",
"shapeId": "1460139",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2021-10-26 17:35:06",
"meta": {}
},
{
"id": 11048,
"ref": "41106",
"isActive": true,
"label": "41106",
"timestamp": 1749738633,
"tripId": "284739251",
"routeId": "469",
"startTime": "10:04:00",
"position": {
"lat": 45.5788,
"lon": -73.65308
},
"bearing": 209,
"speed": 36,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 18,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739251",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "469",
"routeLongName": "Express Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/4690081.json",
"shapeId": "4690081",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2022-01-28 04:56:03",
"meta": {}
},
{
"id": 11049,
"ref": "41113",
"isActive": true,
"label": "41113",
"timestamp": 1749738445,
"tripId": "284739167",
"routeId": "41",
"startTime": "09:30:00",
"position": {
"lat": 45.58777,
"lon": -73.6329
},
"bearing": 234,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 58,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739167",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "41",
"routeLongName": "Quartier Saint-Michel / Ahuntsic",
"shapeLink": "/storage/shapes/stm/410323.json",
"shapeId": "410323",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2022-01-28 05:13:05",
"meta": {}
},
{
"id": 11054,
"ref": "41095",
"isActive": true,
"label": "41095",
"timestamp": 1749738642,
"tripId": "284739079",
"routeId": "48",
"startTime": "10:03:00",
"position": {
"lat": 45.62323,
"lon": -73.62241
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 30,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739079",
"headsign": "Ouest via Gouin / Ozias-Leduc",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": "/storage/shapes/stm/480412.json",
"shapeId": "480412",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2022-01-28 15:32:04",
"meta": {}
},
{
"id": 11055,
"ref": "41079",
"isActive": true,
"label": "41079",
"timestamp": 1749738641,
"tripId": "284738868",
"routeId": "139",
"startTime": "10:03:00",
"position": {
"lat": 45.56899,
"lon": -73.59673
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284738868",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "139",
"routeLongName": "Pie-IX",
"shapeLink": "/storage/shapes/stm/1394411.json",
"shapeId": "1394411",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2022-01-28 16:04:04",
"meta": {}
},
{
"id": 11065,
"ref": "41078",
"isActive": true,
"label": "41078",
"timestamp": 1749738620,
"tripId": "284741067",
"routeId": "19",
"startTime": "10:06:00",
"position": {
"lat": 45.5452,
"lon": -73.64882
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 15,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284741067",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "19",
"routeLongName": "Chabanel / Marché Central",
"shapeLink": "/storage/shapes/stm/190036.json",
"shapeId": "190036",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2022-01-29 15:53:04",
"meta": {}
},
{
"id": 11076,
"ref": "41089",
"isActive": true,
"label": "41089",
"timestamp": 1749738633,
"tripId": "284739778",
"routeId": "460",
"startTime": "09:35:00",
"position": {
"lat": 45.58666,
"lon": -73.58471
},
"bearing": 32,
"speed": 54,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 34,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739778",
"headsign": "Est via Jarry",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "460",
"routeLongName": "Express Métropolitaine",
"shapeLink": "/storage/shapes/stm/4600343.json",
"shapeId": "4600343",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2022-02-07 07:59:09",
"meta": {}
},
{
"id": 11077,
"ref": "41120",
"isActive": true,
"label": "41120",
"timestamp": 1749738634,
"tripId": "284739569",
"routeId": "469",
"startTime": "10:00:00",
"position": {
"lat": 45.61494,
"lon": -73.619
},
"bearing": 318,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 14,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739569",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "469",
"routeLongName": "Express Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/4690080.json",
"shapeId": "4690080",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2022-02-07 08:11:04",
"meta": {}
},
{
"id": 11083,
"ref": "41128",
"isActive": true,
"label": "41128",
"timestamp": 1749738631,
"tripId": "284739675",
"routeId": "180",
"startTime": "10:02:00",
"position": {
"lat": 45.54203,
"lon": -73.67594
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 21,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739675",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "180",
"routeLongName": "De Salaberry",
"shapeLink": "/storage/shapes/stm/1800111.json",
"shapeId": "1800111",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2022-02-10 05:03:04",
"meta": {}
},
{
"id": 11084,
"ref": "41077",
"isActive": true,
"label": "41077",
"timestamp": 1749738647,
"tripId": "284738719",
"routeId": "193",
"startTime": "10:15:00",
"position": {
"lat": 45.54782,
"lon": -73.62495
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 13,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284738719",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "193",
"routeLongName": "Jarry",
"shapeLink": "/storage/shapes/stm/1930136.json",
"shapeId": "1930136",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2022-02-10 15:40:05",
"meta": {}
},
{
"id": 11098,
"ref": "41097",
"isActive": true,
"label": "41097",
"timestamp": 1749738634,
"tripId": "284738142",
"routeId": "48",
"startTime": "09:57:00",
"position": {
"lat": 45.62706,
"lon": -73.61524
},
"bearing": 44,
"speed": 12,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 21,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284738142",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": "/storage/shapes/stm/480414.json",
"shapeId": "480414",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2022-02-17 04:23:04",
"meta": {}
},
{
"id": 11145,
"ref": "41129",
"isActive": true,
"label": "41129",
"timestamp": 1749738633,
"tripId": "284737916",
"routeId": "140",
"startTime": "10:04:00",
"position": {
"lat": 45.5729,
"lon": -73.64972
},
"bearing": 211,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 29,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284737916",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "140",
"routeLongName": "Fleury",
"shapeLink": "/storage/shapes/stm/1400134.json",
"shapeId": "1400134",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2022-03-22 17:24:04",
"meta": {}
},
{
"id": 11160,
"ref": "41099",
"isActive": true,
"label": "41099",
"timestamp": 1749738642,
"tripId": "284738403",
"routeId": "55",
"startTime": "09:29:00",
"position": {
"lat": 45.55454,
"lon": -73.6685
},
"bearing": 25,
"speed": 36,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 50,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284738403",
"headsign": "Nord",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "55",
"routeLongName": "Boulevard Saint-Laurent",
"shapeLink": "/storage/shapes/stm/550147.json",
"shapeId": "550147",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2022-04-04 07:19:04",
"meta": {}
},
{
"id": 11162,
"ref": "41090",
"isActive": true,
"label": "41090",
"timestamp": 1749738640,
"tripId": "284738780",
"routeId": "41",
"startTime": "09:41:00",
"position": {
"lat": 45.56127,
"lon": -73.65731
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 48,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284738780",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "41",
"routeLongName": "Quartier Saint-Michel / Ahuntsic",
"shapeLink": "/storage/shapes/stm/410320.json",
"shapeId": "410320",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2022-04-05 14:48:04",
"meta": {}
},
{
"id": 12442,
"ref": "42003",
"isActive": true,
"label": "42003",
"timestamp": 1749738639,
"tripId": "284739704",
"routeId": "193",
"startTime": "09:55:00",
"position": {
"lat": 45.57748,
"lon": -73.59741
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739704",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "193",
"routeLongName": "Jarry",
"shapeLink": "/storage/shapes/stm/1930136.json",
"shapeId": "1930136",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2022-08-31 14:04:05",
"meta": {}
},
{
"id": 12615,
"ref": "42013",
"isActive": true,
"label": "42013",
"timestamp": 1749738630,
"tripId": "284738217",
"routeId": "48",
"startTime": "10:16:00",
"position": {
"lat": 45.63763,
"lon": -73.59872
},
"bearing": 228,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284738217",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": "/storage/shapes/stm/480411.json",
"shapeId": "480411",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2022-09-30 04:54:04",
"meta": {}
},
{
"id": 12621,
"ref": "42007",
"isActive": true,
"label": "42007",
"timestamp": 1749738648,
"tripId": "284739128",
"routeId": "55",
"startTime": "09:46:00",
"position": {
"lat": 45.54129,
"lon": -73.63931
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739128",
"headsign": "Nord",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "55",
"routeLongName": "Boulevard Saint-Laurent",
"shapeLink": "/storage/shapes/stm/550147.json",
"shapeId": "550147",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2022-10-03 08:28:06",
"meta": {}
},
{
"id": 12625,
"ref": "42010",
"isActive": true,
"label": "42010",
"timestamp": 1749738636,
"tripId": "284739603",
"routeId": "41",
"startTime": "10:11:00",
"position": {
"lat": 45.55904,
"lon": -73.59816
},
"bearing": 214,
"speed": 6,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 21,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739603",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "41",
"routeLongName": "Quartier Saint-Michel / Ahuntsic",
"shapeLink": "/storage/shapes/stm/410320.json",
"shapeId": "410320",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2022-10-03 16:14:07",
"meta": {}
},
{
"id": 12631,
"ref": "42009",
"isActive": true,
"label": "42009",
"timestamp": 1749738644,
"tripId": "284739830",
"routeId": "45",
"startTime": "09:59:00",
"position": {
"lat": 45.54831,
"lon": -73.60787
},
"bearing": 293,
"speed": 12,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 21,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739830",
"headsign": "Nord",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "45",
"routeLongName": "Papineau",
"shapeLink": "/storage/shapes/stm/450176.json",
"shapeId": "450176",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2022-10-04 15:08:06",
"meta": {}
},
{
"id": 12637,
"ref": "42032",
"isActive": true,
"label": "42032",
"timestamp": 1749738630,
"tripId": "285282365",
"routeId": "136",
"startTime": "09:08:00",
"position": {
"lat": 45.5964,
"lon": -73.5342
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "285282365",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "136",
"routeLongName": "Viau",
"shapeLink": "/storage/shapes/stm/1360112.json",
"shapeId": "1360112",
"serviceId": "25M-H59M000S-81-S",
"blockId": null
},
"createdAt": "2022-10-05 06:23:04",
"meta": {}
},
{
"id": 12640,
"ref": "42035",
"isActive": true,
"label": "42035",
"timestamp": 1749738644,
"tripId": "284737950",
"routeId": "139",
"startTime": "07:28:00",
"position": {
"lat": 45.53215,
"lon": -73.54874
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 11,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284737950",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "139",
"routeLongName": "Pie-IX",
"shapeLink": "/storage/shapes/stm/1394411.json",
"shapeId": "1394411",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2022-10-05 15:13:06",
"meta": {}
},
{
"id": 12651,
"ref": "42021",
"isActive": true,
"label": "42021",
"timestamp": 1749738639,
"tripId": "285001786",
"routeId": "51",
"startTime": "10:37:00",
"position": {
"lat": 45.45564,
"lon": -73.64095
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "285001786",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": "/storage/shapes/stm/510185.json",
"shapeId": "510185",
"serviceId": "25M-H57M000S-81-S",
"blockId": null
},
"createdAt": "2022-10-07 16:17:08",
"meta": {}
},
{
"id": 12656,
"ref": "42040",
"isActive": true,
"label": "42040",
"timestamp": 1749738643,
"tripId": "284739629",
"routeId": "54",
"startTime": "09:58:00",
"position": {
"lat": 45.56029,
"lon": -73.63484
},
"bearing": 302,
"speed": 54,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 34,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739629",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "54",
"routeLongName": "Charland / Chabanel",
"shapeLink": "/storage/shapes/stm/540154.json",
"shapeId": "540154",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2022-10-10 15:35:06",
"meta": {}
},
{
"id": 12661,
"ref": "42043",
"isActive": true,
"label": "42043",
"timestamp": 1749738632,
"tripId": "284737762",
"routeId": "45",
"startTime": "10:30:00",
"position": {
"lat": 45.5754,
"lon": -73.65138
},
"bearing": 120,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284737762",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "45",
"routeLongName": "Papineau",
"shapeLink": "/storage/shapes/stm/450177.json",
"shapeId": "450177",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2022-10-12 05:43:04",
"meta": {}
},
{
"id": 12708,
"ref": "42017",
"isActive": true,
"label": "42017",
"timestamp": 1749738638,
"tripId": "284739648",
"routeId": "55",
"startTime": "10:21:00",
"position": {
"lat": 45.51207,
"lon": -73.56962
},
"bearing": 197,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 51,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739648",
"headsign": "Nord",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "55",
"routeLongName": "Boulevard Saint-Laurent",
"shapeLink": "/storage/shapes/stm/550147.json",
"shapeId": "550147",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2022-10-27 06:26:05",
"meta": {}
},
{
"id": 12734,
"ref": "42044",
"isActive": true,
"label": "42044",
"timestamp": 1749738647,
"tripId": "284738323",
"routeId": "139",
"startTime": "10:00:00",
"position": {
"lat": 45.56144,
"lon": -73.57623
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 27,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284738323",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "139",
"routeLongName": "Pie-IX",
"shapeLink": "/storage/shapes/stm/1394410.json",
"shapeId": "1394410",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2022-11-15 06:32:06",
"meta": {}
},
{
"id": 12744,
"ref": "42049",
"isActive": true,
"label": "42049",
"timestamp": 1749738631,
"tripId": "284739472",
"routeId": "193",
"startTime": "09:45:00",
"position": {
"lat": 45.5312,
"lon": -73.63944
},
"bearing": 291,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 49,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": "284739472",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "193",
"routeLongName": "Jarry",
"shapeLink": "/storage/shapes/stm/1930135.json",
"shapeId": "1930135",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2022-11-18 14:46:03",
"meta": {}
},
{
"id": 2928814,
"ref": "44009",
"isActive": true,
"label": "44009",
"timestamp": 1749738633,
"tripId": "286572001",
"routeId": "107",
"startTime": "10:25:00",
"position": {
"lat": 45.49658,
"lon": -73.55561
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 7,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286572001",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "107",
"routeLongName": "Verdun",
"shapeLink": "/storage/shapes/stm/1070141.json",
"shapeId": "1070141",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2024-12-18 16:46:06",
"meta": {}
},
{
"id": 2928815,
"ref": "44011",
"isActive": true,
"label": "44011",
"timestamp": 1749738643,
"tripId": "286571727",
"routeId": "38",
"startTime": "10:07:00",
"position": {
"lat": 45.46174,
"lon": -73.56338
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286571727",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "38",
"routeLongName": "De l'Église",
"shapeLink": "/storage/shapes/stm/380009.json",
"shapeId": "380009",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2024-12-18 22:00:08",
"meta": {}
},
{
"id": 2928821,
"ref": "44004",
"isActive": true,
"label": "44004",
"timestamp": 1749738642,
"tripId": "286570105",
"routeId": "36",
"startTime": "09:52:00",
"position": {
"lat": 45.50074,
"lon": -73.56499
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 38,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286570105",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "36",
"routeLongName": "Monk",
"shapeLink": "/storage/shapes/stm/360158.json",
"shapeId": "360158",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2024-12-19 17:08:06",
"meta": {}
},
{
"id": 2928839,
"ref": "44003",
"isActive": true,
"label": "44003",
"timestamp": 1749738643,
"tripId": "286574189",
"routeId": "405",
"startTime": "10:10:00",
"position": {
"lat": 45.44118,
"lon": -73.81499
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 27,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286574189",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "405",
"routeLongName": "Express Bord-du-Lac",
"shapeLink": "/storage/shapes/stm/4050077.json",
"shapeId": "4050077",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2024-12-23 15:50:07",
"meta": {}
},
{
"id": 2928924,
"ref": "44017",
"isActive": true,
"label": "44017",
"timestamp": 1749738637,
"tripId": "286574521",
"routeId": "496",
"startTime": "09:58:00",
"position": {
"lat": 45.4411,
"lon": -73.65063
},
"bearing": 251,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286574521",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "496",
"routeLongName": "Express Victoria",
"shapeLink": "/storage/shapes/stm/4960099.json",
"shapeId": "4960099",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2025-01-22 16:06:04",
"meta": {}
},
{
"id": 2928926,
"ref": "44013",
"isActive": true,
"label": "44013",
"timestamp": 1749738638,
"tripId": "286571828",
"routeId": "106",
"startTime": "10:20:00",
"position": {
"lat": 45.43085,
"lon": -73.63388
},
"bearing": 62,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 15,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286571828",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "106",
"routeLongName": "Newman",
"shapeLink": "/storage/shapes/stm/1060134.json",
"shapeId": "1060134",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2025-01-23 15:40:07",
"meta": {}
},
{
"id": 2928928,
"ref": "44010",
"isActive": true,
"label": "44010",
"timestamp": 1749738241,
"tripId": "286571040",
"routeId": "90",
"startTime": "09:33:00",
"position": {
"lat": 45.48851,
"lon": -73.58546
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 53,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286571040",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "90",
"routeLongName": "Saint-Jacques",
"shapeLink": "/storage/shapes/stm/900252.json",
"shapeId": "900252",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2025-01-24 07:40:05",
"meta": {}
},
{
"id": 2928930,
"ref": "44016",
"isActive": true,
"label": "44016",
"timestamp": 1749738636,
"tripId": "286573635",
"routeId": "37",
"startTime": "10:12:00",
"position": {
"lat": 45.45714,
"lon": -73.58486
},
"bearing": 274,
"speed": 12,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 15,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286573635",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "37",
"routeLongName": "Jolicoeur",
"shapeLink": "/storage/shapes/stm/370159.json",
"shapeId": "370159",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2025-01-24 17:27:05",
"meta": {}
},
{
"id": 2928981,
"ref": "44026",
"isActive": true,
"label": "44026",
"timestamp": 1749738635,
"tripId": "286572363",
"routeId": "110",
"startTime": "10:10:00",
"position": {
"lat": 45.43824,
"lon": -73.67262
},
"bearing": 181,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 17,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286572363",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "110",
"routeLongName": "Centrale",
"shapeLink": "/storage/shapes/stm/1100211.json",
"shapeId": "1100211",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2025-02-20 15:11:05",
"meta": {}
},
{
"id": 2928982,
"ref": "44005",
"isActive": true,
"label": "44005",
"timestamp": 1749738608,
"tripId": "286574138",
"routeId": "211",
"startTime": "09:25:00",
"position": {
"lat": 45.40375,
"lon": -73.93988
},
"bearing": 235,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 47,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286574138",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "211",
"routeLongName": "Bord-du-Lac",
"shapeLink": "/storage/shapes/stm/2110143.json",
"shapeId": "2110143",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2025-02-20 16:06:06",
"meta": {}
},
{
"id": 2929024,
"ref": "44007",
"isActive": true,
"label": "44007",
"timestamp": 1749738643,
"tripId": "286573322",
"routeId": "211",
"startTime": "09:35:00",
"position": {
"lat": 45.47477,
"lon": -73.59566
},
"bearing": 17,
"speed": 72,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 47,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286573322",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "211",
"routeLongName": "Bord-du-Lac",
"shapeLink": "/storage/shapes/stm/2110142.json",
"shapeId": "2110142",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2025-03-06 11:46:06",
"meta": {}
},
{
"id": 2929051,
"ref": "44025",
"isActive": true,
"label": "44025",
"timestamp": 1749738500,
"tripId": "286574095",
"routeId": "491",
"startTime": "10:07:00",
"position": {
"lat": 45.48294,
"lon": -73.58101
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 8,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286574095",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "491",
"routeLongName": "Express Provost",
"shapeLink": "/storage/shapes/stm/4910081.json",
"shapeId": "4910081",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2025-03-17 15:43:07",
"meta": {}
},
{
"id": 2929150,
"ref": "44032",
"isActive": true,
"label": "44032",
"timestamp": 1749738633,
"tripId": "286572350",
"routeId": "405",
"startTime": "09:50:00",
"position": {
"lat": 45.47209,
"lon": -73.59692
},
"bearing": 17,
"speed": 72,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": "286572350",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "405",
"routeLongName": "Express Bord-du-Lac",
"shapeLink": "/storage/shapes/stm/4050077.json",
"shapeId": "4050077",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2025-04-16 08:53:08",
"meta": {}
},
{
"id": 2929157,
"ref": "44022",
"isActive": true,
"label": "44022",
"timestamp": 1749738116,
"tripId": "286573371",
"routeId": "113",
"startTime": "09:54:00",
"position": {
"lat": 45.42506,
"lon": -73.64837
},
"bearing": 28,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 28,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": "286573371",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "113",
"routeLongName": "Lapierre",
"shapeLink": "/storage/shapes/stm/1130161.json",
"shapeId": "1130161",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2025-04-17 05:18:06",
"meta": {}
},
{
"id": 2929190,
"ref": "44029",
"isActive": true,
"label": "44029",
"timestamp": 1749738646,
"tripId": "910754",
"routeId": "90",
"startTime": "10:32:00",
"position": {
"lat": 45.44303,
"lon": -73.68033
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "90",
"routeLongName": "Saint-Jacques",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2025-05-01 05:46:07",
"meta": {}
}
],
"timestamp": 1749738648,
"count": 477,
"geojson": {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"id": 111,
"label": "27520",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57852,
45.49535
]
}
},
{
"type": "Feature",
"properties": {
"id": 126,
"label": "28030",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55353,
45.52313
]
}
},
{
"type": "Feature",
"properties": {
"id": 128,
"label": "28033",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68829,
45.51781
]
}
},
{
"type": "Feature",
"properties": {
"id": 133,
"label": "28048",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55314,
45.47974
]
}
},
{
"type": "Feature",
"properties": {
"id": 154,
"label": "28107",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65036,
45.58415
]
}
},
{
"type": "Feature",
"properties": {
"id": 166,
"label": "28131",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.78773,
45.46674
]
}
},
{
"type": "Feature",
"properties": {
"id": 172,
"label": "29017",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63349,
45.54859
]
}
},
{
"type": "Feature",
"properties": {
"id": 173,
"label": "29018",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63209,
45.50096
]
}
},
{
"type": "Feature",
"properties": {
"id": 189,
"label": "29064",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54543,
45.46798
]
}
},
{
"type": "Feature",
"properties": {
"id": 191,
"label": "29070",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.81498,
45.46266
]
}
},
{
"type": "Feature",
"properties": {
"id": 200,
"label": "29085",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.73917,
45.44784
]
}
},
{
"type": "Feature",
"properties": {
"id": 205,
"label": "29092",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60476,
45.47366
]
}
},
{
"type": "Feature",
"properties": {
"id": 207,
"label": "29098",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65754,
45.44792
]
}
},
{
"type": "Feature",
"properties": {
"id": 213,
"label": "29125",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.574,
45.50159
]
}
},
{
"type": "Feature",
"properties": {
"id": 218,
"label": "29138",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59868,
45.47699
]
}
},
{
"type": "Feature",
"properties": {
"id": 219,
"label": "29139",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56932,
45.50294
]
}
},
{
"type": "Feature",
"properties": {
"id": 220,
"label": "29140",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63377,
45.44515
]
}
},
{
"type": "Feature",
"properties": {
"id": 226,
"label": "29147",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59846,
45.47164
]
}
},
{
"type": "Feature",
"properties": {
"id": 238,
"label": "29825",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.70981,
45.49798
]
}
},
{
"type": "Feature",
"properties": {
"id": 242,
"label": "29831",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5595,
45.55625
]
}
},
{
"type": "Feature",
"properties": {
"id": 260,
"label": "30007",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64458,
45.51842
]
}
},
{
"type": "Feature",
"properties": {
"id": 267,
"label": "30050",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56869,
45.54187
]
}
},
{
"type": "Feature",
"properties": {
"id": 278,
"label": "30090",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58653,
45.52648
]
}
},
{
"type": "Feature",
"properties": {
"id": 285,
"label": "30111",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53971,
45.58947
]
}
},
{
"type": "Feature",
"properties": {
"id": 287,
"label": "30118",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56798,
45.59034
]
}
},
{
"type": "Feature",
"properties": {
"id": 293,
"label": "30138",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53789,
45.60696
]
}
},
{
"type": "Feature",
"properties": {
"id": 296,
"label": "30141",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62185,
45.59901
]
}
},
{
"type": "Feature",
"properties": {
"id": 297,
"label": "30144",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53078,
45.6037
]
}
},
{
"type": "Feature",
"properties": {
"id": 300,
"label": "30149",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56958,
45.56543
]
}
},
{
"type": "Feature",
"properties": {
"id": 301,
"label": "30150",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60142,
45.532
]
}
},
{
"type": "Feature",
"properties": {
"id": 302,
"label": "30152",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.79904,
45.47198
]
}
},
{
"type": "Feature",
"properties": {
"id": 304,
"label": "30155",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54575,
45.59611
]
}
},
{
"type": "Feature",
"properties": {
"id": 310,
"label": "30174",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.82232,
45.50926
]
}
},
{
"type": "Feature",
"properties": {
"id": 311,
"label": "30179",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.67268,
45.50779
]
}
},
{
"type": "Feature",
"properties": {
"id": 313,
"label": "30185",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61919,
45.60604
]
}
},
{
"type": "Feature",
"properties": {
"id": 315,
"label": "30193",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55576,
45.61155
]
}
},
{
"type": "Feature",
"properties": {
"id": 319,
"label": "30201",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.74559,
45.4904
]
}
},
{
"type": "Feature",
"properties": {
"id": 325,
"label": "30232",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.73373,
45.50336
]
}
},
{
"type": "Feature",
"properties": {
"id": 326,
"label": "30234",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.73937,
45.49271
]
}
},
{
"type": "Feature",
"properties": {
"id": 331,
"label": "30248",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.76888,
45.50762
]
}
},
{
"type": "Feature",
"properties": {
"id": 334,
"label": "30254",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68414,
45.51518
]
}
},
{
"type": "Feature",
"properties": {
"id": 335,
"label": "30255",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.73296,
45.48754
]
}
},
{
"type": "Feature",
"properties": {
"id": 355,
"label": "30847",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63491,
45.57537
]
}
},
{
"type": "Feature",
"properties": {
"id": 364,
"label": "30874",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64526,
45.5688
]
}
},
{
"type": "Feature",
"properties": {
"id": 367,
"label": "30879",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64777,
45.58223
]
}
},
{
"type": "Feature",
"properties": {
"id": 372,
"label": "31012",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61517,
45.53993
]
}
},
{
"type": "Feature",
"properties": {
"id": 373,
"label": "31013",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62733,
45.49878
]
}
},
{
"type": "Feature",
"properties": {
"id": 375,
"label": "31019",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59505,
45.56956
]
}
},
{
"type": "Feature",
"properties": {
"id": 380,
"label": "31040",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.67303,
45.50823
]
}
},
{
"type": "Feature",
"properties": {
"id": 381,
"label": "31042",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5501,
45.62434
]
}
},
{
"type": "Feature",
"properties": {
"id": 387,
"label": "31052",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54971,
45.52768
]
}
},
{
"type": "Feature",
"properties": {
"id": 388,
"label": "31058",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54692,
45.56121
]
}
},
{
"type": "Feature",
"properties": {
"id": 398,
"label": "31096",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61007,
45.53917
]
}
},
{
"type": "Feature",
"properties": {
"id": 405,
"label": "31117",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63626,
45.60113
]
}
},
{
"type": "Feature",
"properties": {
"id": 413,
"label": "31139",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56591,
45.57923
]
}
},
{
"type": "Feature",
"properties": {
"id": 414,
"label": "31141",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65085,
45.53852
]
}
},
{
"type": "Feature",
"properties": {
"id": 417,
"label": "31146",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56511,
45.51083
]
}
},
{
"type": "Feature",
"properties": {
"id": 420,
"label": "31151",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57339,
45.50507
]
}
},
{
"type": "Feature",
"properties": {
"id": 423,
"label": "31157",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.49561,
45.65036
]
}
},
{
"type": "Feature",
"properties": {
"id": 425,
"label": "31161",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58796,
45.49121
]
}
},
{
"type": "Feature",
"properties": {
"id": 426,
"label": "31162",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.50961,
45.59533
]
}
},
{
"type": "Feature",
"properties": {
"id": 429,
"label": "31170",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59694,
45.58722
]
}
},
{
"type": "Feature",
"properties": {
"id": 432,
"label": "31174",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58031,
45.50695
]
}
},
{
"type": "Feature",
"properties": {
"id": 436,
"label": "31187",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5937,
45.59992
]
}
},
{
"type": "Feature",
"properties": {
"id": 442,
"label": "31204",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60755,
45.53122
]
}
},
{
"type": "Feature",
"properties": {
"id": 448,
"label": "31222",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58105,
45.56103
]
}
},
{
"type": "Feature",
"properties": {
"id": 449,
"label": "31224",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54677,
45.56916
]
}
},
{
"type": "Feature",
"properties": {
"id": 450,
"label": "31225",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59522,
45.5507
]
}
},
{
"type": "Feature",
"properties": {
"id": 452,
"label": "31228",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55475,
45.56538
]
}
},
{
"type": "Feature",
"properties": {
"id": 462,
"label": "31815",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.87239,
45.47345
]
}
},
{
"type": "Feature",
"properties": {
"id": 463,
"label": "31816",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64593,
45.53431
]
}
},
{
"type": "Feature",
"properties": {
"id": 467,
"label": "31826",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59522,
45.55781
]
}
},
{
"type": "Feature",
"properties": {
"id": 471,
"label": "31834",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55235,
45.54897
]
}
},
{
"type": "Feature",
"properties": {
"id": 472,
"label": "31835",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64207,
45.59629
]
}
},
{
"type": "Feature",
"properties": {
"id": 474,
"label": "31840",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63238,
45.60243
]
}
},
{
"type": "Feature",
"properties": {
"id": 477,
"label": "31843",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6562,
45.55051
]
}
},
{
"type": "Feature",
"properties": {
"id": 482,
"label": "31854",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65056,
45.58398
]
}
},
{
"type": "Feature",
"properties": {
"id": 484,
"label": "31857",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55136,
45.54692
]
}
},
{
"type": "Feature",
"properties": {
"id": 488,
"label": "32006",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59792,
45.53164
]
}
},
{
"type": "Feature",
"properties": {
"id": 495,
"label": "32023",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58812,
45.62073
]
}
},
{
"type": "Feature",
"properties": {
"id": 498,
"label": "32030",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68871,
45.53803
]
}
},
{
"type": "Feature",
"properties": {
"id": 499,
"label": "32801",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53585,
45.54782
]
}
},
{
"type": "Feature",
"properties": {
"id": 501,
"label": "32805",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66756,
45.55614
]
}
},
{
"type": "Feature",
"properties": {
"id": 507,
"label": "33804",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.73875,
45.49029
]
}
},
{
"type": "Feature",
"properties": {
"id": 511,
"label": "33817",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61941,
45.49504
]
}
},
{
"type": "Feature",
"properties": {
"id": 512,
"label": "33825",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57176,
45.50859
]
}
},
{
"type": "Feature",
"properties": {
"id": 520,
"label": "33838",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68372,
45.51342
]
}
},
{
"type": "Feature",
"properties": {
"id": 522,
"label": "36003",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54871,
45.66846
]
}
},
{
"type": "Feature",
"properties": {
"id": 524,
"label": "36008",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60599,
45.56779
]
}
},
{
"type": "Feature",
"properties": {
"id": 530,
"label": "36024",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57127,
45.6592
]
}
},
{
"type": "Feature",
"properties": {
"id": 541,
"label": "37011",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63105,
45.46262
]
}
},
{
"type": "Feature",
"properties": {
"id": 542,
"label": "37014",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66418,
45.50677
]
}
},
{
"type": "Feature",
"properties": {
"id": 546,
"label": "37028",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60424,
45.52826
]
}
},
{
"type": "Feature",
"properties": {
"id": 548,
"label": "37035",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62862,
45.51027
]
}
},
{
"type": "Feature",
"properties": {
"id": 553,
"label": "37043",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.90163,
45.43764
]
}
},
{
"type": "Feature",
"properties": {
"id": 557,
"label": "37056",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56168,
45.51559
]
}
},
{
"type": "Feature",
"properties": {
"id": 561,
"label": "37069",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.85016,
45.45893
]
}
},
{
"type": "Feature",
"properties": {
"id": 568,
"label": "37081",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60564,
45.52356
]
}
},
{
"type": "Feature",
"properties": {
"id": 569,
"label": "37082",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.70069,
45.47514
]
}
},
{
"type": "Feature",
"properties": {
"id": 570,
"label": "37090",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.70144,
45.5063
]
}
},
{
"type": "Feature",
"properties": {
"id": 572,
"label": "37095",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.71011,
45.52542
]
}
},
{
"type": "Feature",
"properties": {
"id": 576,
"label": "38006",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58588,
45.58118
]
}
},
{
"type": "Feature",
"properties": {
"id": 582,
"label": "38023",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5488,
45.5319
]
}
},
{
"type": "Feature",
"properties": {
"id": 584,
"label": "38027",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54174,
45.59849
]
}
},
{
"type": "Feature",
"properties": {
"id": 587,
"label": "38038",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.69335,
45.44787
]
}
},
{
"type": "Feature",
"properties": {
"id": 590,
"label": "38046",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6839,
45.51327
]
}
},
{
"type": "Feature",
"properties": {
"id": 591,
"label": "38047",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.86952,
45.49183
]
}
},
{
"type": "Feature",
"properties": {
"id": 593,
"label": "38052",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.8252,
45.43072
]
}
},
{
"type": "Feature",
"properties": {
"id": 595,
"label": "38055",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.84885,
45.48701
]
}
},
{
"type": "Feature",
"properties": {
"id": 602,
"label": "38072",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.71857,
45.53122
]
}
},
{
"type": "Feature",
"properties": {
"id": 604,
"label": "38076",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.69688,
45.46941
]
}
},
{
"type": "Feature",
"properties": {
"id": 606,
"label": "38085",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.83169,
45.46613
]
}
},
{
"type": "Feature",
"properties": {
"id": 609,
"label": "38089",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.51265,
45.60275
]
}
},
{
"type": "Feature",
"properties": {
"id": 613,
"label": "38094",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53103,
45.51162
]
}
},
{
"type": "Feature",
"properties": {
"id": 616,
"label": "38099",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55254,
45.44886
]
}
},
{
"type": "Feature",
"properties": {
"id": 617,
"label": "38100",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60503,
45.47762
]
}
},
{
"type": "Feature",
"properties": {
"id": 622,
"label": "39011",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56026,
45.51492
]
}
},
{
"type": "Feature",
"properties": {
"id": 624,
"label": "39015",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57448,
45.48687
]
}
},
{
"type": "Feature",
"properties": {
"id": 626,
"label": "39022",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55148,
45.52534
]
}
},
{
"type": "Feature",
"properties": {
"id": 635,
"label": "39043",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.49693,
45.63048
]
}
},
{
"type": "Feature",
"properties": {
"id": 636,
"label": "39045",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55947,
45.66116
]
}
},
{
"type": "Feature",
"properties": {
"id": 639,
"label": "39049",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53465,
45.5965
]
}
},
{
"type": "Feature",
"properties": {
"id": 648,
"label": "39067",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54982,
45.5779
]
}
},
{
"type": "Feature",
"properties": {
"id": 667,
"label": "39115",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64662,
45.59041
]
}
},
{
"type": "Feature",
"properties": {
"id": 671,
"label": "39123",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57413,
45.58051
]
}
},
{
"type": "Feature",
"properties": {
"id": 829,
"label": "29838",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58874,
45.56549
]
}
},
{
"type": "Feature",
"properties": {
"id": 836,
"label": "31065",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54662,
45.66577
]
}
},
{
"type": "Feature",
"properties": {
"id": 837,
"label": "31067",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61833,
45.55399
]
}
},
{
"type": "Feature",
"properties": {
"id": 848,
"label": "36016",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56471,
45.61774
]
}
},
{
"type": "Feature",
"properties": {
"id": 849,
"label": "36035",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.49776,
45.68998
]
}
},
{
"type": "Feature",
"properties": {
"id": 852,
"label": "37018",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66083,
45.47672
]
}
},
{
"type": "Feature",
"properties": {
"id": 857,
"label": "38009",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55535,
45.48707
]
}
},
{
"type": "Feature",
"properties": {
"id": 861,
"label": "39024",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5806,
45.53898
]
}
},
{
"type": "Feature",
"properties": {
"id": 862,
"label": "39025",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60117,
45.48098
]
}
},
{
"type": "Feature",
"properties": {
"id": 1048,
"label": "36013",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55808,
45.60817
]
}
},
{
"type": "Feature",
"properties": {
"id": 1083,
"label": "29067",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65165,
45.4409
]
}
},
{
"type": "Feature",
"properties": {
"id": 1098,
"label": "30083",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.51908,
45.59843
]
}
},
{
"type": "Feature",
"properties": {
"id": 1108,
"label": "38068",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68504,
45.51575
]
}
},
{
"type": "Feature",
"properties": {
"id": 1109,
"label": "39114",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56348,
45.65894
]
}
},
{
"type": "Feature",
"properties": {
"id": 1110,
"label": "27534",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5818,
45.45704
]
}
},
{
"type": "Feature",
"properties": {
"id": 1114,
"label": "39039",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56009,
45.53922
]
}
},
{
"type": "Feature",
"properties": {
"id": 1125,
"label": "38075",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.81424,
45.51082
]
}
},
{
"type": "Feature",
"properties": {
"id": 1128,
"label": "31137",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6075,
45.56248
]
}
},
{
"type": "Feature",
"properties": {
"id": 1131,
"label": "37070",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.70094,
45.50649
]
}
},
{
"type": "Feature",
"properties": {
"id": 1134,
"label": "29100",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55779,
45.48486
]
}
},
{
"type": "Feature",
"properties": {
"id": 1137,
"label": "30023",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60311,
45.4793
]
}
},
{
"type": "Feature",
"properties": {
"id": 1145,
"label": "37102",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.67175,
45.52436
]
}
},
{
"type": "Feature",
"properties": {
"id": 1156,
"label": "31859",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56859,
45.54963
]
}
},
{
"type": "Feature",
"properties": {
"id": 1165,
"label": "29079",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59009,
45.438
]
}
},
{
"type": "Feature",
"properties": {
"id": 1188,
"label": "37013",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.76596,
45.49833
]
}
},
{
"type": "Feature",
"properties": {
"id": 1189,
"label": "37074",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6221,
45.49826
]
}
},
{
"type": "Feature",
"properties": {
"id": 1194,
"label": "29836",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66975,
45.52756
]
}
},
{
"type": "Feature",
"properties": {
"id": 1201,
"label": "31032",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54697,
45.48975
]
}
},
{
"type": "Feature",
"properties": {
"id": 1224,
"label": "37053",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62357,
45.47476
]
}
},
{
"type": "Feature",
"properties": {
"id": 1234,
"label": "30110",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58168,
45.55174
]
}
},
{
"type": "Feature",
"properties": {
"id": 1251,
"label": "30060",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55484,
45.51655
]
}
},
{
"type": "Feature",
"properties": {
"id": 1263,
"label": "37008",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64452,
45.45818
]
}
},
{
"type": "Feature",
"properties": {
"id": 1274,
"label": "30864",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65097,
45.5844
]
}
},
{
"type": "Feature",
"properties": {
"id": 1276,
"label": "31033",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53465,
45.5965
]
}
},
{
"type": "Feature",
"properties": {
"id": 1286,
"label": "36019",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60044,
45.60342
]
}
},
{
"type": "Feature",
"properties": {
"id": 1297,
"label": "29829",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5338,
45.54726
]
}
},
{
"type": "Feature",
"properties": {
"id": 1298,
"label": "30008",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60299,
45.49523
]
}
},
{
"type": "Feature",
"properties": {
"id": 1299,
"label": "30815",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68283,
45.51411
]
}
},
{
"type": "Feature",
"properties": {
"id": 1300,
"label": "31025",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59769,
45.53173
]
}
},
{
"type": "Feature",
"properties": {
"id": 1306,
"label": "31189",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.75429,
45.49531
]
}
},
{
"type": "Feature",
"properties": {
"id": 1310,
"label": "36025",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63733,
45.54746
]
}
},
{
"type": "Feature",
"properties": {
"id": 1317,
"label": "38083",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.70832,
45.52471
]
}
},
{
"type": "Feature",
"properties": {
"id": 1339,
"label": "31080",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6193,
45.47903
]
}
},
{
"type": "Feature",
"properties": {
"id": 1366,
"label": "29037",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57521,
45.49352
]
}
},
{
"type": "Feature",
"properties": {
"id": 1371,
"label": "30813",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61629,
45.57743
]
}
},
{
"type": "Feature",
"properties": {
"id": 1377,
"label": "37005",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.73817,
45.44804
]
}
},
{
"type": "Feature",
"properties": {
"id": 1378,
"label": "38098",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54875,
45.54372
]
}
},
{
"type": "Feature",
"properties": {
"id": 1384,
"label": "29109",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65216,
45.44256
]
}
},
{
"type": "Feature",
"properties": {
"id": 1402,
"label": "31836",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61245,
45.56514
]
}
},
{
"type": "Feature",
"properties": {
"id": 1408,
"label": "38054",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.7514,
45.49733
]
}
},
{
"type": "Feature",
"properties": {
"id": 1410,
"label": "39087",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63986,
45.5993
]
}
},
{
"type": "Feature",
"properties": {
"id": 1438,
"label": "30881",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65305,
45.57885
]
}
},
{
"type": "Feature",
"properties": {
"id": 1441,
"label": "31150",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57414,
45.5129
]
}
},
{
"type": "Feature",
"properties": {
"id": 1487,
"label": "31850",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61974,
45.57914
]
}
},
{
"type": "Feature",
"properties": {
"id": 1488,
"label": "37083",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65079,
45.48899
]
}
},
{
"type": "Feature",
"properties": {
"id": 1497,
"label": "28093",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58485,
45.48212
]
}
},
{
"type": "Feature",
"properties": {
"id": 1513,
"label": "31186",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55052,
45.44958
]
}
},
{
"type": "Feature",
"properties": {
"id": 1541,
"label": "30064",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60771,
45.6209
]
}
},
{
"type": "Feature",
"properties": {
"id": 1546,
"label": "30863",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68723,
45.51079
]
}
},
{
"type": "Feature",
"properties": {
"id": 1555,
"label": "38033",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62408,
45.55323
]
}
},
{
"type": "Feature",
"properties": {
"id": 1578,
"label": "29095",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58393,
45.48168
]
}
},
{
"type": "Feature",
"properties": {
"id": 1596,
"label": "31195",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.86995,
45.46267
]
}
},
{
"type": "Feature",
"properties": {
"id": 1620,
"label": "37087",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.67744,
45.51818
]
}
},
{
"type": "Feature",
"properties": {
"id": 1621,
"label": "37097",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62313,
45.47523
]
}
},
{
"type": "Feature",
"properties": {
"id": 1623,
"label": "38063",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6927,
45.50623
]
}
},
{
"type": "Feature",
"properties": {
"id": 1625,
"label": "39006",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57997,
45.48465
]
}
},
{
"type": "Feature",
"properties": {
"id": 1645,
"label": "30220",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57956,
45.48974
]
}
},
{
"type": "Feature",
"properties": {
"id": 1673,
"label": "28076",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.83,
45.46726
]
}
},
{
"type": "Feature",
"properties": {
"id": 1688,
"label": "31193",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54344,
45.60495
]
}
},
{
"type": "Feature",
"properties": {
"id": 1695,
"label": "37017",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62921,
45.46358
]
}
},
{
"type": "Feature",
"properties": {
"id": 1697,
"label": "38031",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56234,
45.49902
]
}
},
{
"type": "Feature",
"properties": {
"id": 1700,
"label": "39091",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66048,
45.56655
]
}
},
{
"type": "Feature",
"properties": {
"id": 1715,
"label": "29048",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65015,
45.47268
]
}
},
{
"type": "Feature",
"properties": {
"id": 1717,
"label": "29073",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60471,
45.44708
]
}
},
{
"type": "Feature",
"properties": {
"id": 1721,
"label": "31068",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58049,
45.65072
]
}
},
{
"type": "Feature",
"properties": {
"id": 1726,
"label": "31820",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57912,
45.49564
]
}
},
{
"type": "Feature",
"properties": {
"id": 1745,
"label": "29021",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57789,
45.51159
]
}
},
{
"type": "Feature",
"properties": {
"id": 1762,
"label": "37075",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61337,
45.51493
]
}
},
{
"type": "Feature",
"properties": {
"id": 1763,
"label": "38079",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.87389,
45.47746
]
}
},
{
"type": "Feature",
"properties": {
"id": 1806,
"label": "39034",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.552,
45.51153
]
}
},
{
"type": "Feature",
"properties": {
"id": 1839,
"label": "31181",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53783,
45.55556
]
}
},
{
"type": "Feature",
"properties": {
"id": 1844,
"label": "37088",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.67764,
45.50404
]
}
},
{
"type": "Feature",
"properties": {
"id": 1869,
"label": "31138",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64136,
45.54247
]
}
},
{
"type": "Feature",
"properties": {
"id": 1871,
"label": "31184",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61114,
45.55765
]
}
},
{
"type": "Feature",
"properties": {
"id": 1948,
"label": "38028",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53523,
45.46963
]
}
},
{
"type": "Feature",
"properties": {
"id": 1949,
"label": "38034",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53733,
45.58954
]
}
},
{
"type": "Feature",
"properties": {
"id": 1951,
"label": "39076",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.50509,
45.674
]
}
},
{
"type": "Feature",
"properties": {
"id": 1982,
"label": "38043",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.67638,
45.51029
]
}
},
{
"type": "Feature",
"properties": {
"id": 2027,
"label": "31055",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57697,
45.52311
]
}
},
{
"type": "Feature",
"properties": {
"id": 2051,
"label": "29023",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60719,
45.53162
]
}
},
{
"type": "Feature",
"properties": {
"id": 2082,
"label": "30827",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65639,
45.55055
]
}
},
{
"type": "Feature",
"properties": {
"id": 2093,
"label": "31036",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66449,
45.56198
]
}
},
{
"type": "Feature",
"properties": {
"id": 2131,
"label": "30175",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68264,
45.51295
]
}
},
{
"type": "Feature",
"properties": {
"id": 2148,
"label": "36022",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66729,
45.55586
]
}
},
{
"type": "Feature",
"properties": {
"id": 2151,
"label": "38008",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56676,
45.52176
]
}
},
{
"type": "Feature",
"properties": {
"id": 2157,
"label": "39026",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55247,
45.54509
]
}
},
{
"type": "Feature",
"properties": {
"id": 2160,
"label": "39042",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59749,
45.62622
]
}
},
{
"type": "Feature",
"properties": {
"id": 2162,
"label": "39100",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59673,
45.63836
]
}
},
{
"type": "Feature",
"properties": {
"id": 2170,
"label": "31076",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63857,
45.52778
]
}
},
{
"type": "Feature",
"properties": {
"id": 2180,
"label": "29846",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6198,
45.6068
]
}
},
{
"type": "Feature",
"properties": {
"id": 2323,
"label": "38081",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.88466,
45.46268
]
}
},
{
"type": "Feature",
"properties": {
"id": 2411,
"label": "30092",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57761,
45.60284
]
}
},
{
"type": "Feature",
"properties": {
"id": 2446,
"label": "37085",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.70732,
45.44807
]
}
},
{
"type": "Feature",
"properties": {
"id": 2463,
"label": "31024",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56728,
45.50646
]
}
},
{
"type": "Feature",
"properties": {
"id": 2488,
"label": "37048",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59844,
45.55872
]
}
},
{
"type": "Feature",
"properties": {
"id": 2501,
"label": "38042",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.73012,
45.52628
]
}
},
{
"type": "Feature",
"properties": {
"id": 2512,
"label": "31017",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59174,
45.48796
]
}
},
{
"type": "Feature",
"properties": {
"id": 2521,
"label": "30058",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64564,
45.45863
]
}
},
{
"type": "Feature",
"properties": {
"id": 2528,
"label": "31808",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5714,
45.55991
]
}
},
{
"type": "Feature",
"properties": {
"id": 2532,
"label": "37004",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60574,
45.4729
]
}
},
{
"type": "Feature",
"properties": {
"id": 2535,
"label": "31122",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63937,
45.55034
]
}
},
{
"type": "Feature",
"properties": {
"id": 2537,
"label": "30087",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59098,
45.52288
]
}
},
{
"type": "Feature",
"properties": {
"id": 2544,
"label": "39010",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66825,
45.44633
]
}
},
{
"type": "Feature",
"properties": {
"id": 2548,
"label": "31862",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60847,
45.61941
]
}
},
{
"type": "Feature",
"properties": {
"id": 2580,
"label": "39126",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53935,
45.65092
]
}
},
{
"type": "Feature",
"properties": {
"id": 2583,
"label": "29089",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5637,
45.46285
]
}
},
{
"type": "Feature",
"properties": {
"id": 2584,
"label": "30251",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57714,
45.57666
]
}
},
{
"type": "Feature",
"properties": {
"id": 2592,
"label": "31176",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54978,
45.53256
]
}
},
{
"type": "Feature",
"properties": {
"id": 2613,
"label": "38029",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5528,
45.5243
]
}
},
{
"type": "Feature",
"properties": {
"id": 2630,
"label": "36040",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54693,
45.57639
]
}
},
{
"type": "Feature",
"properties": {
"id": 2632,
"label": "38025",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.597,
45.57753
]
}
},
{
"type": "Feature",
"properties": {
"id": 2647,
"label": "37098",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68521,
45.52358
]
}
},
{
"type": "Feature",
"properties": {
"id": 2652,
"label": "32013",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58292,
45.51369
]
}
},
{
"type": "Feature",
"properties": {
"id": 2661,
"label": "37089",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65249,
45.50488
]
}
},
{
"type": "Feature",
"properties": {
"id": 2677,
"label": "32020",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5753,
45.57882
]
}
},
{
"type": "Feature",
"properties": {
"id": 2683,
"label": "39127",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57914,
45.64913
]
}
},
{
"type": "Feature",
"properties": {
"id": 2703,
"label": "37104",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.71931,
45.48536
]
}
},
{
"type": "Feature",
"properties": {
"id": 2711,
"label": "30237",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.83076,
45.47263
]
}
},
{
"type": "Feature",
"properties": {
"id": 2712,
"label": "37033",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62633,
45.47174
]
}
},
{
"type": "Feature",
"properties": {
"id": 2718,
"label": "39128",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53499,
45.66468
]
}
},
{
"type": "Feature",
"properties": {
"id": 2722,
"label": "38041",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.72156,
45.53143
]
}
},
{
"type": "Feature",
"properties": {
"id": 2751,
"label": "31134",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63235,
45.59082
]
}
},
{
"type": "Feature",
"properties": {
"id": 2762,
"label": "30865",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.71853,
45.53178
]
}
},
{
"type": "Feature",
"properties": {
"id": 2776,
"label": "32007",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6685,
45.53542
]
}
},
{
"type": "Feature",
"properties": {
"id": 2790,
"label": "31086",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65421,
45.49339
]
}
},
{
"type": "Feature",
"properties": {
"id": 2795,
"label": "30854",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59542,
45.55775
]
}
},
{
"type": "Feature",
"properties": {
"id": 2806,
"label": "32025",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.49963,
45.64349
]
}
},
{
"type": "Feature",
"properties": {
"id": 2811,
"label": "39148",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.52501,
45.59343
]
}
},
{
"type": "Feature",
"properties": {
"id": 2812,
"label": "29101",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57574,
45.46237
]
}
},
{
"type": "Feature",
"properties": {
"id": 2820,
"label": "31026",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.51329,
45.65914
]
}
},
{
"type": "Feature",
"properties": {
"id": 2824,
"label": "31832",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64278,
45.57174
]
}
},
{
"type": "Feature",
"properties": {
"id": 2835,
"label": "39062",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5957,
45.58598
]
}
},
{
"type": "Feature",
"properties": {
"id": 2842,
"label": "32017",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60522,
45.58448
]
}
},
{
"type": "Feature",
"properties": {
"id": 2850,
"label": "29093",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57415,
45.47625
]
}
},
{
"type": "Feature",
"properties": {
"id": 2858,
"label": "31015",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.51643,
45.63638
]
}
},
{
"type": "Feature",
"properties": {
"id": 2861,
"label": "30872",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5338,
45.54726
]
}
},
{
"type": "Feature",
"properties": {
"id": 2879,
"label": "31022",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6154,
45.51992
]
}
},
{
"type": "Feature",
"properties": {
"id": 2905,
"label": "39075",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.51727,
45.57962
]
}
},
{
"type": "Feature",
"properties": {
"id": 2912,
"label": "29137",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58526,
45.48866
]
}
},
{
"type": "Feature",
"properties": {
"id": 2917,
"label": "37068",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66194,
45.5003
]
}
},
{
"type": "Feature",
"properties": {
"id": 2923,
"label": "33840",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63395,
45.50166
]
}
},
{
"type": "Feature",
"properties": {
"id": 2926,
"label": "36047",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.52,
45.62403
]
}
},
{
"type": "Feature",
"properties": {
"id": 2927,
"label": "37030",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61313,
45.54076
]
}
},
{
"type": "Feature",
"properties": {
"id": 2932,
"label": "30067",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57451,
45.5395
]
}
},
{
"type": "Feature",
"properties": {
"id": 2940,
"label": "30820",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66602,
45.53358
]
}
},
{
"type": "Feature",
"properties": {
"id": 2943,
"label": "31156",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6199,
45.47937
]
}
},
{
"type": "Feature",
"properties": {
"id": 2947,
"label": "30136",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6127,
45.62907
]
}
},
{
"type": "Feature",
"properties": {
"id": 2951,
"label": "30108",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.50935,
45.63243
]
}
},
{
"type": "Feature",
"properties": {
"id": 2953,
"label": "32015",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57914,
45.64913
]
}
},
{
"type": "Feature",
"properties": {
"id": 2957,
"label": "29111",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56744,
45.4774
]
}
},
{
"type": "Feature",
"properties": {
"id": 2968,
"label": "31216",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58531,
45.54609
]
}
},
{
"type": "Feature",
"properties": {
"id": 2972,
"label": "31061",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61625,
45.6031
]
}
},
{
"type": "Feature",
"properties": {
"id": 2973,
"label": "31133",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65361,
45.55439
]
}
},
{
"type": "Feature",
"properties": {
"id": 2978,
"label": "30159",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64895,
45.58343
]
}
},
{
"type": "Feature",
"properties": {
"id": 2980,
"label": "30013",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66297,
45.43211
]
}
},
{
"type": "Feature",
"properties": {
"id": 2983,
"label": "31814",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64304,
45.51484
]
}
},
{
"type": "Feature",
"properties": {
"id": 2996,
"label": "30181",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60102,
45.53839
]
}
},
{
"type": "Feature",
"properties": {
"id": 3007,
"label": "30224",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57313,
45.51949
]
}
},
{
"type": "Feature",
"properties": {
"id": 3021,
"label": "30164",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58381,
45.55787
]
}
},
{
"type": "Feature",
"properties": {
"id": 3023,
"label": "37019",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60511,
45.47335
]
}
},
{
"type": "Feature",
"properties": {
"id": 3024,
"label": "30132",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64033,
45.55038
]
}
},
{
"type": "Feature",
"properties": {
"id": 3039,
"label": "30157",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55286,
45.59766
]
}
},
{
"type": "Feature",
"properties": {
"id": 3042,
"label": "39144",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61989,
45.61449
]
}
},
{
"type": "Feature",
"properties": {
"id": 3045,
"label": "39142",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59351,
45.56811
]
}
},
{
"type": "Feature",
"properties": {
"id": 3080,
"label": "30011",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58801,
45.46206
]
}
},
{
"type": "Feature",
"properties": {
"id": 3085,
"label": "31003",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.75158,
45.45734
]
}
},
{
"type": "Feature",
"properties": {
"id": 3103,
"label": "39061",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5714,
45.53852
]
}
},
{
"type": "Feature",
"properties": {
"id": 3106,
"label": "31807",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63886,
45.5764
]
}
},
{
"type": "Feature",
"properties": {
"id": 3115,
"label": "40011",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60833,
45.4291
]
}
},
{
"type": "Feature",
"properties": {
"id": 3117,
"label": "40008",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64692,
45.44224
]
}
},
{
"type": "Feature",
"properties": {
"id": 3124,
"label": "40030",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.7633,
45.44874
]
}
},
{
"type": "Feature",
"properties": {
"id": 3145,
"label": "38082",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.67307,
45.50825
]
}
},
{
"type": "Feature",
"properties": {
"id": 3149,
"label": "30852",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60651,
45.61754
]
}
},
{
"type": "Feature",
"properties": {
"id": 3155,
"label": "33811",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.83555,
45.47371
]
}
},
{
"type": "Feature",
"properties": {
"id": 3157,
"label": "39040",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54123,
45.56366
]
}
},
{
"type": "Feature",
"properties": {
"id": 3158,
"label": "29096",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60773,
45.47032
]
}
},
{
"type": "Feature",
"properties": {
"id": 3166,
"label": "40033",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.69254,
45.44178
]
}
},
{
"type": "Feature",
"properties": {
"id": 3172,
"label": "40031",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62212,
45.44967
]
}
},
{
"type": "Feature",
"properties": {
"id": 3173,
"label": "40038",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56728,
45.48998
]
}
},
{
"type": "Feature",
"properties": {
"id": 3175,
"label": "32001",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58038,
45.61679
]
}
},
{
"type": "Feature",
"properties": {
"id": 3213,
"label": "37092",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.70654,
45.52259
]
}
},
{
"type": "Feature",
"properties": {
"id": 3214,
"label": "30061",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62998,
45.48273
]
}
},
{
"type": "Feature",
"properties": {
"id": 3231,
"label": "40009",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59068,
45.43624
]
}
},
{
"type": "Feature",
"properties": {
"id": 3235,
"label": "33806",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60601,
45.56249
]
}
},
{
"type": "Feature",
"properties": {
"id": 3241,
"label": "40046",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62243,
45.43916
]
}
},
{
"type": "Feature",
"properties": {
"id": 3242,
"label": "40042",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57634,
45.45568
]
}
},
{
"type": "Feature",
"properties": {
"id": 3244,
"label": "29099",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.74097,
45.44656
]
}
},
{
"type": "Feature",
"properties": {
"id": 3247,
"label": "40052",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64764,
45.47154
]
}
},
{
"type": "Feature",
"properties": {
"id": 3249,
"label": "40002",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66039,
45.4757
]
}
},
{
"type": "Feature",
"properties": {
"id": 3251,
"label": "29024",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64953,
45.46991
]
}
},
{
"type": "Feature",
"properties": {
"id": 3256,
"label": "30002",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59965,
45.55986
]
}
},
{
"type": "Feature",
"properties": {
"id": 3257,
"label": "33819",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56715,
45.51048
]
}
},
{
"type": "Feature",
"properties": {
"id": 3259,
"label": "40021",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64885,
45.4432
]
}
},
{
"type": "Feature",
"properties": {
"id": 3262,
"label": "40012",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.69213,
45.43756
]
}
},
{
"type": "Feature",
"properties": {
"id": 3277,
"label": "31861",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62104,
45.60759
]
}
},
{
"type": "Feature",
"properties": {
"id": 3290,
"label": "40027",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66811,
45.43177
]
}
},
{
"type": "Feature",
"properties": {
"id": 3297,
"label": "40059",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63014,
45.43227
]
}
},
{
"type": "Feature",
"properties": {
"id": 3300,
"label": "40054",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57915,
45.48809
]
}
},
{
"type": "Feature",
"properties": {
"id": 3303,
"label": "40057",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63277,
45.42963
]
}
},
{
"type": "Feature",
"properties": {
"id": 3306,
"label": "31047",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54437,
45.4594
]
}
},
{
"type": "Feature",
"properties": {
"id": 3313,
"label": "40060",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65487,
45.46217
]
}
},
{
"type": "Feature",
"properties": {
"id": 3314,
"label": "31844",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.7188,
45.53158
]
}
},
{
"type": "Feature",
"properties": {
"id": 3319,
"label": "33841",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57933,
45.49386
]
}
},
{
"type": "Feature",
"properties": {
"id": 3321,
"label": "37007",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63895,
45.49495
]
}
},
{
"type": "Feature",
"properties": {
"id": 3328,
"label": "40044",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59161,
45.43453
]
}
},
{
"type": "Feature",
"properties": {
"id": 3336,
"label": "29115",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63415,
45.48232
]
}
},
{
"type": "Feature",
"properties": {
"id": 3342,
"label": "40022",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60404,
45.4743
]
}
},
{
"type": "Feature",
"properties": {
"id": 3344,
"label": "37027",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66229,
45.45927
]
}
},
{
"type": "Feature",
"properties": {
"id": 3347,
"label": "31020",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62506,
45.52148
]
}
},
{
"type": "Feature",
"properties": {
"id": 3353,
"label": "29036",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62767,
45.49841
]
}
},
{
"type": "Feature",
"properties": {
"id": 3363,
"label": "40061",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61088,
45.42615
]
}
},
{
"type": "Feature",
"properties": {
"id": 3380,
"label": "33820",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.88374,
45.46316
]
}
},
{
"type": "Feature",
"properties": {
"id": 3399,
"label": "30129",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58096,
45.61842
]
}
},
{
"type": "Feature",
"properties": {
"id": 6789,
"label": "31029",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66177,
45.47569
]
}
},
{
"type": "Feature",
"properties": {
"id": 7021,
"label": "29816",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59012,
45.51712
]
}
},
{
"type": "Feature",
"properties": {
"id": 7076,
"label": "31169",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55431,
45.56004
]
}
},
{
"type": "Feature",
"properties": {
"id": 7297,
"label": "31009",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.49292,
45.64035
]
}
},
{
"type": "Feature",
"properties": {
"id": 7839,
"label": "40115",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59224,
45.51337
]
}
},
{
"type": "Feature",
"properties": {
"id": 8505,
"label": "40107",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5832,
45.53122
]
}
},
{
"type": "Feature",
"properties": {
"id": 8602,
"label": "40075",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.93906,
45.404
]
}
},
{
"type": "Feature",
"properties": {
"id": 8603,
"label": "40074",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60329,
45.44673
]
}
},
{
"type": "Feature",
"properties": {
"id": 8634,
"label": "40071",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63353,
45.44188
]
}
},
{
"type": "Feature",
"properties": {
"id": 8765,
"label": "40067",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64001,
45.42898
]
}
},
{
"type": "Feature",
"properties": {
"id": 8825,
"label": "40079",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.688,
45.43473
]
}
},
{
"type": "Feature",
"properties": {
"id": 8843,
"label": "40097",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63542,
45.48168
]
}
},
{
"type": "Feature",
"properties": {
"id": 8849,
"label": "40096",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55287,
45.5182
]
}
},
{
"type": "Feature",
"properties": {
"id": 8851,
"label": "40081",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.82346,
45.44069
]
}
},
{
"type": "Feature",
"properties": {
"id": 8857,
"label": "40108",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57207,
45.53877
]
}
},
{
"type": "Feature",
"properties": {
"id": 8860,
"label": "31182",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55287,
45.49889
]
}
},
{
"type": "Feature",
"properties": {
"id": 8867,
"label": "40118",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60789,
45.51495
]
}
},
{
"type": "Feature",
"properties": {
"id": 8897,
"label": "40068",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6348,
45.42158
]
}
},
{
"type": "Feature",
"properties": {
"id": 8907,
"label": "40092",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.67149,
45.46217
]
}
},
{
"type": "Feature",
"properties": {
"id": 8911,
"label": "30146",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57847,
45.50547
]
}
},
{
"type": "Feature",
"properties": {
"id": 8913,
"label": "40066",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60488,
45.44706
]
}
},
{
"type": "Feature",
"properties": {
"id": 8915,
"label": "40094",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58765,
45.52641
]
}
},
{
"type": "Feature",
"properties": {
"id": 8917,
"label": "40111",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59706,
45.51822
]
}
},
{
"type": "Feature",
"properties": {
"id": 9051,
"label": "40139",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.75182,
45.45527
]
}
},
{
"type": "Feature",
"properties": {
"id": 9080,
"label": "40156",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.83175,
45.46627
]
}
},
{
"type": "Feature",
"properties": {
"id": 9082,
"label": "40157",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.73646,
45.52383
]
}
},
{
"type": "Feature",
"properties": {
"id": 9098,
"label": "40133",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.8467,
45.50962
]
}
},
{
"type": "Feature",
"properties": {
"id": 9204,
"label": "40126",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.78223,
45.44973
]
}
},
{
"type": "Feature",
"properties": {
"id": 9208,
"label": "40134",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.9243,
45.40535
]
}
},
{
"type": "Feature",
"properties": {
"id": 9211,
"label": "40138",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.74842,
45.49518
]
}
},
{
"type": "Feature",
"properties": {
"id": 9216,
"label": "40148",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.81805,
45.44922
]
}
},
{
"type": "Feature",
"properties": {
"id": 9226,
"label": "40172",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.75921,
45.44194
]
}
},
{
"type": "Feature",
"properties": {
"id": 9227,
"label": "40173",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.77731,
45.45006
]
}
},
{
"type": "Feature",
"properties": {
"id": 9228,
"label": "40177",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.80618,
45.49397
]
}
},
{
"type": "Feature",
"properties": {
"id": 9239,
"label": "40200",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.74889,
45.49917
]
}
},
{
"type": "Feature",
"properties": {
"id": 9242,
"label": "40213",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.92599,
45.42583
]
}
},
{
"type": "Feature",
"properties": {
"id": 9247,
"label": "40190",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.78725,
45.50219
]
}
},
{
"type": "Feature",
"properties": {
"id": 9248,
"label": "40194",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.85383,
45.44763
]
}
},
{
"type": "Feature",
"properties": {
"id": 9257,
"label": "40125",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.82853,
45.4688
]
}
},
{
"type": "Feature",
"properties": {
"id": 9260,
"label": "40196",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68364,
45.51355
]
}
},
{
"type": "Feature",
"properties": {
"id": 9262,
"label": "40174",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.83588,
45.46134
]
}
},
{
"type": "Feature",
"properties": {
"id": 9263,
"label": "40217",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63814,
45.44716
]
}
},
{
"type": "Feature",
"properties": {
"id": 9267,
"label": "40221",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64808,
45.42538
]
}
},
{
"type": "Feature",
"properties": {
"id": 9271,
"label": "40127",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.85609,
45.48832
]
}
},
{
"type": "Feature",
"properties": {
"id": 9272,
"label": "40225",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58389,
45.48983
]
}
},
{
"type": "Feature",
"properties": {
"id": 9275,
"label": "40226",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65933,
45.45917
]
}
},
{
"type": "Feature",
"properties": {
"id": 9282,
"label": "40214",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.83038,
45.46693
]
}
},
{
"type": "Feature",
"properties": {
"id": 9285,
"label": "40189",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.67213,
45.50834
]
}
},
{
"type": "Feature",
"properties": {
"id": 9290,
"label": "40228",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59888,
45.42802
]
}
},
{
"type": "Feature",
"properties": {
"id": 9291,
"label": "40195",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.80923,
45.45419
]
}
},
{
"type": "Feature",
"properties": {
"id": 9296,
"label": "40223",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59497,
45.44574
]
}
},
{
"type": "Feature",
"properties": {
"id": 9300,
"label": "40236",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.82563,
45.43504
]
}
},
{
"type": "Feature",
"properties": {
"id": 9301,
"label": "40184",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.73198,
45.45588
]
}
},
{
"type": "Feature",
"properties": {
"id": 9302,
"label": "40165",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68363,
45.51349
]
}
},
{
"type": "Feature",
"properties": {
"id": 9304,
"label": "40167",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66859,
45.55439
]
}
},
{
"type": "Feature",
"properties": {
"id": 9317,
"label": "40231",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55778,
45.48552
]
}
},
{
"type": "Feature",
"properties": {
"id": 9320,
"label": "40216",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.74702,
45.50077
]
}
},
{
"type": "Feature",
"properties": {
"id": 9323,
"label": "40209",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61235,
45.47269
]
}
},
{
"type": "Feature",
"properties": {
"id": 9325,
"label": "40170",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.7247,
45.4921
]
}
},
{
"type": "Feature",
"properties": {
"id": 9329,
"label": "40243",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59538,
45.45679
]
}
},
{
"type": "Feature",
"properties": {
"id": 9331,
"label": "40247",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58147,
45.48268
]
}
},
{
"type": "Feature",
"properties": {
"id": 9336,
"label": "40240",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60831,
45.45905
]
}
},
{
"type": "Feature",
"properties": {
"id": 9351,
"label": "40251",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6498,
45.42507
]
}
},
{
"type": "Feature",
"properties": {
"id": 9352,
"label": "40244",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.83572,
45.42847
]
}
},
{
"type": "Feature",
"properties": {
"id": 9358,
"label": "40233",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68871,
45.43736
]
}
},
{
"type": "Feature",
"properties": {
"id": 9740,
"label": "40246",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60532,
45.47319
]
}
},
{
"type": "Feature",
"properties": {
"id": 10677,
"label": "41003",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61986,
45.49779
]
}
},
{
"type": "Feature",
"properties": {
"id": 10678,
"label": "41014",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61929,
45.49469
]
}
},
{
"type": "Feature",
"properties": {
"id": 10682,
"label": "41010",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5662,
45.55679
]
}
},
{
"type": "Feature",
"properties": {
"id": 10688,
"label": "41024",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57787,
45.54341
]
}
},
{
"type": "Feature",
"properties": {
"id": 10689,
"label": "41008",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58523,
45.53785
]
}
},
{
"type": "Feature",
"properties": {
"id": 10696,
"label": "41011",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61375,
45.5089
]
}
},
{
"type": "Feature",
"properties": {
"id": 10710,
"label": "41026",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.51164,
45.60783
]
}
},
{
"type": "Feature",
"properties": {
"id": 10720,
"label": "41018",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59592,
45.5195
]
}
},
{
"type": "Feature",
"properties": {
"id": 10728,
"label": "41017",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56255,
45.54301
]
}
},
{
"type": "Feature",
"properties": {
"id": 10748,
"label": "41042",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.72341,
45.5313
]
}
},
{
"type": "Feature",
"properties": {
"id": 10753,
"label": "41007",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58948,
45.51664
]
}
},
{
"type": "Feature",
"properties": {
"id": 10794,
"label": "41029",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57734,
45.53761
]
}
},
{
"type": "Feature",
"properties": {
"id": 10795,
"label": "41049",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56693,
45.6479
]
}
},
{
"type": "Feature",
"properties": {
"id": 10807,
"label": "41053",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56965,
45.53062
]
}
},
{
"type": "Feature",
"properties": {
"id": 10813,
"label": "41052",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.71104,
45.47136
]
}
},
{
"type": "Feature",
"properties": {
"id": 10855,
"label": "41054",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66711,
45.55622
]
}
},
{
"type": "Feature",
"properties": {
"id": 10876,
"label": "41059",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60197,
45.52556
]
}
},
{
"type": "Feature",
"properties": {
"id": 10887,
"label": "41063",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56876,
45.51223
]
}
},
{
"type": "Feature",
"properties": {
"id": 10896,
"label": "41044",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65995,
45.547
]
}
},
{
"type": "Feature",
"properties": {
"id": 10910,
"label": "41062",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.70268,
45.53574
]
}
},
{
"type": "Feature",
"properties": {
"id": 10923,
"label": "41046",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66709,
45.55657
]
}
},
{
"type": "Feature",
"properties": {
"id": 10944,
"label": "41070",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66644,
45.56058
]
}
},
{
"type": "Feature",
"properties": {
"id": 11048,
"label": "41106",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65308,
45.5788
]
}
},
{
"type": "Feature",
"properties": {
"id": 11049,
"label": "41113",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6329,
45.58777
]
}
},
{
"type": "Feature",
"properties": {
"id": 11054,
"label": "41095",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62241,
45.62323
]
}
},
{
"type": "Feature",
"properties": {
"id": 11055,
"label": "41079",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59673,
45.56899
]
}
},
{
"type": "Feature",
"properties": {
"id": 11065,
"label": "41078",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64882,
45.5452
]
}
},
{
"type": "Feature",
"properties": {
"id": 11076,
"label": "41089",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58471,
45.58666
]
}
},
{
"type": "Feature",
"properties": {
"id": 11077,
"label": "41120",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.619,
45.61494
]
}
},
{
"type": "Feature",
"properties": {
"id": 11083,
"label": "41128",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.67594,
45.54203
]
}
},
{
"type": "Feature",
"properties": {
"id": 11084,
"label": "41077",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62495,
45.54782
]
}
},
{
"type": "Feature",
"properties": {
"id": 11098,
"label": "41097",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61524,
45.62706
]
}
},
{
"type": "Feature",
"properties": {
"id": 11145,
"label": "41129",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64972,
45.5729
]
}
},
{
"type": "Feature",
"properties": {
"id": 11160,
"label": "41099",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6685,
45.55454
]
}
},
{
"type": "Feature",
"properties": {
"id": 11162,
"label": "41090",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65731,
45.56127
]
}
},
{
"type": "Feature",
"properties": {
"id": 12442,
"label": "42003",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59741,
45.57748
]
}
},
{
"type": "Feature",
"properties": {
"id": 12615,
"label": "42013",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59872,
45.63763
]
}
},
{
"type": "Feature",
"properties": {
"id": 12621,
"label": "42007",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63931,
45.54129
]
}
},
{
"type": "Feature",
"properties": {
"id": 12625,
"label": "42010",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59816,
45.55904
]
}
},
{
"type": "Feature",
"properties": {
"id": 12631,
"label": "42009",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60787,
45.54831
]
}
},
{
"type": "Feature",
"properties": {
"id": 12637,
"label": "42032",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5342,
45.5964
]
}
},
{
"type": "Feature",
"properties": {
"id": 12640,
"label": "42035",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54874,
45.53215
]
}
},
{
"type": "Feature",
"properties": {
"id": 12651,
"label": "42021",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64095,
45.45564
]
}
},
{
"type": "Feature",
"properties": {
"id": 12656,
"label": "42040",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63484,
45.56029
]
}
},
{
"type": "Feature",
"properties": {
"id": 12661,
"label": "42043",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65138,
45.5754
]
}
},
{
"type": "Feature",
"properties": {
"id": 12708,
"label": "42017",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56962,
45.51207
]
}
},
{
"type": "Feature",
"properties": {
"id": 12734,
"label": "42044",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57623,
45.56144
]
}
},
{
"type": "Feature",
"properties": {
"id": 12744,
"label": "42049",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63944,
45.5312
]
}
},
{
"type": "Feature",
"properties": {
"id": 2928814,
"label": "44009",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55561,
45.49658
]
}
},
{
"type": "Feature",
"properties": {
"id": 2928815,
"label": "44011",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56338,
45.46174
]
}
},
{
"type": "Feature",
"properties": {
"id": 2928821,
"label": "44004",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56499,
45.50074
]
}
},
{
"type": "Feature",
"properties": {
"id": 2928839,
"label": "44003",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.81499,
45.44118
]
}
},
{
"type": "Feature",
"properties": {
"id": 2928924,
"label": "44017",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65063,
45.4411
]
}
},
{
"type": "Feature",
"properties": {
"id": 2928926,
"label": "44013",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63388,
45.43085
]
}
},
{
"type": "Feature",
"properties": {
"id": 2928928,
"label": "44010",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58546,
45.48851
]
}
},
{
"type": "Feature",
"properties": {
"id": 2928930,
"label": "44016",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58486,
45.45714
]
}
},
{
"type": "Feature",
"properties": {
"id": 2928981,
"label": "44026",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.67262,
45.43824
]
}
},
{
"type": "Feature",
"properties": {
"id": 2928982,
"label": "44005",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.93988,
45.40375
]
}
},
{
"type": "Feature",
"properties": {
"id": 2929024,
"label": "44007",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59566,
45.47477
]
}
},
{
"type": "Feature",
"properties": {
"id": 2929051,
"label": "44025",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58101,
45.48294
]
}
},
{
"type": "Feature",
"properties": {
"id": 2929150,
"label": "44032",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59692,
45.47209
]
}
},
{
"type": "Feature",
"properties": {
"id": 2929157,
"label": "44022",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64837,
45.42506
]
}
},
{
"type": "Feature",
"properties": {
"id": 2929190,
"label": "44029",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68033,
45.44303
]
}
}
]
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET v2/agencies/{agency}/vehicles.geojson
Example request:
curl --request GET \
--get "https://api.transittracker.ca/v2/agencies/stm/vehicles.geojson" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "Accept-Language: en"
$client = new \GuzzleHttp\Client();
$url = 'https://api.transittracker.ca/v2/agencies/stm/vehicles.geojson';
$response = $client->get(
$url,
[
'headers' => [
'Content-Type' => 'application/json',
'Accept' => 'application/json',
'Accept-Language' => 'en',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://api.transittracker.ca/v2/agencies/stm/vehicles.geojson'
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Accept-Language': 'en'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 138
x-ratelimit-remaining: 134
content-language: en
vary: Origin
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57852,
45.49535
]
},
"properties": {
"trip": {
"id": "286570790",
"shortName": null,
"headsign": "Nord",
"startTime": "09:55:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "710083"
},
"route": {
"id": "71",
"shortName": "71",
"longName": "Pointe-Saint-Charles",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "27520",
"label": "27520",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 302,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 111
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55353,
45.52313
]
},
"properties": {
"trip": {
"id": "284739513",
"shortName": null,
"headsign": "Nord",
"startTime": "10:29:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "450176"
},
"route": {
"id": "45",
"shortName": "45",
"longName": "Papineau",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "28030",
"label": "28030",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 296,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 126
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68829,
45.51781
]
},
"properties": {
"trip": {
"id": "285007658",
"shortName": null,
"headsign": "Sud",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "1700177"
},
"route": {
"id": "170",
"shortName": "170",
"longName": "Keller",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "28033",
"label": "28033",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 132,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 26,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 128
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55314,
45.47974
]
},
"properties": {
"trip": {
"id": "286570763",
"shortName": null,
"headsign": "Sud",
"startTime": "10:11:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "710084"
},
"route": {
"id": "71",
"shortName": "71",
"longName": "Pointe-Saint-Charles",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "28048",
"label": "28048",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 181,
"odometer": 0,
"speed": 7
},
"agencyId": 1,
"currentStopSequence": 16,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 133
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65036,
45.58415
]
},
"properties": {
"trip": {
"id": "284739316",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:51:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "480411"
},
"route": {
"id": "48",
"shortName": "48",
"longName": "Perras",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "28107",
"label": "28107",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 196,
"odometer": 0,
"speed": 20
},
"agencyId": 1,
"currentStopSequence": 45,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 154
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.78773,
45.46674
]
},
"properties": {
"trip": {
"id": "285009544",
"shortName": null,
"headsign": "Sud",
"startTime": "10:07:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2090098"
},
"route": {
"id": "209",
"shortName": "209",
"longName": "Des Sources",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "28131",
"label": "28131",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 144,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 166
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63349,
45.54859
]
},
"properties": {
"trip": {
"id": "284726605",
"shortName": null,
"headsign": "Sud",
"startTime": "10:21:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "300085"
},
"route": {
"id": "30",
"shortName": "30",
"longName": "Saint-Denis / Saint-Hubert",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29017",
"label": "29017",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 112,
"odometer": 0,
"speed": 1
},
"agencyId": 1,
"currentStopSequence": 13,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 172
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63209,
45.50096
]
},
"properties": {
"trip": {
"id": "284726864",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:08:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "1610134"
},
"route": {
"id": "161",
"shortName": "161",
"longName": "Van Horne",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29018",
"label": "29018",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 219,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 18,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 173
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54543,
45.46798
]
},
"properties": {
"trip": {
"id": "286569740",
"shortName": null,
"headsign": "Nord",
"startTime": "10:17:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "120115"
},
"route": {
"id": "12",
"shortName": "12",
"longName": "Île-des-Soeurs",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29064",
"label": "29064",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 100,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 189
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.81498,
45.46266
]
},
"properties": {
"trip": {
"id": "285007191",
"shortName": null,
"headsign": "Est",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "720182"
},
"route": {
"id": "72",
"shortName": "72",
"longName": "Alfred-Nobel",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29070",
"label": "29070",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 54,
"odometer": 0,
"speed": 37
},
"agencyId": 1,
"currentStopSequence": 4,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 191
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73917,
45.44784
]
},
"properties": {
"trip": {
"id": "286573270",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:39:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1950177"
},
"route": {
"id": "195",
"shortName": "195",
"longName": "Dorval / Angrignon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29085",
"label": "29085",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 252,
"odometer": 0,
"speed": 16
},
"agencyId": 1,
"currentStopSequence": 53,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 200
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60476,
45.47366
]
},
"properties": {
"trip": {
"id": "286570965",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:16:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "900254"
},
"route": {
"id": "90",
"shortName": "90",
"longName": "Saint-Jacques",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29092",
"label": "29092",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 217,
"odometer": 0,
"speed": 28
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 205
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65754,
45.44792
]
},
"properties": {
"trip": {
"id": "286570637",
"shortName": null,
"headsign": "Est",
"startTime": "10:26:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1900003"
},
"route": {
"id": "190",
"shortName": "190",
"longName": "Norman",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29098",
"label": "29098",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 118,
"odometer": 0,
"speed": 10
},
"agencyId": 1,
"currentStopSequence": 10,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 207
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.574,
45.50159
]
},
"properties": {
"trip": {
"id": "286574285",
"shortName": null,
"headsign": "Est",
"startTime": "09:36:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "4200115"
},
"route": {
"id": "420",
"shortName": "420",
"longName": "Express Notre-Dame-de-Grâce",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29125",
"label": "29125",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 128,
"odometer": 0,
"speed": 17
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 213
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59868,
45.47699
]
},
"properties": {
"trip": {
"id": "286570296",
"shortName": null,
"headsign": "Nord",
"startTime": "10:01:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "380008"
},
"route": {
"id": "38",
"shortName": "38",
"longName": "De l'Église",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29138",
"label": "29138",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 218,
"odometer": 0,
"speed": 24
},
"agencyId": 1,
"currentStopSequence": 26,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 218
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56932,
45.50294
]
},
"properties": {
"trip": {
"id": "286572555",
"shortName": null,
"headsign": "Est",
"startTime": "09:37:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "350017"
},
"route": {
"id": "35",
"shortName": "35",
"longName": "Griffintown",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29139",
"label": "29139",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 305,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 44,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 219
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63377,
45.44515
]
},
"properties": {
"trip": {
"id": "286571224",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:59:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1010134"
},
"route": {
"id": "101",
"shortName": "101",
"longName": "Saint-Patrick",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29140",
"label": "29140",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 242,
"odometer": 0,
"speed": 7
},
"agencyId": 1,
"currentStopSequence": 25,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 220
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59846,
45.47164
]
},
"properties": {
"trip": {
"id": "286574308",
"shortName": null,
"headsign": "Est",
"startTime": "10:08:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "4200115"
},
"route": {
"id": "420",
"shortName": "420",
"longName": "Express Notre-Dame-de-Grâce",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29147",
"label": "29147",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 236,
"odometer": 0,
"speed": 60
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 226
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70981,
45.49798
]
},
"properties": {
"trip": {
"id": "284739397",
"shortName": null,
"headsign": "Est",
"startTime": "10:40:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "1210266"
},
"route": {
"id": "121",
"shortName": "121",
"longName": "Sauvé / Côte-Vertu",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29825",
"label": "29825",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 312,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 238
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5595,
45.55625
]
},
"properties": {
"trip": {
"id": "284741419",
"shortName": null,
"headsign": "Nord destination Cégep Marie-Victorin",
"startTime": "10:19:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "4390256"
},
"route": {
"id": "439",
"shortName": "439",
"longName": "Express Pie-IX",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29831",
"label": "29831",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 294,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 9,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 242
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64458,
45.51842
]
},
"properties": {
"trip": {
"id": "284778184",
"shortName": null,
"headsign": "Nord",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1190075"
},
"route": {
"id": "119",
"shortName": "119",
"longName": "Rockland",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30007",
"label": "30007",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 158,
"odometer": 0,
"speed": 24
},
"agencyId": 1,
"currentStopSequence": 37,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749752969,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 260
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56869,
45.54187
]
},
"properties": {
"trip": {
"id": "285002320",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:15:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "970204"
},
"route": {
"id": "97",
"shortName": "97",
"longName": "Avenue-du-Mont-Royal",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30050",
"label": "30050",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 279,
"odometer": 0,
"speed": 24
},
"agencyId": 1,
"currentStopSequence": 37,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 267
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58653,
45.52648
]
},
"properties": {
"trip": {
"id": "285001953",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:32:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "510191"
},
"route": {
"id": "51",
"shortName": "51",
"longName": "Édouard-Montpetit",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30090",
"label": "30090",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 131,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 278
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53971,
45.58947
]
},
"properties": {
"trip": {
"id": "285030557",
"shortName": null,
"headsign": "Sud",
"startTime": "09:49:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "440168"
},
"route": {
"id": "44",
"shortName": "44",
"longName": "Armand-Bombardier",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30111",
"label": "30111",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 295,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 37,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749752756,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 285
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56798,
45.59034
]
},
"properties": {
"trip": {
"id": "285029510",
"shortName": null,
"headsign": "Sud",
"startTime": "09:46:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "330282"
},
"route": {
"id": "33",
"shortName": "33",
"longName": "Langelier",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30118",
"label": "30118",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 43,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 3,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 287
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53789,
45.60696
]
},
"properties": {
"trip": {
"id": "285029603",
"shortName": null,
"headsign": "Est",
"startTime": "09:52:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "1410585"
},
"route": {
"id": "141",
"shortName": "141",
"longName": "Jean-Talon Est",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30138",
"label": "30138",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 122,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 45,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 293
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62185,
45.59901
]
},
"properties": {
"trip": {
"id": "285029089",
"shortName": null,
"headsign": "Est",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "430204"
},
"route": {
"id": "43",
"shortName": "43",
"longName": "Monselet",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30141",
"label": "30141",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 52,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 25,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 296
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53078,
45.6037
]
},
"properties": {
"trip": {
"id": "285028469",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:18:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "260107"
},
"route": {
"id": "26",
"shortName": "26",
"longName": "Mercier-Est",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30144",
"label": "30144",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 297
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56958,
45.56543
]
},
"properties": {
"trip": {
"id": "284726948",
"shortName": null,
"headsign": "Est via de la Pépinière",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "1970142"
},
"route": {
"id": "197",
"shortName": "197",
"longName": "Rosemont",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30149",
"label": "30149",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 33,
"odometer": 0,
"speed": 31
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 300
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60142,
45.532
]
},
"properties": {
"trip": {
"id": "284727956",
"shortName": null,
"headsign": "Est",
"startTime": "09:50:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "920105"
},
"route": {
"id": "92",
"shortName": "92",
"longName": "Jean-Talon Ouest",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30150",
"label": "30150",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 264,
"odometer": 0,
"speed": 15
},
"agencyId": 1,
"currentStopSequence": 30,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 301
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.79904,
45.47198
]
},
"properties": {
"trip": {
"id": "285007279",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:45:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "720183"
},
"route": {
"id": "72",
"shortName": "72",
"longName": "Alfred-Nobel",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30152",
"label": "30152",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 236,
"odometer": 0,
"speed": 46
},
"agencyId": 1,
"currentStopSequence": 28,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 302
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54575,
45.59611
]
},
"properties": {
"trip": {
"id": "284727222",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:26:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "180228"
},
"route": {
"id": "18",
"shortName": "18",
"longName": "Beaubien",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30155",
"label": "30155",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 298,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 4,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 304
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.82232,
45.50926
]
},
"properties": {
"trip": {
"id": "285009491",
"shortName": null,
"headsign": "Est",
"startTime": "10:08:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2050112"
},
"route": {
"id": "205",
"shortName": "205",
"longName": "Gouin",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30174",
"label": "30174",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 151,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749752965,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 310
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67268,
45.50779
]
},
"properties": {
"trip": {
"id": "285008912",
"shortName": null,
"headsign": "Est",
"startTime": "09:32:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2020187"
},
"route": {
"id": "202",
"shortName": "202",
"longName": "Dawson",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30179",
"label": "30179",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 32,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 67,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749752840,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 311
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61919,
45.60604
]
},
"properties": {
"trip": {
"id": "285028502",
"shortName": null,
"headsign": "Nord",
"startTime": "09:50:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "320164"
},
"route": {
"id": "32",
"shortName": "32",
"longName": "Lacordaire",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30185",
"label": "30185",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 324,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 36,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 313
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55576,
45.61155
]
},
"properties": {
"trip": {
"id": "285029807",
"shortName": null,
"headsign": "Est",
"startTime": "10:01:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "1410585"
},
"route": {
"id": "141",
"shortName": "141",
"longName": "Jean-Talon Est",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30193",
"label": "30193",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 38,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 315
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74559,
45.4904
]
},
"properties": {
"trip": {
"id": "285006879",
"shortName": null,
"headsign": "Sud via Davignon",
"startTime": "10:01:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "4090095"
},
"route": {
"id": "409",
"shortName": "409",
"longName": "Express Des Sources",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30201",
"label": "30201",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 93,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 35,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 319
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73373,
45.50336
]
},
"properties": {
"trip": {
"id": "285007404",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:53:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "1640159"
},
"route": {
"id": "164",
"shortName": "164",
"longName": "Dudemaine",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30232",
"label": "30232",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 40,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 325
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73937,
45.49271
]
},
"properties": {
"trip": {
"id": "285007121",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:03:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "700197"
},
"route": {
"id": "70",
"shortName": "70",
"longName": "Bois-Franc",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30234",
"label": "30234",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 306,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749752701,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 326
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.76888,
45.50762
]
},
"properties": {
"trip": {
"id": "285010246",
"shortName": null,
"headsign": "Est",
"startTime": "09:56:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "4680091"
},
"route": {
"id": "468",
"shortName": "468",
"longName": "Express Pierrefonds / Gouin",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30248",
"label": "30248",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 89,
"odometer": 0,
"speed": 54
},
"agencyId": 1,
"currentStopSequence": 30,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 331
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68414,
45.51518
]
},
"properties": {
"trip": {
"id": "285006630",
"shortName": null,
"headsign": "Sud",
"startTime": "10:12:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "640165"
},
"route": {
"id": "64",
"shortName": "64",
"longName": "Grenet",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30254",
"label": "30254",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 20,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749752834,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 334
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73296,
45.48754
]
},
"properties": {
"trip": {
"id": "285007164",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "720183"
},
"route": {
"id": "72",
"shortName": "72",
"longName": "Alfred-Nobel",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30255",
"label": "30255",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 295,
"odometer": 0,
"speed": 54
},
"agencyId": 1,
"currentStopSequence": 7,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 335
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63491,
45.57537
]
},
"properties": {
"trip": {
"id": "284739006",
"shortName": null,
"headsign": "Nord",
"startTime": "09:54:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "670126"
},
"route": {
"id": "67",
"shortName": "67",
"longName": "Saint-Michel",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30847",
"label": "30847",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 300,
"odometer": 0,
"speed": 2
},
"agencyId": 1,
"currentStopSequence": 32,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 355
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64526,
45.5688
]
},
"properties": {
"trip": {
"id": "284738561",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:25:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "1210271"
},
"route": {
"id": "121",
"shortName": "121",
"longName": "Sauvé / Côte-Vertu",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30874",
"label": "30874",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 8,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 364
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64777,
45.58223
]
},
"properties": {
"trip": {
"id": "284739187",
"shortName": null,
"headsign": "Sud",
"startTime": "10:24:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "4670078"
},
"route": {
"id": "467",
"shortName": "467",
"longName": "Express Saint-Michel",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30879",
"label": "30879",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 132,
"odometer": 0,
"speed": 54
},
"agencyId": 1,
"currentStopSequence": 3,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 367
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61517,
45.53993
]
},
"properties": {
"trip": {
"id": "284726813",
"shortName": null,
"headsign": "Est",
"startTime": "10:30:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "990063"
},
"route": {
"id": "99",
"shortName": "99",
"longName": "Villeray",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31012",
"label": "31012",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 291,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 372
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62733,
45.49878
]
},
"properties": {
"trip": {
"id": "284727443",
"shortName": null,
"headsign": "Nord",
"startTime": "09:44:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "1290220"
},
"route": {
"id": "129",
"shortName": "129",
"longName": "Côte-Sainte-Catherine",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31013",
"label": "31013",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 30,
"currentStatus": 1,
"congestionLevel": 3,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 373
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59505,
45.56956
]
},
"properties": {
"trip": {
"id": "284727244",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:30:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "990065"
},
"route": {
"id": "99",
"shortName": "99",
"longName": "Villeray",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31019",
"label": "31019",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 375
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67303,
45.50823
]
},
"properties": {
"trip": {
"id": "285010111",
"shortName": null,
"headsign": "Sud via Davignon",
"startTime": "09:35:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "4090095"
},
"route": {
"id": "409",
"shortName": "409",
"longName": "Express Des Sources",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31040",
"label": "31040",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 304,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 49,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749752567,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 380
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5501,
45.62434
]
},
"properties": {
"trip": {
"id": "285283107",
"shortName": null,
"headsign": "Est",
"startTime": "09:38:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "850202"
},
"route": {
"id": "85",
"shortName": "85",
"longName": "Hochelaga",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31042",
"label": "31042",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 59,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 381
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54971,
45.52768
]
},
"properties": {
"trip": {
"id": "285282802",
"shortName": null,
"headsign": "Sud",
"startTime": "09:58:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "100075"
},
"route": {
"id": "10",
"shortName": "10",
"longName": "De Lorimier",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31052",
"label": "31052",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 31,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 387
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54692,
45.56121
]
},
"properties": {
"trip": {
"id": "285283828",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:34:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "340097"
},
"route": {
"id": "34",
"shortName": "34",
"longName": "Sainte-Catherine",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31058",
"label": "31058",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 388
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61007,
45.53917
]
},
"properties": {
"trip": {
"id": "284727100",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:59:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "950102"
},
"route": {
"id": "95",
"shortName": "95",
"longName": "Bélanger",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31096",
"label": "31096",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 213,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 41,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 398
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63626,
45.60113
]
},
"properties": {
"trip": {
"id": "284738702",
"shortName": null,
"headsign": "Est via Gouin / Ozias-Leduc",
"startTime": "10:12:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "480413"
},
"route": {
"id": "48",
"shortName": "48",
"longName": "Perras",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31117",
"label": "31117",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 65,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 8,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 405
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56591,
45.57923
]
},
"properties": {
"trip": {
"id": "284726578",
"shortName": null,
"headsign": "Est",
"startTime": "09:54:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "180220"
},
"route": {
"id": "18",
"shortName": "18",
"longName": "Beaubien",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31139",
"label": "31139",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 24,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 37,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 413
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65085,
45.53852
]
},
"properties": {
"trip": {
"id": "284739893",
"shortName": null,
"headsign": "Est destination Georges-Baril / Henri-Bourassa",
"startTime": "10:25:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "1460139"
},
"route": {
"id": "146",
"shortName": "146",
"longName": "Christophe-Colomb / Meilleur",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31141",
"label": "31141",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 20,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 10,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753029,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 414
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56511,
45.51083
]
},
"properties": {
"trip": {
"id": "285282850",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:51:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "1250191"
},
"route": {
"id": "125",
"shortName": "125",
"longName": "Ontario",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31146",
"label": "31146",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 37,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 417
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57339,
45.50507
]
},
"properties": {
"trip": {
"id": "285284193",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:03:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "240184"
},
"route": {
"id": "24",
"shortName": "24",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31151",
"label": "31151",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 420
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49561,
45.65036
]
},
"properties": {
"trip": {
"id": "285029704",
"shortName": null,
"headsign": "Est",
"startTime": "09:47:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "860188"
},
"route": {
"id": "86",
"shortName": "86",
"longName": "Pointe-aux-Trembles",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31157",
"label": "31157",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 105,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 61,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 423
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58796,
45.49121
]
},
"properties": {
"trip": {
"id": "285282777",
"shortName": null,
"headsign": "Est",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "240185"
},
"route": {
"id": "24",
"shortName": "24",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31161",
"label": "31161",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 36,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 425
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50961,
45.59533
]
},
"properties": {
"trip": {
"id": "285284081",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:45:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "1850127"
},
"route": {
"id": "185",
"shortName": "185",
"longName": "Sherbrooke",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31162",
"label": "31162",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 426
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59694,
45.58722
]
},
"properties": {
"trip": {
"id": "285030230",
"shortName": null,
"headsign": "Sud via Perras / Lacordaire",
"startTime": "10:03:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "4320137"
},
"route": {
"id": "432",
"shortName": "432",
"longName": "Express Lacordaire",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31170",
"label": "31170",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 153,
"odometer": 0,
"speed": 38
},
"agencyId": 1,
"currentStopSequence": 28,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 429
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58031,
45.50695
]
},
"properties": {
"trip": {
"id": "285284794",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:56:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "500003"
},
"route": {
"id": "50",
"shortName": "50",
"longName": "Vieux-Montréal / Vieux-Port",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31174",
"label": "31174",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 291,
"odometer": 0,
"speed": 22
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749752959,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 432
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5937,
45.59992
]
},
"properties": {
"trip": {
"id": "285029491",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:20:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "1920151"
},
"route": {
"id": "192",
"shortName": "192",
"longName": "Robert",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31187",
"label": "31187",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 185,
"odometer": 0,
"speed": 19
},
"agencyId": 1,
"currentStopSequence": 14,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 436
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60755,
45.53122
]
},
"properties": {
"trip": {
"id": "284727473",
"shortName": null,
"headsign": "Est",
"startTime": "10:29:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "180220"
},
"route": {
"id": "18",
"shortName": "18",
"longName": "Beaubien",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31204",
"label": "31204",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 29,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 4,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 442
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58105,
45.56103
]
},
"properties": {
"trip": {
"id": "284728073",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:04:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "180228"
},
"route": {
"id": "18",
"shortName": "18",
"longName": "Beaubien",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31222",
"label": "31222",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 209,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 448
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54677,
45.56916
]
},
"properties": {
"trip": {
"id": "285283273",
"shortName": null,
"headsign": "Nord destination Antonio-Dagenais / Lespinay",
"startTime": "10:33:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "1310099"
},
"route": {
"id": "131",
"shortName": "131",
"longName": "De l'Assomption",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31224",
"label": "31224",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 298,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 449
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59522,
45.5507
]
},
"properties": {
"trip": {
"id": "285283174",
"shortName": null,
"headsign": "Sud",
"startTime": "10:22:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "940089"
},
"route": {
"id": "94",
"shortName": "94",
"longName": "D'Iberville",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31225",
"label": "31225",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 125,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 10,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 450
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55475,
45.56538
]
},
"properties": {
"trip": {
"id": "285284013",
"shortName": null,
"headsign": "Sud",
"startTime": "10:01:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "1360112"
},
"route": {
"id": "136",
"shortName": "136",
"longName": "Viau",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31228",
"label": "31228",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 115,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 27,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 452
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.87239,
45.47345
]
},
"properties": {
"trip": {
"id": "284780221",
"shortName": null,
"headsign": "Est",
"startTime": "10:24:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "4700247"
},
"route": {
"id": "470",
"shortName": "470",
"longName": "Express Pierrefonds",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31815",
"label": "31815",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 14,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 8,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 462
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64593,
45.53431
]
},
"properties": {
"trip": {
"id": "284776938",
"shortName": null,
"headsign": "Nord",
"startTime": "09:53:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "800106"
},
"route": {
"id": "80",
"shortName": "80",
"longName": "Avenue du Parc",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31816",
"label": "31816",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 36,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 28,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 463
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59522,
45.55781
]
},
"properties": {
"trip": {
"id": "284739417",
"shortName": null,
"headsign": "Nord",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "670126"
},
"route": {
"id": "67",
"shortName": "67",
"longName": "Saint-Michel",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31826",
"label": "31826",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 288,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 18,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 467
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55235,
45.54897
]
},
"properties": {
"trip": {
"id": "284739365",
"shortName": null,
"headsign": "Sud",
"startTime": "09:53:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "4670078"
},
"route": {
"id": "467",
"shortName": "467",
"longName": "Express Saint-Michel",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31834",
"label": "31834",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 114,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 18,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 471
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64207,
45.59629
]
},
"properties": {
"trip": {
"id": "284741453",
"shortName": null,
"headsign": "Nord destination Cégep Marie-Victorin",
"startTime": "09:49:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "4390256"
},
"route": {
"id": "439",
"shortName": "439",
"longName": "Express Pie-IX",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31835",
"label": "31835",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 28,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 23,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 472
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63238,
45.60243
]
},
"properties": {
"trip": {
"id": "284738979",
"shortName": null,
"headsign": "Est",
"startTime": "09:44:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "690225"
},
"route": {
"id": "69",
"shortName": "69",
"longName": "Gouin",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31840",
"label": "31840",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 57,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 474
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6562,
45.55051
]
},
"properties": {
"trip": {
"id": "284739549",
"shortName": null,
"headsign": "Est",
"startTime": "09:55:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "1210266"
},
"route": {
"id": "121",
"shortName": "121",
"longName": "Sauvé / Côte-Vertu",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31843",
"label": "31843",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 31,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 477
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65056,
45.58398
]
},
"properties": {
"trip": {
"id": "284739331",
"shortName": null,
"headsign": "Sud",
"startTime": "10:29:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "670125"
},
"route": {
"id": "67",
"shortName": "67",
"longName": "Saint-Michel",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31854",
"label": "31854",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 482
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55136,
45.54692
]
},
"properties": {
"trip": {
"id": "284739694",
"shortName": null,
"headsign": "Nord",
"startTime": "10:36:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "670126"
},
"route": {
"id": "67",
"shortName": "67",
"longName": "Saint-Michel",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31857",
"label": "31857",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 484
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59792,
45.53164
]
},
"properties": {
"trip": {
"id": "284727840",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:36:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "1610134"
},
"route": {
"id": "161",
"shortName": "161",
"longName": "Van Horne",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "32006",
"label": "32006",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 488
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58812,
45.62073
]
},
"properties": {
"trip": {
"id": "285030167",
"shortName": null,
"headsign": "Nord",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "440174"
},
"route": {
"id": "44",
"shortName": "44",
"longName": "Armand-Bombardier",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "32023",
"label": "32023",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 53,
"odometer": 0,
"speed": 34
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 495
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68871,
45.53803
]
},
"properties": {
"trip": {
"id": "285007462",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:18:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "1640159"
},
"route": {
"id": "164",
"shortName": "164",
"longName": "Dudemaine",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "32030",
"label": "32030",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 219,
"odometer": 0,
"speed": 22
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 498
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53585,
45.54782
]
},
"properties": {
"trip": {
"id": "284741366",
"shortName": null,
"headsign": "Nord destination Laval",
"startTime": "10:29:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "4390254"
},
"route": {
"id": "439",
"shortName": "439",
"longName": "Express Pie-IX",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "32801",
"label": "32801",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 24,
"odometer": 0,
"speed": 4
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 499
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66756,
45.55614
]
},
"properties": {
"trip": {
"id": "284739461",
"shortName": null,
"headsign": "Est",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "690225"
},
"route": {
"id": "69",
"shortName": "69",
"longName": "Gouin",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "32805",
"label": "32805",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 24,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 501
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73875,
45.49029
]
},
"properties": {
"trip": {
"id": "284779191",
"shortName": null,
"headsign": "Est",
"startTime": "09:52:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "4700247"
},
"route": {
"id": "470",
"shortName": "470",
"longName": "Express Pierrefonds",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "33804",
"label": "33804",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 95,
"odometer": 0,
"speed": 81
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 507
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61941,
45.49504
]
},
"properties": {
"trip": {
"id": "284778954",
"shortName": null,
"headsign": "Sud",
"startTime": "10:11:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1650117"
},
"route": {
"id": "165",
"shortName": "165",
"longName": "Côte-des-Neiges",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "33817",
"label": "33817",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 119,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 511
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57176,
45.50859
]
},
"properties": {
"trip": {
"id": "284777002",
"shortName": null,
"headsign": "Nord",
"startTime": "10:28:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "800106"
},
"route": {
"id": "80",
"shortName": "80",
"longName": "Avenue du Parc",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "33825",
"label": "33825",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 303,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 3,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 512
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68372,
45.51342
]
},
"properties": {
"trip": {
"id": "284780026",
"shortName": null,
"headsign": "Est",
"startTime": "09:36:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "4700247"
},
"route": {
"id": "470",
"shortName": "470",
"longName": "Express Pierrefonds",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "33838",
"label": "33838",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749752587,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 520
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54871,
45.66846
]
},
"properties": {
"trip": {
"id": "285029014",
"shortName": null,
"headsign": "Sud",
"startTime": "10:25:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "4490189"
},
"route": {
"id": "449",
"shortName": "449",
"longName": "Express Rivière-des-Prairies",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "36003",
"label": "36003",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 233,
"odometer": 0,
"speed": 30
},
"agencyId": 1,
"currentStopSequence": 9,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 522
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60599,
45.56779
]
},
"properties": {
"trip": {
"id": "285030712",
"shortName": null,
"headsign": "Est",
"startTime": "10:16:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "1920150"
},
"route": {
"id": "192",
"shortName": "192",
"longName": "Robert",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "36008",
"label": "36008",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 37,
"odometer": 0,
"speed": 30
},
"agencyId": 1,
"currentStopSequence": 16,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 524
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57127,
45.6592
]
},
"properties": {
"trip": {
"id": "285029454",
"shortName": null,
"headsign": "Est",
"startTime": "10:44:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "860188"
},
"route": {
"id": "86",
"shortName": "86",
"longName": "Pointe-aux-Trembles",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "36024",
"label": "36024",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 324,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 530
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63105,
45.46262
]
},
"properties": {
"trip": {
"id": "284777698",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:12:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1050147"
},
"route": {
"id": "105",
"shortName": "105",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37011",
"label": "37011",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 53,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 18,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 541
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66418,
45.50677
]
},
"properties": {
"trip": {
"id": "284776755",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:12:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "160088"
},
"route": {
"id": "16",
"shortName": "16",
"longName": "Graham",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37014",
"label": "37014",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 214,
"odometer": 0,
"speed": 51
},
"agencyId": 1,
"currentStopSequence": 23,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 542
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60424,
45.52826
]
},
"properties": {
"trip": {
"id": "284739783",
"shortName": null,
"headsign": "Nord",
"startTime": "10:04:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "550147"
},
"route": {
"id": "55",
"shortName": "55",
"longName": "Boulevard Saint-Laurent",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37028",
"label": "37028",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 303,
"odometer": 0,
"speed": 38
},
"agencyId": 1,
"currentStopSequence": 23,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 546
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62862,
45.51027
]
},
"properties": {
"trip": {
"id": "284778468",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:07:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1600126"
},
"route": {
"id": "160",
"shortName": "160",
"longName": "Barclay",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37035",
"label": "37035",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 213,
"odometer": 0,
"speed": 25
},
"agencyId": 1,
"currentStopSequence": 23,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 548
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.90163,
45.43764
]
},
"properties": {
"trip": {
"id": "284777745",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:20:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "680415"
},
"route": {
"id": "68",
"shortName": "68",
"longName": "Pierrefonds",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37043",
"label": "37043",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 79,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749752877,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 553
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56168,
45.51559
]
},
"properties": {
"trip": {
"id": "284780634",
"shortName": null,
"headsign": "Est trajet 1 gare d’autocars de Montréal.",
"startTime": "09:50:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "7471231"
},
"route": {
"id": "747",
"shortName": "747",
"longName": "YUL Aéroport / Centre-Ville",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37056",
"label": "37056",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 14,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 557
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.85016,
45.45893
]
},
"properties": {
"trip": {
"id": "284780369",
"shortName": null,
"headsign": "Est",
"startTime": "10:17:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "4850088"
},
"route": {
"id": "485",
"shortName": "485",
"longName": "Express Antoine-Faucon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37069",
"label": "37069",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 325,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 561
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60564,
45.52356
]
},
"properties": {
"trip": {
"id": "284778507",
"shortName": null,
"headsign": "Est",
"startTime": "10:02:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1600123"
},
"route": {
"id": "160",
"shortName": "160",
"longName": "Barclay",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37081",
"label": "37081",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 33,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 568
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70069,
45.47514
]
},
"properties": {
"trip": {
"id": "284777237",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:57:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1000245"
},
"route": {
"id": "100",
"shortName": "100",
"longName": "Crémazie",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37082",
"label": "37082",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 313,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 569
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70144,
45.5063
]
},
"properties": {
"trip": {
"id": "284778418",
"shortName": null,
"headsign": "Sud",
"startTime": "09:49:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1280152"
},
"route": {
"id": "128",
"shortName": "128",
"longName": "Saint-Laurent",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37090",
"label": "37090",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 218,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 40,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 570
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71011,
45.52542
]
},
"properties": {
"trip": {
"id": "284779599",
"shortName": null,
"headsign": "Ouest destination Gare Bois-Franc",
"startTime": "09:31:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1710234"
},
"route": {
"id": "171",
"shortName": "171",
"longName": "Henri-Bourassa",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37095",
"label": "37095",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 45,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749752467,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 572
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58588,
45.58118
]
},
"properties": {
"trip": {
"id": "285284097",
"shortName": null,
"headsign": "Nord destination Antonio-Dagenais / Lespinay",
"startTime": "10:05:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "1310099"
},
"route": {
"id": "131",
"shortName": "131",
"longName": "De l'Assomption",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38006",
"label": "38006",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 122,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 15,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 576
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5488,
45.5319
]
},
"properties": {
"trip": {
"id": "285284046",
"shortName": null,
"headsign": "Sud",
"startTime": "08:36:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "550145"
},
"route": {
"id": "55",
"shortName": "55",
"longName": "Boulevard Saint-Laurent",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38023",
"label": "38023",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 46,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 582
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54174,
45.59849
]
},
"properties": {
"trip": {
"id": "285283713",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "850206"
},
"route": {
"id": "85",
"shortName": "85",
"longName": "Hochelaga",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38027",
"label": "38027",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 120,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 23,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 584
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69335,
45.44787
]
},
"properties": {
"trip": {
"id": "285008138",
"shortName": null,
"headsign": "Sud",
"startTime": "09:46:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "1960210"
},
"route": {
"id": "196",
"shortName": "196",
"longName": "Parc-Industriel-Lachine",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38038",
"label": "38038",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 50,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 587
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6839,
45.51327
]
},
"properties": {
"trip": {
"id": "285007073",
"shortName": null,
"headsign": "Est",
"startTime": "10:02:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "700192"
},
"route": {
"id": "70",
"shortName": "70",
"longName": "Bois-Franc",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38046",
"label": "38046",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 43,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 3,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749752975,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 590
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.86952,
45.49183
]
},
"properties": {
"trip": {
"id": "285008930",
"shortName": null,
"headsign": "Nord",
"startTime": "10:04:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2070090"
},
"route": {
"id": "207",
"shortName": "207",
"longName": "Jacques-Bizard",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38047",
"label": "38047",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 227,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 41,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 591
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.8252,
45.43072
]
},
"properties": {
"trip": {
"id": "285008552",
"shortName": null,
"headsign": "Sud",
"startTime": "10:12:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2010212"
},
"route": {
"id": "201",
"shortName": "201",
"longName": "Saint-Charles / Saint-Jean",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38052",
"label": "38052",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 244,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 18,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 593
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.84885,
45.48701
]
},
"properties": {
"trip": {
"id": "285008466",
"shortName": null,
"headsign": "Sud",
"startTime": "09:36:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2010212"
},
"route": {
"id": "201",
"shortName": "201",
"longName": "Saint-Charles / Saint-Jean",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38055",
"label": "38055",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 60,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 595
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71857,
45.53122
]
},
"properties": {
"trip": {
"id": "285009652",
"shortName": null,
"headsign": "Sud",
"startTime": "10:36:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "640165"
},
"route": {
"id": "64",
"shortName": "64",
"longName": "Grenet",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38072",
"label": "38072",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 602
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69688,
45.46941
]
},
"properties": {
"trip": {
"id": "285008260",
"shortName": null,
"headsign": "Sud",
"startTime": "10:12:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "1960210"
},
"route": {
"id": "196",
"shortName": "196",
"longName": "Parc-Industriel-Lachine",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38076",
"label": "38076",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 222,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 21,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 604
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83169,
45.46613
]
},
"properties": {
"trip": {
"id": "285009262",
"shortName": null,
"headsign": "Sud",
"startTime": "10:06:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2070089"
},
"route": {
"id": "207",
"shortName": "207",
"longName": "Jacques-Bizard",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38085",
"label": "38085",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 149,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749752765,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 606
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51265,
45.60275
]
},
"properties": {
"trip": {
"id": "285282309",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:27:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "220074"
},
"route": {
"id": "22",
"shortName": "22",
"longName": "Notre-Dame",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38089",
"label": "38089",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 179,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 7,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 609
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53103,
45.51162
]
},
"properties": {
"trip": {
"id": "285282461",
"shortName": null,
"headsign": "Est",
"startTime": "10:07:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "7770040"
},
"route": {
"id": "777",
"shortName": "777",
"longName": "Jean-Drapeau / Casino / Bonaventure",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38094",
"label": "38094",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 305,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 11,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749752775,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 613
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55254,
45.44886
]
},
"properties": {
"trip": {
"id": "285282535",
"shortName": null,
"headsign": "Sud",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "1760010"
},
"route": {
"id": "176",
"shortName": "176",
"longName": "Berlioz",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38099",
"label": "38099",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 266,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 14,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749752451,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 616
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60503,
45.47762
]
},
"properties": {
"trip": {
"id": "285283437",
"shortName": null,
"headsign": "Est",
"startTime": "10:22:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "240185"
},
"route": {
"id": "24",
"shortName": "24",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38100",
"label": "38100",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 39,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 8,
"currentStatus": 2,
"congestionLevel": 3,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 617
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56026,
45.51492
]
},
"properties": {
"trip": {
"id": "284780563",
"shortName": null,
"headsign": "Est trajet 1 gare d’autocars de Montréal.",
"startTime": "09:33:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "7471231"
},
"route": {
"id": "747",
"shortName": "747",
"longName": "YUL Aéroport / Centre-Ville",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39011",
"label": "39011",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 622
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57448,
45.48687
]
},
"properties": {
"trip": {
"id": "284780469",
"shortName": null,
"headsign": "Est trajet 1 gare d’autocars de Montréal.",
"startTime": "10:06:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "7471231"
},
"route": {
"id": "747",
"shortName": "747",
"longName": "YUL Aéroport / Centre-Ville",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39015",
"label": "39015",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 51,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 3,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 3,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 624
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55148,
45.52534
]
},
"properties": {
"trip": {
"id": "285283732",
"shortName": null,
"headsign": "Est",
"startTime": "10:01:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "1500060"
},
"route": {
"id": "150",
"shortName": "150",
"longName": "René-Lévesque",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39022",
"label": "39022",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 626
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49693,
45.63048
]
},
"properties": {
"trip": {
"id": "285029982",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "1890204"
},
"route": {
"id": "189",
"shortName": "189",
"longName": "Notre-Dame",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39043",
"label": "39043",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 217,
"odometer": 0,
"speed": 5
},
"agencyId": 1,
"currentStopSequence": 39,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 635
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55947,
45.66116
]
},
"properties": {
"trip": {
"id": "285030146",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:28:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "490345"
},
"route": {
"id": "49",
"shortName": "49",
"longName": "Maurice-Duplessis",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39045",
"label": "39045",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 233,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 5,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 636
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53465,
45.5965
]
},
"properties": {
"trip": {
"id": "285029544",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:35:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "1410586"
},
"route": {
"id": "141",
"shortName": "141",
"longName": "Jean-Talon Est",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39049",
"label": "39049",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 639
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54982,
45.5779
]
},
"properties": {
"trip": {
"id": "285029829",
"shortName": null,
"headsign": "Sud",
"startTime": "09:54:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "320170"
},
"route": {
"id": "32",
"shortName": "32",
"longName": "Lacordaire",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39067",
"label": "39067",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 107,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 37,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 648
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64662,
45.59041
]
},
"properties": {
"trip": {
"id": "285028164",
"shortName": null,
"headsign": "Est",
"startTime": "10:37:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "430204"
},
"route": {
"id": "43",
"shortName": "43",
"longName": "Monselet",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39115",
"label": "39115",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 667
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57413,
45.58051
]
},
"properties": {
"trip": {
"id": "285029421",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:01:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "1410586"
},
"route": {
"id": "141",
"shortName": "141",
"longName": "Jean-Talon Est",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39123",
"label": "39123",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 207,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753030,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 671
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58874,
45.56549
]
},
"properties": {
"trip": {
"id": "284741553",
"shortName": null,
"headsign": "Nord destination Cégep Marie-Victorin",
"startTime": "09:39:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "4390256"
},
"route": {
"id": "439",
"shortName": "439",
"longName": "Express Pie-IX",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29838",
"label": "29838",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 300,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 14,
"currentStatus": 2,
"congestionLevel": 3,
"occupancyStatus": 1,
"firstSeenAt": 1574403193,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 829
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54662,
45.66577
]
},
"properties": {
"trip": {
"id": "285029258",
"shortName": null,
"headsign": "Est",
"startTime": "10:20:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "1830089"
},
"route": {
"id": "183",
"shortName": "183",
"longName": "Gouin Est",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31065",
"label": "31065",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 334,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574403198,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 836
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61833,
45.55399
]
},
"properties": {
"trip": {
"id": "284738245",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "1930135"
},
"route": {
"id": "193",
"shortName": "193",
"longName": "Jarry",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31067",
"label": "31067",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 212,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 33,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574403198,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 837
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56471,
45.61774
]
},
"properties": {
"trip": {
"id": "285029722",
"shortName": null,
"headsign": "Sud",
"startTime": "10:04:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "4490189"
},
"route": {
"id": "449",
"shortName": "449",
"longName": "Express Rivière-des-Prairies",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "36016",
"label": "36016",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 122,
"odometer": 0,
"speed": 44
},
"agencyId": 1,
"currentStopSequence": 38,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574403204,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 848
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49776,
45.68998
]
},
"properties": {
"trip": {
"id": "285030852",
"shortName": null,
"headsign": "Est",
"startTime": "10:02:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "1860250"
},
"route": {
"id": "186",
"shortName": "186",
"longName": "Sherbrooke-Est",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "36035",
"label": "36035",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 17,
"odometer": 0,
"speed": 24
},
"agencyId": 1,
"currentStopSequence": 42,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574403205,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 849
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66083,
45.47672
]
},
"properties": {
"trip": {
"id": "284778764",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:55:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1620099"
},
"route": {
"id": "162",
"shortName": "162",
"longName": "Westminster",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37018",
"label": "37018",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 28,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 36,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574403205,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 852
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55535,
45.48707
]
},
"properties": {
"trip": {
"id": "285283464",
"shortName": null,
"headsign": "Sud via Wellington / Bridge",
"startTime": "10:20:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "740073"
},
"route": {
"id": "74",
"shortName": "74",
"longName": "Bridge",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38009",
"label": "38009",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 97,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 11,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574403205,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 857
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5806,
45.53898
]
},
"properties": {
"trip": {
"id": "285284058",
"shortName": null,
"headsign": "Nord",
"startTime": "10:17:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "100073"
},
"route": {
"id": "10",
"shortName": "10",
"longName": "De Lorimier",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39024",
"label": "39024",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 298,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 14,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574403208,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 861
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60117,
45.48098
]
},
"properties": {
"trip": {
"id": "285284125",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:46:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "240184"
},
"route": {
"id": "24",
"shortName": "24",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39025",
"label": "39025",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 215,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 41,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574403208,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 862
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55808,
45.60817
]
},
"properties": {
"trip": {
"id": "285028320",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:19:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "1410586"
},
"route": {
"id": "141",
"shortName": "141",
"longName": "Jean-Talon Est",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "36013",
"label": "36013",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 196,
"odometer": 0,
"speed": 41
},
"agencyId": 1,
"currentStopSequence": 18,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574403550,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 1048
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65165,
45.4409
]
},
"properties": {
"trip": {
"id": "286573476",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:59:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1980009"
},
"route": {
"id": "198",
"shortName": "198",
"longName": "Broadway",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29067",
"label": "29067",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 274,
"odometer": 0,
"speed": 26
},
"agencyId": 1,
"currentStopSequence": 23,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574409309,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 1083
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51908,
45.59843
]
},
"properties": {
"trip": {
"id": "285030798",
"shortName": null,
"headsign": "Sud",
"startTime": "10:01:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "280921"
},
"route": {
"id": "28",
"shortName": "28",
"longName": "Honoré-Beaugrand",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30083",
"label": "30083",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 201,
"odometer": 0,
"speed": 31
},
"agencyId": 1,
"currentStopSequence": 38,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574409313,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 1098
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68504,
45.51575
]
},
"properties": {
"trip": {
"id": "285008855",
"shortName": null,
"headsign": "Nord",
"startTime": "10:28:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "1700176"
},
"route": {
"id": "170",
"shortName": "170",
"longName": "Keller",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38068",
"label": "38068",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574409323,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 1108
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56348,
45.65894
]
},
"properties": {
"trip": {
"id": "285029378",
"shortName": null,
"headsign": "Est",
"startTime": "09:37:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "490344"
},
"route": {
"id": "49",
"shortName": "49",
"longName": "Maurice-Duplessis",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39114",
"label": "39114",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 54,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 46,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574409325,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 1109
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5818,
45.45704
]
},
"properties": {
"trip": {
"id": "286570902",
"shortName": null,
"headsign": "Est",
"startTime": "10:17:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "370158"
},
"route": {
"id": "37",
"shortName": "37",
"longName": "Jolicoeur",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "27534",
"label": "27534",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 93,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 15,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574409605,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 1110
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56009,
45.53922
]
},
"properties": {
"trip": {
"id": "285283769",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:42:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "240184"
},
"route": {
"id": "24",
"shortName": "24",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39039",
"label": "39039",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574409625,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1114
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.81424,
45.51082
]
},
"properties": {
"trip": {
"id": "285009459",
"shortName": null,
"headsign": "Nord",
"startTime": "09:54:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2090097"
},
"route": {
"id": "209",
"shortName": "209",
"longName": "Des Sources",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38075",
"label": "38075",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 90,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 38,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574411421,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 1125
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6075,
45.56248
]
},
"properties": {
"trip": {
"id": "284739097",
"shortName": null,
"headsign": "Est",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "410323"
},
"route": {
"id": "41",
"shortName": "41",
"longName": "Quartier Saint-Michel / Ahuntsic",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31137",
"label": "31137",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 31,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574412016,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 1128
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70094,
45.50649
]
},
"properties": {
"trip": {
"id": "284778433",
"shortName": null,
"headsign": "Nord",
"startTime": "10:03:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1280153"
},
"route": {
"id": "128",
"shortName": "128",
"longName": "Saint-Laurent",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37070",
"label": "37070",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 35,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574412320,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1131
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55779,
45.48486
]
},
"properties": {
"trip": {
"id": "286571927",
"shortName": null,
"headsign": "Est",
"startTime": "09:58:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1070142"
},
"route": {
"id": "107",
"shortName": "107",
"longName": "Verdun",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29100",
"label": "29100",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 8,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 41,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574413506,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 1134
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60311,
45.4793
]
},
"properties": {
"trip": {
"id": "286571529",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:19:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1040117"
},
"route": {
"id": "104",
"shortName": "104",
"longName": "Cavendish",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30023",
"label": "30023",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 220,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574414106,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 1137
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67175,
45.52436
]
},
"properties": {
"trip": {
"id": "284779516",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1710232"
},
"route": {
"id": "171",
"shortName": "171",
"longName": "Henri-Bourassa",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37102",
"label": "37102",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 212,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 3,
"firstSeenAt": 1574426404,
"lastSeenAt": 1749753030,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1145
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56859,
45.54963
]
},
"properties": {
"trip": {
"id": "284738900",
"shortName": null,
"headsign": "Sud",
"startTime": "09:54:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "670125"
},
"route": {
"id": "67",
"shortName": "67",
"longName": "Saint-Michel",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31859",
"label": "31859",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574433305,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 1156
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59009,
45.438
]
},
"properties": {
"trip": {
"id": "286571982",
"shortName": null,
"headsign": "Est",
"startTime": "10:24:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1070142"
},
"route": {
"id": "107",
"shortName": "107",
"longName": "Verdun",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29079",
"label": "29079",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 14,
"odometer": 0,
"speed": 25
},
"agencyId": 1,
"currentStopSequence": 13,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574434202,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 1165
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.76596,
45.49833
]
},
"properties": {
"trip": {
"id": "284778572",
"shortName": null,
"headsign": "Est",
"startTime": "10:40:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1750105"
},
"route": {
"id": "175",
"shortName": "175",
"longName": "Griffith / Saint-François",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37013",
"label": "37013",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 141,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574434506,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1188
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6221,
45.49826
]
},
"properties": {
"trip": {
"id": "284779376",
"shortName": null,
"headsign": "Nord",
"startTime": "10:29:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1190075"
},
"route": {
"id": "119",
"shortName": "119",
"longName": "Rockland",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37074",
"label": "37074",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 32,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574434506,
"lastSeenAt": 1749753031,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1189
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66975,
45.52756
]
},
"properties": {
"trip": {
"id": "284739717",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:01:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "1210271"
},
"route": {
"id": "121",
"shortName": "121",
"longName": "Sauvé / Côte-Vertu",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29836",
"label": "29836",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 204,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 31,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574434804,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 1194
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54697,
45.48975
]
},
"properties": {
"trip": {
"id": "285283221",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:17:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "7770041"
},
"route": {
"id": "777",
"shortName": "777",
"longName": "Jean-Drapeau / Casino / Bonaventure",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31032",
"label": "31032",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 280,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 7,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574434805,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1201
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62357,
45.47476
]
},
"properties": {
"trip": {
"id": "284777087",
"shortName": null,
"headsign": "Est",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1030154"
},
"route": {
"id": "103",
"shortName": "103",
"longName": "Monkland",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37053",
"label": "37053",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 34,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574435107,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1224
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58168,
45.55174
]
},
"properties": {
"trip": {
"id": "284727374",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "1970141"
},
"route": {
"id": "197",
"shortName": "197",
"longName": "Rosemont",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30110",
"label": "30110",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 25,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574435403,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 1234
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55484,
45.51655
]
},
"properties": {
"trip": {
"id": "285283792",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:22:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "1500061"
},
"route": {
"id": "150",
"shortName": "150",
"longName": "René-Lévesque",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30060",
"label": "30060",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 214,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 7,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574435706,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 1251
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64452,
45.45818
]
},
"properties": {
"trip": {
"id": "284777848",
"shortName": null,
"headsign": "Est",
"startTime": "10:33:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1050151"
},
"route": {
"id": "105",
"shortName": "105",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37008",
"label": "37008",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 121,
"odometer": 0,
"speed": 30
},
"agencyId": 1,
"currentStopSequence": 4,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574435710,
"lastSeenAt": 1749753029,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1263
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65097,
45.5844
]
},
"properties": {
"trip": {
"id": "284738764",
"shortName": null,
"headsign": "Nord",
"startTime": "09:44:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "670126"
},
"route": {
"id": "67",
"shortName": "67",
"longName": "Saint-Michel",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30864",
"label": "30864",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 315,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 38,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436004,
"lastSeenAt": 1749752760,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 1274
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53465,
45.5965
]
},
"properties": {
"trip": {
"id": "285030460",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:43:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "1410586"
},
"route": {
"id": "141",
"shortName": "141",
"longName": "Jean-Talon Est",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31033",
"label": "31033",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436004,
"lastSeenAt": 1749753031,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 1276
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60044,
45.60342
]
},
"properties": {
"trip": {
"id": "285028565",
"shortName": null,
"headsign": "Nord",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "330287"
},
"route": {
"id": "33",
"shortName": "33",
"longName": "Langelier",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "36019",
"label": "36019",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 312,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 33,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574436007,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 1286
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5338,
45.54726
]
},
"properties": {
"trip": {
"id": "284741514",
"shortName": null,
"headsign": "Nord destination Cégep Marie-Victorin",
"startTime": "10:49:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "4390256"
},
"route": {
"id": "439",
"shortName": "439",
"longName": "Express Pie-IX",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29829",
"label": "29829",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 226,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436304,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 1297
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60299,
45.49523
]
},
"properties": {
"trip": {
"id": "284777460",
"shortName": null,
"headsign": "Nord",
"startTime": "10:20:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1660192"
},
"route": {
"id": "166",
"shortName": "166",
"longName": "Queen-Mary",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30008",
"label": "30008",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 249,
"odometer": 0,
"speed": 55
},
"agencyId": 1,
"currentStopSequence": 11,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436304,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1298
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68283,
45.51411
]
},
"properties": {
"trip": {
"id": "284739019",
"shortName": null,
"headsign": "Est",
"startTime": "10:17:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "1210266"
},
"route": {
"id": "121",
"shortName": "121",
"longName": "Sauvé / Côte-Vertu",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30815",
"label": "30815",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 38,
"odometer": 0,
"speed": 22
},
"agencyId": 1,
"currentStopSequence": 15,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436304,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 1299
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59769,
45.53173
]
},
"properties": {
"trip": {
"id": "284727122",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:50:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "1970141"
},
"route": {
"id": "197",
"shortName": "197",
"longName": "Rosemont",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31025",
"label": "31025",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 141,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 38,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574436304,
"lastSeenAt": 1749752606,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 1300
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75429,
45.49531
]
},
"properties": {
"trip": {
"id": "285006595",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:02:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2150155"
},
"route": {
"id": "215",
"shortName": "215",
"longName": "Henri-Bourassa",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31189",
"label": "31189",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 223,
"odometer": 0,
"speed": 44
},
"agencyId": 1,
"currentStopSequence": 28,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436306,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 1306
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63733,
45.54746
]
},
"properties": {
"trip": {
"id": "285029671",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:50:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "1920151"
},
"route": {
"id": "192",
"shortName": "192",
"longName": "Robert",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "36025",
"label": "36025",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 211,
"odometer": 0,
"speed": 41
},
"agencyId": 1,
"currentStopSequence": 49,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436307,
"lastSeenAt": 1749752974,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 1310
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70832,
45.52471
]
},
"properties": {
"trip": {
"id": "285006561",
"shortName": null,
"headsign": "Sud",
"startTime": "10:24:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "640165"
},
"route": {
"id": "64",
"shortName": "64",
"longName": "Grenet",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38083",
"label": "38083",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 132,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 9,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436309,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 1317
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6193,
45.47903
]
},
"properties": {
"trip": {
"id": "285282304",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:28:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "240184"
},
"route": {
"id": "24",
"shortName": "24",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31080",
"label": "31080",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 47,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436605,
"lastSeenAt": 1749752728,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1339
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57521,
45.49352
]
},
"properties": {
"trip": {
"id": "284727669",
"shortName": null,
"headsign": "Sud",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "660103"
},
"route": {
"id": "66",
"shortName": "66",
"longName": "The Boulevard",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29037",
"label": "29037",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 33,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 36,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436906,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 1366
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61629,
45.57743
]
},
"properties": {
"trip": {
"id": "284741468",
"shortName": null,
"headsign": "Sud destination Pie-IX / Notre-Dame",
"startTime": "10:02:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "4390255"
},
"route": {
"id": "439",
"shortName": "439",
"longName": "Express Pie-IX",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30813",
"label": "30813",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 121,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 21,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436909,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 1371
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73817,
45.44804
]
},
"properties": {
"trip": {
"id": "284780385",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:06:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "4850087"
},
"route": {
"id": "485",
"shortName": "485",
"longName": "Express Antoine-Faucon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37005",
"label": "37005",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 264,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436912,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1377
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54875,
45.54372
]
},
"properties": {
"trip": {
"id": "285283958",
"shortName": null,
"headsign": "Est",
"startTime": "10:06:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "290081"
},
"route": {
"id": "29",
"shortName": "29",
"longName": "Rachel",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38098",
"label": "38098",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 117,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 30,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436912,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1378
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65216,
45.44256
]
},
"properties": {
"trip": {
"id": "286572921",
"shortName": null,
"headsign": "Nord",
"startTime": "09:47:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1140009"
},
"route": {
"id": "114",
"shortName": "114",
"longName": "Angrignon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29109",
"label": "29109",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 298,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 39,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574437204,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 1384
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61245,
45.56514
]
},
"properties": {
"trip": {
"id": "284739500",
"shortName": null,
"headsign": "Nord",
"startTime": "10:04:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "670126"
},
"route": {
"id": "67",
"shortName": "67",
"longName": "Saint-Michel",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31836",
"label": "31836",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 295,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 25,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574437210,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 1402
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.7514,
45.49733
]
},
"properties": {
"trip": {
"id": "285009820",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:55:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2170107"
},
"route": {
"id": "217",
"shortName": "217",
"longName": "Anse-à-l'Orme",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38054",
"label": "38054",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 44,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 30,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574437212,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 1408
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63986,
45.5993
]
},
"properties": {
"trip": {
"id": "285030496",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:56:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "490345"
},
"route": {
"id": "49",
"shortName": "49",
"longName": "Maurice-Duplessis",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39087",
"label": "39087",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 46,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574437213,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 1410
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65305,
45.57885
]
},
"properties": {
"trip": {
"id": "284737803",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:02:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "690221"
},
"route": {
"id": "69",
"shortName": "69",
"longName": "Gouin",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30881",
"label": "30881",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 207,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574437510,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 1438
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57414,
45.5129
]
},
"properties": {
"trip": {
"id": "284739215",
"shortName": null,
"headsign": "Sud",
"startTime": "09:44:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "550145"
},
"route": {
"id": "55",
"shortName": "55",
"longName": "Boulevard Saint-Laurent",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31150",
"label": "31150",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 123,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 40,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574437511,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1441
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61974,
45.57914
]
},
"properties": {
"trip": {
"id": "284741397",
"shortName": null,
"headsign": "Nord destination Laval",
"startTime": "09:59:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "4390254"
},
"route": {
"id": "439",
"shortName": "439",
"longName": "Express Pie-IX",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31850",
"label": "31850",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 302,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 18,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574437813,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 1487
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65079,
45.48899
]
},
"properties": {
"trip": {
"id": "284779468",
"shortName": null,
"headsign": "Sud",
"startTime": "10:36:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1660191"
},
"route": {
"id": "166",
"shortName": "166",
"longName": "Queen-Mary",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37083",
"label": "37083",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574437814,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1488
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58485,
45.48212
]
},
"properties": {
"trip": {
"id": "286573944",
"shortName": null,
"headsign": "Est",
"startTime": "09:40:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "4250077"
},
"route": {
"id": "425",
"shortName": "425",
"longName": "Express Anse-à-l'Orme",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "28093",
"label": "28093",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 124,
"odometer": 0,
"speed": 5
},
"agencyId": 1,
"currentStopSequence": 33,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574438103,
"lastSeenAt": 1749753029,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 1497
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55052,
45.44958
]
},
"properties": {
"trip": {
"id": "285282254",
"shortName": null,
"headsign": "Sud",
"startTime": "10:03:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "1680169"
},
"route": {
"id": "168",
"shortName": "168",
"longName": "Cité-du-Havre",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31186",
"label": "31186",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 213,
"odometer": 0,
"speed": 31
},
"agencyId": 1,
"currentStopSequence": 26,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574438112,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1513
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60771,
45.6209
]
},
"properties": {
"trip": {
"id": "285030544",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:11:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "430203"
},
"route": {
"id": "43",
"shortName": "43",
"longName": "Monselet",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30064",
"label": "30064",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 233,
"odometer": 0,
"speed": 43
},
"agencyId": 1,
"currentStopSequence": 23,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574438408,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 1541
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68723,
45.51079
]
},
"properties": {
"trip": {
"id": "284739881",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:49:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "1210271"
},
"route": {
"id": "121",
"shortName": "121",
"longName": "Sauvé / Côte-Vertu",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30863",
"label": "30863",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 41,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574438411,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 1546
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62408,
45.55323
]
},
"properties": {
"trip": {
"id": "285282263",
"shortName": null,
"headsign": "Sud",
"startTime": "10:28:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "100075"
},
"route": {
"id": "10",
"shortName": "10",
"longName": "De Lorimier",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38033",
"label": "38033",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 3,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574438418,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1555
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58393,
45.48168
]
},
"properties": {
"trip": {
"id": "286574629",
"shortName": null,
"headsign": "Est",
"startTime": "10:01:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "4960097"
},
"route": {
"id": "496",
"shortName": "496",
"longName": "Express Victoria",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29095",
"label": "29095",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 124,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574438709,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 1578
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.86995,
45.46267
]
},
"properties": {
"trip": {
"id": "285010364",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:46:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "4680086"
},
"route": {
"id": "468",
"shortName": "468",
"longName": "Express Pierrefonds / Gouin",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31195",
"label": "31195",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 123,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 46,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574438718,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 1596
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67744,
45.51818
]
},
"properties": {
"trip": {
"id": "284779710",
"shortName": null,
"headsign": "Est",
"startTime": "10:11:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1710235"
},
"route": {
"id": "171",
"shortName": "171",
"longName": "Henri-Bourassa",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37087",
"label": "37087",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574439019,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1620
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62313,
45.47523
]
},
"properties": {
"trip": {
"id": "284777548",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:26:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1620099"
},
"route": {
"id": "162",
"shortName": "162",
"longName": "Westminster",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37097",
"label": "37097",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 4,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574439019,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1621
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6927,
45.50623
]
},
"properties": {
"trip": {
"id": "285008242",
"shortName": null,
"headsign": "Nord",
"startTime": "09:49:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "1960208"
},
"route": {
"id": "196",
"shortName": "196",
"longName": "Parc-Industriel-Lachine",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38063",
"label": "38063",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 56,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574439020,
"lastSeenAt": 1749753029,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 1623
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57997,
45.48465
]
},
"properties": {
"trip": {
"id": "284780684",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "7471239"
},
"route": {
"id": "747",
"shortName": "747",
"longName": "YUL Aéroport / Centre-Ville",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39006",
"label": "39006",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 335,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 3,
"firstSeenAt": 1574439020,
"lastSeenAt": 1749753031,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1625
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57956,
45.48974
]
},
"properties": {
"trip": {
"id": "285283878",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:03:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "1500061"
},
"route": {
"id": "150",
"shortName": "150",
"longName": "René-Lévesque",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30220",
"label": "30220",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 233,
"odometer": 0,
"speed": 54
},
"agencyId": 1,
"currentStopSequence": 25,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574439315,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1645
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83,
45.46726
]
},
"properties": {
"trip": {
"id": "285009586",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:35:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2150155"
},
"route": {
"id": "215",
"shortName": "215",
"longName": "Henri-Bourassa",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "28076",
"label": "28076",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 234,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 51,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574439609,
"lastSeenAt": 1749752490,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 1673
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54344,
45.60495
]
},
"properties": {
"trip": {
"id": "285030824",
"shortName": null,
"headsign": "Nord",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "280922"
},
"route": {
"id": "28",
"shortName": "28",
"longName": "Honoré-Beaugrand",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31193",
"label": "31193",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 186,
"odometer": 0,
"speed": 32
},
"agencyId": 1,
"currentStopSequence": 21,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574439622,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 1688
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62921,
45.46358
]
},
"properties": {
"trip": {
"id": "284777653",
"shortName": null,
"headsign": "Est",
"startTime": "10:24:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1050151"
},
"route": {
"id": "105",
"shortName": "105",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37017",
"label": "37017",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 45,
"odometer": 0,
"speed": 20
},
"agencyId": 1,
"currentStopSequence": 10,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574439624,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1695
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56234,
45.49902
]
},
"properties": {
"trip": {
"id": "285283550",
"shortName": null,
"headsign": "Nord",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "740072"
},
"route": {
"id": "74",
"shortName": "74",
"longName": "Bridge",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38031",
"label": "38031",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574439624,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1697
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66048,
45.56655
]
},
"properties": {
"trip": {
"id": "285028799",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:41:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "490345"
},
"route": {
"id": "49",
"shortName": "49",
"longName": "Maurice-Duplessis",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39091",
"label": "39091",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 51,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574439626,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 1700
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65015,
45.47268
]
},
"properties": {
"trip": {
"id": "286573113",
"shortName": null,
"headsign": "Est",
"startTime": "10:17:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1380086"
},
"route": {
"id": "138",
"shortName": "138",
"longName": "Notre-Dame-de-Grâce",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29048",
"label": "29048",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 122,
"odometer": 0,
"speed": 38
},
"agencyId": 1,
"currentStopSequence": 13,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574439910,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 1715
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60471,
45.44708
]
},
"properties": {
"trip": {
"id": "286570120",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:54:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "360157"
},
"route": {
"id": "36",
"shortName": "36",
"longName": "Monk",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29073",
"label": "29073",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 98,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574439910,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 1717
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58049,
45.65072
]
},
"properties": {
"trip": {
"id": "285030933",
"shortName": null,
"headsign": "Sud",
"startTime": "10:30:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "810020"
},
"route": {
"id": "81",
"shortName": "81",
"longName": "Saint-Jean-Baptiste",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31068",
"label": "31068",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 236,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574439918,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 1721
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57912,
45.49564
]
},
"properties": {
"trip": {
"id": "284779114",
"shortName": null,
"headsign": "Nord",
"startTime": "10:41:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1650126"
},
"route": {
"id": "165",
"shortName": "165",
"longName": "Côte-des-Neiges",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31820",
"label": "31820",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574439923,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1726
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57789,
45.51159
]
},
"properties": {
"trip": {
"id": "284727873",
"shortName": null,
"headsign": "Nord",
"startTime": "10:15:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "1290220"
},
"route": {
"id": "129",
"shortName": "129",
"longName": "Côte-Sainte-Catherine",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29021",
"label": "29021",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 303,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 11,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574440211,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 1745
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61337,
45.51493
]
},
"properties": {
"trip": {
"id": "284778204",
"shortName": null,
"headsign": "Sud",
"startTime": "10:07:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1190074"
},
"route": {
"id": "119",
"shortName": "119",
"longName": "Rockland",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37075",
"label": "37075",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 122,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 28,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574440226,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1762
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.87389,
45.47746
]
},
"properties": {
"trip": {
"id": "285008568",
"shortName": null,
"headsign": "Nord",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2010213"
},
"route": {
"id": "201",
"shortName": "201",
"longName": "Saint-Charles / Saint-Jean",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38079",
"label": "38079",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 205,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 21,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574440227,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 1763
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.552,
45.51153
]
},
"properties": {
"trip": {
"id": "285284814",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:26:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "500003"
},
"route": {
"id": "50",
"shortName": "50",
"longName": "Vieux-Montréal / Vieux-Port",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39034",
"label": "39034",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 112,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574440528,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1806
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53783,
45.55556
]
},
"properties": {
"trip": {
"id": "285283132",
"shortName": null,
"headsign": "Est",
"startTime": "09:53:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "1250192"
},
"route": {
"id": "125",
"shortName": "125",
"longName": "Ontario",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31181",
"label": "31181",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 27,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574440844,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1839
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67764,
45.50404
]
},
"properties": {
"trip": {
"id": "284779836",
"shortName": null,
"headsign": "Est",
"startTime": "10:04:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1750105"
},
"route": {
"id": "175",
"shortName": "175",
"longName": "Griffith / Saint-François",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37088",
"label": "37088",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 40,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574440850,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1844
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64136,
45.54247
]
},
"properties": {
"trip": {
"id": "284740984",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:28:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "190036"
},
"route": {
"id": "19",
"shortName": "19",
"longName": "Chabanel / Marché Central",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31138",
"label": "31138",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 203,
"odometer": 0,
"speed": 6
},
"agencyId": 1,
"currentStopSequence": 4,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574441143,
"lastSeenAt": 1749753025,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 1869
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61114,
45.55765
]
},
"properties": {
"trip": {
"id": "285282870",
"shortName": null,
"headsign": "Nord",
"startTime": "10:07:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "940090"
},
"route": {
"id": "94",
"shortName": "94",
"longName": "D'Iberville",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31184",
"label": "31184",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 304,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 27,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574441145,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1871
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53523,
45.46963
]
},
"properties": {
"trip": {
"id": "285283611",
"shortName": null,
"headsign": "Sud",
"startTime": "10:15:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "1720009"
},
"route": {
"id": "172",
"shortName": "172",
"longName": "Du Golf",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38028",
"label": "38028",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 270,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574441758,
"lastSeenAt": 1749752891,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1948
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53733,
45.58954
]
},
"properties": {
"trip": {
"id": "285284994",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:40:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "8110009"
},
"route": {
"id": "811",
"shortName": "811",
"longName": "Navette Services santé",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38034",
"label": "38034",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574441758,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1949
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50509,
45.674
]
},
"properties": {
"trip": {
"id": "285030689",
"shortName": null,
"headsign": "Est",
"startTime": "09:37:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "400084"
},
"route": {
"id": "40",
"shortName": "40",
"longName": "Henri-Bourassa-Est",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39076",
"label": "39076",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 41,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574441762,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 1951
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67638,
45.51029
]
},
"properties": {
"trip": {
"id": "285007251",
"shortName": null,
"headsign": "Est",
"startTime": "09:46:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "720182"
},
"route": {
"id": "72",
"shortName": "72",
"longName": "Alfred-Nobel",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38043",
"label": "38043",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 310,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 36,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574442060,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 1982
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57697,
45.52311
]
},
"properties": {
"trip": {
"id": "285283332",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:11:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "290083"
},
"route": {
"id": "29",
"shortName": "29",
"longName": "Rachel",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31055",
"label": "31055",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 20,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574442649,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 2027
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60719,
45.53162
]
},
"properties": {
"trip": {
"id": "284727855",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:37:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "180228"
},
"route": {
"id": "18",
"shortName": "18",
"longName": "Beaubien",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29023",
"label": "29023",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 216,
"odometer": 0,
"speed": 5
},
"agencyId": 1,
"currentStopSequence": 49,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574442926,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 2051
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65639,
45.55055
]
},
"properties": {
"trip": {
"id": "284737791",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:13:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "1210271"
},
"route": {
"id": "121",
"shortName": "121",
"longName": "Sauvé / Côte-Vertu",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30827",
"label": "30827",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 222,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574443249,
"lastSeenAt": 1749753030,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 2082
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66449,
45.56198
]
},
"properties": {
"trip": {
"id": "284738737",
"shortName": null,
"headsign": "Ouest via Gouin / Ozias-Leduc",
"startTime": "09:39:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "480412"
},
"route": {
"id": "48",
"shortName": "48",
"longName": "Perras",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31036",
"label": "31036",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 50,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574443551,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 2093
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68264,
45.51295
]
},
"properties": {
"trip": {
"id": "285006489",
"shortName": null,
"headsign": "Nord",
"startTime": "09:45:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "170094"
},
"route": {
"id": "17",
"shortName": "17",
"longName": "Décarie",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30175",
"label": "30175",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 223,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 38,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574444444,
"lastSeenAt": 1749752848,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 2131
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66729,
45.55586
]
},
"properties": {
"trip": {
"id": "285028219",
"shortName": null,
"headsign": "Est",
"startTime": "10:31:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "490344"
},
"route": {
"id": "49",
"shortName": "49",
"longName": "Maurice-Duplessis",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "36022",
"label": "36022",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 22,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574445040,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2148
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56676,
45.52176
]
},
"properties": {
"trip": {
"id": "285284035",
"shortName": null,
"headsign": "Est",
"startTime": "09:46:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "240185"
},
"route": {
"id": "24",
"shortName": "24",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38008",
"label": "38008",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 35,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 3,
"firstSeenAt": 1574445041,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 2151
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55247,
45.54509
]
},
"properties": {
"trip": {
"id": "285283572",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:37:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "850206"
},
"route": {
"id": "85",
"shortName": "85",
"longName": "Hochelaga",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39026",
"label": "39026",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 52,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574445043,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 2157
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59749,
45.62622
]
},
"properties": {
"trip": {
"id": "285030757",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:12:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "490345"
},
"route": {
"id": "49",
"shortName": "49",
"longName": "Maurice-Duplessis",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39042",
"label": "39042",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 230,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 26,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574445043,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2160
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59673,
45.63836
]
},
"properties": {
"trip": {
"id": "285028283",
"shortName": null,
"headsign": "Nord",
"startTime": "09:46:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "440174"
},
"route": {
"id": "44",
"shortName": "44",
"longName": "Armand-Bombardier",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39100",
"label": "39100",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 31,
"currentStatus": 1,
"congestionLevel": 3,
"occupancyStatus": 1,
"firstSeenAt": 1574445044,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2162
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63857,
45.52778
]
},
"properties": {
"trip": {
"id": "284727594",
"shortName": null,
"headsign": "Sud",
"startTime": "10:11:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "1790193"
},
"route": {
"id": "179",
"shortName": "179",
"longName": "De l'Acadie",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31076",
"label": "31076",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 113,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574445359,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 2170
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6198,
45.6068
]
},
"properties": {
"trip": {
"id": "284739346",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:22:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "690221"
},
"route": {
"id": "69",
"shortName": "69",
"longName": "Gouin",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29846",
"label": "29846",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 246,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 9,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574445923,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 2180
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.88466,
45.46268
]
},
"properties": {
"trip": {
"id": "285006920",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:48:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "680414"
},
"route": {
"id": "68",
"shortName": "68",
"longName": "Pierrefonds",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38081",
"label": "38081",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 235,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 63,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574471126,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 2323
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57761,
45.60284
]
},
"properties": {
"trip": {
"id": "285028538",
"shortName": null,
"headsign": "Sud",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "440168"
},
"route": {
"id": "44",
"shortName": "44",
"longName": "Armand-Bombardier",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30092",
"label": "30092",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 121,
"odometer": 0,
"speed": 33
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574475505,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 2411
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70732,
45.44807
]
},
"properties": {
"trip": {
"id": "284780328",
"shortName": null,
"headsign": "Est",
"startTime": "09:46:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "4850088"
},
"route": {
"id": "485",
"shortName": "485",
"longName": "Express Antoine-Faucon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37085",
"label": "37085",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 92,
"odometer": 0,
"speed": 81
},
"agencyId": 1,
"currentStopSequence": 26,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574477081,
"lastSeenAt": 1749753030,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2446
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56728,
45.50646
]
},
"properties": {
"trip": {
"id": "284727194",
"shortName": null,
"headsign": "Sud",
"startTime": "09:40:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "1290221"
},
"route": {
"id": "129",
"shortName": "129",
"longName": "Côte-Sainte-Catherine",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31024",
"label": "31024",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 38,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574479591,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 2463
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59844,
45.55872
]
},
"properties": {
"trip": {
"id": "284777134",
"shortName": null,
"headsign": "Est",
"startTime": "10:11:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "930090"
},
"route": {
"id": "93",
"shortName": "93",
"longName": "Jean-Talon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37048",
"label": "37048",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 31,
"odometer": 0,
"speed": 20
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574546654,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2488
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73012,
45.52628
]
},
"properties": {
"trip": {
"id": "285007689",
"shortName": null,
"headsign": "Nord",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "1700176"
},
"route": {
"id": "170",
"shortName": "170",
"longName": "Keller",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38042",
"label": "38042",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 26,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574612406,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 2501
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59174,
45.48796
]
},
"properties": {
"trip": {
"id": "284728188",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:54:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "240184"
},
"route": {
"id": "24",
"shortName": "24",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31017",
"label": "31017",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574634489,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 2512
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64564,
45.45863
]
},
"properties": {
"trip": {
"id": "285001622",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:45:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "510191"
},
"route": {
"id": "51",
"shortName": "51",
"longName": "Édouard-Montpetit",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30058",
"label": "30058",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 114,
"odometer": 0,
"speed": 24
},
"agencyId": 1,
"currentStopSequence": 49,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574692562,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 2521
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5714,
45.55991
]
},
"properties": {
"trip": {
"id": "284741297",
"shortName": null,
"headsign": "Sud destination Pie-IX / Notre-Dame",
"startTime": "09:51:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "4390255"
},
"route": {
"id": "439",
"shortName": "439",
"longName": "Express Pie-IX",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31808",
"label": "31808",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 115,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 28,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574694966,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2528
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60574,
45.4729
]
},
"properties": {
"trip": {
"id": "284777896",
"shortName": null,
"headsign": "Est",
"startTime": "10:15:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1050151"
},
"route": {
"id": "105",
"shortName": "105",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37004",
"label": "37004",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 46,
"odometer": 0,
"speed": 29
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574695930,
"lastSeenAt": 1749753027,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2532
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63937,
45.55034
]
},
"properties": {
"trip": {
"id": "284727056",
"shortName": null,
"headsign": "Nord",
"startTime": "09:52:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "300087"
},
"route": {
"id": "30",
"shortName": "30",
"longName": "Saint-Denis / Saint-Hubert",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31122",
"label": "31122",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 292,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 36,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574696289,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 2535
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59098,
45.52288
]
},
"properties": {
"trip": {
"id": "285001936",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:56:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "970204"
},
"route": {
"id": "97",
"shortName": "97",
"longName": "Avenue-du-Mont-Royal",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30087",
"label": "30087",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 213,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 49,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574697007,
"lastSeenAt": 1749752686,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 2537
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66825,
45.44633
]
},
"properties": {
"trip": {
"id": "284780587",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:49:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "7471239"
},
"route": {
"id": "747",
"shortName": "747",
"longName": "YUL Aéroport / Centre-Ville",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39010",
"label": "39010",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 286,
"odometer": 0,
"speed": 54
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574698223,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2544
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60847,
45.61941
]
},
"properties": {
"trip": {
"id": "284741526",
"shortName": null,
"headsign": "Nord destination Cégep Marie-Victorin",
"startTime": "09:18:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "4390256"
},
"route": {
"id": "439",
"shortName": "439",
"longName": "Express Pie-IX",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31862",
"label": "31862",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 36,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574698822,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 2548
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53935,
45.65092
]
},
"properties": {
"trip": {
"id": "285029932",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:03:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "400083"
},
"route": {
"id": "40",
"shortName": "40",
"longName": "Henri-Bourassa-Est",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39126",
"label": "39126",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 236,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574701841,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2580
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5637,
45.46285
]
},
"properties": {
"trip": {
"id": "286570463",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:03:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "610126"
},
"route": {
"id": "61",
"shortName": "61",
"longName": "Wellington",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29089",
"label": "29089",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 159,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 20,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574702174,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2583
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57714,
45.57666
]
},
"properties": {
"trip": {
"id": "285284988",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "8110009"
},
"route": {
"id": "811",
"shortName": "811",
"longName": "Navette Services santé",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30251",
"label": "30251",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 32,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 11,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574702428,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 2584
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54978,
45.53256
]
},
"properties": {
"trip": {
"id": "285282370",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:46:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "1850127"
},
"route": {
"id": "185",
"shortName": "185",
"longName": "Sherbrooke",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31176",
"label": "31176",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 120,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 49,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574704359,
"lastSeenAt": 1749752827,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 2592
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5528,
45.5243
]
},
"properties": {
"trip": {
"id": "285282993",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:04:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "340097"
},
"route": {
"id": "34",
"shortName": "34",
"longName": "Sainte-Catherine",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38029",
"label": "38029",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 27,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574731834,
"lastSeenAt": 1749753007,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 2613
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54693,
45.57639
]
},
"properties": {
"trip": {
"id": "285030424",
"shortName": null,
"headsign": "Sud via Perras / Lacordaire",
"startTime": "09:33:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "4320137"
},
"route": {
"id": "432",
"shortName": "432",
"longName": "Express Lacordaire",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "36040",
"label": "36040",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 26,
"odometer": 0,
"speed": 19
},
"agencyId": 1,
"currentStopSequence": 31,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574737122,
"lastSeenAt": 1749752583,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2630
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.597,
45.57753
]
},
"properties": {
"trip": {
"id": "285282824",
"shortName": null,
"headsign": "Nord",
"startTime": "10:13:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "1360114"
},
"route": {
"id": "136",
"shortName": "136",
"longName": "Viau",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38025",
"label": "38025",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 301,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574737481,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 2632
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68521,
45.52358
]
},
"properties": {
"trip": {
"id": "284778362",
"shortName": null,
"headsign": "Sud",
"startTime": "10:21:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1280152"
},
"route": {
"id": "128",
"shortName": "128",
"longName": "Saint-Laurent",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37098",
"label": "37098",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 9,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574784259,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2647
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58292,
45.51369
]
},
"properties": {
"trip": {
"id": "284727161",
"shortName": null,
"headsign": "Sud",
"startTime": "09:56:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "1290221"
},
"route": {
"id": "129",
"shortName": "129",
"longName": "Côte-Sainte-Catherine",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "32013",
"label": "32013",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 123,
"odometer": 0,
"speed": 4
},
"agencyId": 1,
"currentStopSequence": 31,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574785231,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 2652
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65249,
45.50488
]
},
"properties": {
"trip": {
"id": "284778277",
"shortName": null,
"headsign": "Sud",
"startTime": "10:16:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1240126"
},
"route": {
"id": "124",
"shortName": "124",
"longName": "Victoria",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37089",
"label": "37089",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 13,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574787998,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2661
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5753,
45.57882
]
},
"properties": {
"trip": {
"id": "285030084",
"shortName": null,
"headsign": "Est",
"startTime": "10:19:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "1410585"
},
"route": {
"id": "141",
"shortName": "141",
"longName": "Jean-Talon Est",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "32020",
"label": "32020",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 25,
"odometer": 0,
"speed": 25
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574817270,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2677
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57914,
45.64913
]
},
"properties": {
"trip": {
"id": "285028257",
"shortName": null,
"headsign": "Nord",
"startTime": "10:06:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "4490191"
},
"route": {
"id": "449",
"shortName": "449",
"longName": "Express Rivière-des-Prairies",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39127",
"label": "39127",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 21,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574821484,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2683
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71931,
45.48536
]
},
"properties": {
"trip": {
"id": "284779430",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:11:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1750104"
},
"route": {
"id": "175",
"shortName": "175",
"longName": "Griffith / Saint-François",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37104",
"label": "37104",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574873674,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2703
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83076,
45.47263
]
},
"properties": {
"trip": {
"id": "285009224",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:59:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2060110"
},
"route": {
"id": "206",
"shortName": "206",
"longName": "Roger-Pilon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30237",
"label": "30237",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 236,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574877993,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 2711
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62633,
45.47174
]
},
"properties": {
"trip": {
"id": "284778691",
"shortName": null,
"headsign": "Est",
"startTime": "10:08:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1620101"
},
"route": {
"id": "162",
"shortName": "162",
"longName": "Westminster",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37033",
"label": "37033",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 34,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 30,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574901627,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2712
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53499,
45.66468
]
},
"properties": {
"trip": {
"id": "285029284",
"shortName": null,
"headsign": "Nord",
"startTime": "10:18:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "810021"
},
"route": {
"id": "81",
"shortName": "81",
"longName": "Saint-Jean-Baptiste",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39128",
"label": "39128",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 332,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574906803,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2718
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72156,
45.53143
]
},
"properties": {
"trip": {
"id": "285010264",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:15:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "4680086"
},
"route": {
"id": "468",
"shortName": "468",
"longName": "Express Pierrefonds / Gouin",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38041",
"label": "38041",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 5,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 3,
"firstSeenAt": 1574907402,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 2722
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63235,
45.59082
]
},
"properties": {
"trip": {
"id": "284738056",
"shortName": null,
"headsign": "Est",
"startTime": "10:02:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "1400133"
},
"route": {
"id": "140",
"shortName": "140",
"longName": "Fleury",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31134",
"label": "31134",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 33,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574965714,
"lastSeenAt": 1749753029,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 2751
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71853,
45.53178
]
},
"properties": {
"trip": {
"id": "284738636",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:32:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "690221"
},
"route": {
"id": "69",
"shortName": "69",
"longName": "Gouin",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30865",
"label": "30865",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 66,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574993554,
"lastSeenAt": 1749753005,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 2762
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6685,
45.53542
]
},
"properties": {
"trip": {
"id": "284728052",
"shortName": null,
"headsign": "Nord",
"startTime": "10:05:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "1790192"
},
"route": {
"id": "179",
"shortName": "179",
"longName": "De l'Acadie",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "32007",
"label": "32007",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 254,
"odometer": 0,
"speed": 3
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1575043216,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 2776
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65421,
45.49339
]
},
"properties": {
"trip": {
"id": "284726628",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:57:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "920108"
},
"route": {
"id": "92",
"shortName": "92",
"longName": "Jean-Talon Ouest",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31086",
"label": "31086",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 28,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575075862,
"lastSeenAt": 1749752491,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 2790
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59542,
45.55775
]
},
"properties": {
"trip": {
"id": "284738606",
"shortName": null,
"headsign": "Sud",
"startTime": "10:05:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "670125"
},
"route": {
"id": "67",
"shortName": "67",
"longName": "Saint-Michel",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30854",
"label": "30854",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 113,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 25,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1575078389,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 2795
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49963,
45.64349
]
},
"properties": {
"trip": {
"id": "285030777",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "1870218"
},
"route": {
"id": "187",
"shortName": "187",
"longName": "René-Lévesque",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "32025",
"label": "32025",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 193,
"odometer": 0,
"speed": 28
},
"agencyId": 1,
"currentStopSequence": 26,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 3,
"firstSeenAt": 1575085598,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2806
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.52501,
45.59343
]
},
"properties": {
"trip": {
"id": "285030108",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:52:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "1890204"
},
"route": {
"id": "189",
"shortName": "189",
"longName": "Notre-Dame",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39148",
"label": "39148",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 59,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1575152296,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2811
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57574,
45.46237
]
},
"properties": {
"trip": {
"id": "286570716",
"shortName": null,
"headsign": "Nord",
"startTime": "10:25:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "710083"
},
"route": {
"id": "71",
"shortName": "71",
"longName": "Pointe-Saint-Charles",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29101",
"label": "29101",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 86,
"odometer": 0,
"speed": 17
},
"agencyId": 1,
"currentStopSequence": 3,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575152646,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2812
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51329,
45.65914
]
},
"properties": {
"trip": {
"id": "285028232",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:02:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "860189"
},
"route": {
"id": "86",
"shortName": "86",
"longName": "Pointe-aux-Trembles",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31026",
"label": "31026",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 283,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 51,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575216845,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 2820
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64278,
45.57174
]
},
"properties": {
"trip": {
"id": "284739428",
"shortName": null,
"headsign": "Est",
"startTime": "09:45:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "1210266"
},
"route": {
"id": "121",
"shortName": "121",
"longName": "Sauvé / Côte-Vertu",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31832",
"label": "31832",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 33,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 45,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575270370,
"lastSeenAt": 1749753031,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 2824
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5957,
45.58598
]
},
"properties": {
"trip": {
"id": "285030587",
"shortName": null,
"headsign": "Sud",
"startTime": "10:07:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "320170"
},
"route": {
"id": "32",
"shortName": "32",
"longName": "Lacordaire",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39062",
"label": "39062",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1575307964,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2835
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60522,
45.58448
]
},
"properties": {
"trip": {
"id": "285282627",
"shortName": null,
"headsign": "Sud",
"startTime": "10:23:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "1360112"
},
"route": {
"id": "136",
"shortName": "136",
"longName": "Viau",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "32017",
"label": "32017",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 120,
"odometer": 0,
"speed": 26
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575336270,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2842
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57415,
45.47625
]
},
"properties": {
"trip": {
"id": "286572448",
"shortName": null,
"headsign": "Est",
"startTime": "10:11:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1080081"
},
"route": {
"id": "108",
"shortName": "108",
"longName": "Bannantyne",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29093",
"label": "29093",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 321,
"odometer": 0,
"speed": 47
},
"agencyId": 1,
"currentStopSequence": 21,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575387123,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2850
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51643,
45.63638
]
},
"properties": {
"trip": {
"id": "285028589",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "1860252"
},
"route": {
"id": "186",
"shortName": "186",
"longName": "Sherbrooke-Est",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31015",
"label": "31015",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 27,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1575392548,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 2858
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5338,
45.54726
]
},
"properties": {
"trip": {
"id": "284741495",
"shortName": null,
"headsign": "Nord destination Cégep Marie-Victorin",
"startTime": "10:39:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "4390256"
},
"route": {
"id": "439",
"shortName": "439",
"longName": "Express Pie-IX",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30872",
"label": "30872",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575393994,
"lastSeenAt": 1749753031,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 2861
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6154,
45.51992
]
},
"properties": {
"trip": {
"id": "284727779",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:21:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "1610134"
},
"route": {
"id": "161",
"shortName": "161",
"longName": "Van Horne",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31022",
"label": "31022",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 7,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1575428311,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 2879
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51727,
45.57962
]
},
"properties": {
"trip": {
"id": "285028926",
"shortName": null,
"headsign": "Sud",
"startTime": "09:30:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "330282"
},
"route": {
"id": "33",
"shortName": "33",
"longName": "Langelier",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39075",
"label": "39075",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 114,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 60,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1575513169,
"lastSeenAt": 1749752649,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2905
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58526,
45.48866
]
},
"properties": {
"trip": {
"id": "286572416",
"shortName": null,
"headsign": "Est",
"startTime": "09:44:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "900252"
},
"route": {
"id": "90",
"shortName": "90",
"longName": "Saint-Jacques",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29137",
"label": "29137",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 41,
"odometer": 0,
"speed": 22
},
"agencyId": 1,
"currentStopSequence": 53,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575558123,
"lastSeenAt": 1749752906,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2912
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66194,
45.5003
]
},
"properties": {
"trip": {
"id": "284777335",
"shortName": null,
"headsign": "Est",
"startTime": "10:07:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1000244"
},
"route": {
"id": "100",
"shortName": "100",
"longName": "Crémazie",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37068",
"label": "37068",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 23,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575562823,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2917
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63395,
45.50166
]
},
"properties": {
"trip": {
"id": "284778894",
"shortName": null,
"headsign": "Nord",
"startTime": "10:08:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1650126"
},
"route": {
"id": "165",
"shortName": "165",
"longName": "Côte-des-Neiges",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "33840",
"label": "33840",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 305,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1575569805,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2923
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.52,
45.62403
]
},
"properties": {
"trip": {
"id": "285030889",
"shortName": null,
"headsign": "Est",
"startTime": "10:22:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "1870223"
},
"route": {
"id": "187",
"shortName": "187",
"longName": "René-Lévesque",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "36047",
"label": "36047",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 14,
"odometer": 0,
"speed": 55
},
"agencyId": 1,
"currentStopSequence": 8,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1575594268,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2926
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61313,
45.54076
]
},
"properties": {
"trip": {
"id": "284777161",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:13:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "930087"
},
"route": {
"id": "93",
"shortName": "93",
"longName": "Jean-Talon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37030",
"label": "37030",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 199,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575594388,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2927
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57451,
45.5395
]
},
"properties": {
"trip": {
"id": "285002240",
"shortName": null,
"headsign": "Est",
"startTime": "10:08:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "970203"
},
"route": {
"id": "97",
"shortName": "97",
"longName": "Avenue-du-Mont-Royal",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30067",
"label": "30067",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 126,
"odometer": 0,
"speed": 23
},
"agencyId": 1,
"currentStopSequence": 20,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575600260,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 2932
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66602,
45.53358
]
},
"properties": {
"trip": {
"id": "284738815",
"shortName": null,
"headsign": "Est",
"startTime": "10:05:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "1210266"
},
"route": {
"id": "121",
"shortName": "121",
"longName": "Sauvé / Côte-Vertu",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30820",
"label": "30820",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 16,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 23,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575650303,
"lastSeenAt": 1749753031,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 2940
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6199,
45.47937
]
},
"properties": {
"trip": {
"id": "285283192",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:37:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "240184"
},
"route": {
"id": "24",
"shortName": "24",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31156",
"label": "31156",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 314,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 47,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575652474,
"lastSeenAt": 1749752808,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 2943
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6127,
45.62907
]
},
"properties": {
"trip": {
"id": "285029653",
"shortName": null,
"headsign": "Nord",
"startTime": "09:22:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "330287"
},
"route": {
"id": "33",
"shortName": "33",
"longName": "Langelier",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30136",
"label": "30136",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 60,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575680538,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2947
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50935,
45.63243
]
},
"properties": {
"trip": {
"id": "285029123",
"shortName": null,
"headsign": "Est",
"startTime": "10:15:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "860188"
},
"route": {
"id": "86",
"shortName": "86",
"longName": "Pointe-aux-Trembles",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30108",
"label": "30108",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 104,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575682102,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2951
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57914,
45.64913
]
},
"properties": {
"trip": {
"id": "285029331",
"shortName": null,
"headsign": "Est",
"startTime": "09:38:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "430204"
},
"route": {
"id": "43",
"shortName": "43",
"longName": "Monselet",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "32015",
"label": "32015",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 38,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 56,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575683434,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2953
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56744,
45.4774
]
},
"properties": {
"trip": {
"id": "286570824",
"shortName": null,
"headsign": "Nord",
"startTime": "10:21:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "570103"
},
"route": {
"id": "57",
"shortName": "57",
"longName": "Charlevoix",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29111",
"label": "29111",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 309,
"odometer": 0,
"speed": 33
},
"agencyId": 1,
"currentStopSequence": 13,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575685222,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2957
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58531,
45.54609
]
},
"properties": {
"trip": {
"id": "285001221",
"shortName": null,
"headsign": "Sud",
"startTime": "10:24:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "250055"
},
"route": {
"id": "25",
"shortName": "25",
"longName": "Angus",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31216",
"label": "31216",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 126,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575835210,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 2968
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61625,
45.6031
]
},
"properties": {
"trip": {
"id": "285028879",
"shortName": null,
"headsign": "Sud",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "330282"
},
"route": {
"id": "33",
"shortName": "33",
"longName": "Langelier",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31061",
"label": "31061",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 23,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1575905165,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2972
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65361,
45.55439
]
},
"properties": {
"trip": {
"id": "284738961",
"shortName": null,
"headsign": "Est",
"startTime": "10:27:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "410323"
},
"route": {
"id": "41",
"shortName": "41",
"longName": "Quartier Saint-Michel / Ahuntsic",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31133",
"label": "31133",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 4,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575905404,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 2973
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64895,
45.58343
]
},
"properties": {
"trip": {
"id": "285030029",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:39:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "430203"
},
"route": {
"id": "43",
"shortName": "43",
"longName": "Monselet",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30159",
"label": "30159",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 207,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 56,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575910458,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2978
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66297,
45.43211
]
},
"properties": {
"trip": {
"id": "286571015",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:52:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1100210"
},
"route": {
"id": "110",
"shortName": "110",
"longName": "Centrale",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30013",
"label": "30013",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 239,
"odometer": 0,
"speed": 31
},
"agencyId": 1,
"currentStopSequence": 49,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575912261,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2980
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64304,
45.51484
]
},
"properties": {
"trip": {
"id": "284779147",
"shortName": null,
"headsign": "Nord",
"startTime": "09:56:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1650126"
},
"route": {
"id": "165",
"shortName": "165",
"longName": "Côte-des-Neiges",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31814",
"label": "31814",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 21,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 32,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575919820,
"lastSeenAt": 1749752820,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2983
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60102,
45.53839
]
},
"properties": {
"trip": {
"id": "284726840",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:46:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "180228"
},
"route": {
"id": "18",
"shortName": "18",
"longName": "Beaubien",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30181",
"label": "30181",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 44,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1575992407,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 2996
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57313,
45.51949
]
},
"properties": {
"trip": {
"id": "284727735",
"shortName": null,
"headsign": "Sud",
"startTime": "09:51:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "300085"
},
"route": {
"id": "30",
"shortName": "30",
"longName": "Saint-Denis / Saint-Hubert",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30224",
"label": "30224",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 124,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 37,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1576028427,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 3007
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58381,
45.55787
]
},
"properties": {
"trip": {
"id": "284726687",
"shortName": null,
"headsign": "Est",
"startTime": "10:05:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "180220"
},
"route": {
"id": "18",
"shortName": "18",
"longName": "Beaubien",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30164",
"label": "30164",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 32,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1576114346,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 3021
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60511,
45.47335
]
},
"properties": {
"trip": {
"id": "284777950",
"shortName": null,
"headsign": "Est",
"startTime": "10:05:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1050151"
},
"route": {
"id": "105",
"shortName": "105",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37019",
"label": "37019",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 35,
"odometer": 0,
"speed": 14
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1576118923,
"lastSeenAt": 1749752497,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 3023
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64033,
45.55038
]
},
"properties": {
"trip": {
"id": "284741131",
"shortName": null,
"headsign": "Sud",
"startTime": "10:16:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "560031"
},
"route": {
"id": "56",
"shortName": "56",
"longName": "Saint-Hubert",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30132",
"label": "30132",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 15,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1576120947,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 3024
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55286,
45.59766
]
},
"properties": {
"trip": {
"id": "284727500",
"shortName": null,
"headsign": "Est",
"startTime": "09:43:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "180220"
},
"route": {
"id": "18",
"shortName": "18",
"longName": "Beaubien",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30157",
"label": "30157",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 119,
"odometer": 0,
"speed": 40
},
"agencyId": 1,
"currentStopSequence": 47,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1576200505,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 3039
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61989,
45.61449
]
},
"properties": {
"trip": {
"id": "285030278",
"shortName": null,
"headsign": "Est",
"startTime": "10:04:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "490344"
},
"route": {
"id": "49",
"shortName": "49",
"longName": "Maurice-Duplessis",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39144",
"label": "39144",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 18,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1576204004,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 3042
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59351,
45.56811
]
},
"properties": {
"trip": {
"id": "285030627",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:52:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "1410586"
},
"route": {
"id": "141",
"shortName": "141",
"longName": "Jean-Talon Est",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39142",
"label": "39142",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 213,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 44,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1576205329,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 3045
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58801,
45.46206
]
},
"properties": {
"trip": {
"id": "286569903",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:56:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "350019"
},
"route": {
"id": "35",
"shortName": "35",
"longName": "Griffintown",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30011",
"label": "30011",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 187,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 32,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1576547186,
"lastSeenAt": 1749753030,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3080
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75158,
45.45734
]
},
"properties": {
"trip": {
"id": "284780654",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:37:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "7471239"
},
"route": {
"id": "747",
"shortName": "747",
"longName": "YUL Aéroport / Centre-Ville",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31003",
"label": "31003",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 183,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1576600341,
"lastSeenAt": 1749752999,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 3085
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5714,
45.53852
]
},
"properties": {
"trip": {
"id": "285002429",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:01:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "4270111"
},
"route": {
"id": "427",
"shortName": "427",
"longName": "Express Saint-Joseph",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39061",
"label": "39061",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1576686510,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 3103
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63886,
45.5764
]
},
"properties": {
"trip": {
"id": "284739229",
"shortName": null,
"headsign": "Est",
"startTime": "09:37:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "1210266"
},
"route": {
"id": "121",
"shortName": "121",
"longName": "Sauvé / Côte-Vertu",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31807",
"label": "31807",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 29,
"odometer": 0,
"speed": 14
},
"agencyId": 1,
"currentStopSequence": 48,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1576687957,
"lastSeenAt": 1749752889,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 3106
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60833,
45.4291
]
},
"properties": {
"trip": {
"id": "286572223",
"shortName": null,
"headsign": "Est",
"startTime": "09:39:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1100211"
},
"route": {
"id": "110",
"shortName": "110",
"longName": "Centrale",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40011",
"label": "40011",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 59,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1576766286,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3115
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64692,
45.44224
]
},
"properties": {
"trip": {
"id": "286573019",
"shortName": null,
"headsign": "Nord",
"startTime": "10:12:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1230115"
},
"route": {
"id": "123",
"shortName": "123",
"longName": "Dollard / Shevchenko",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40008",
"label": "40008",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 344,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1576768086,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3117
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.7633,
45.44874
]
},
"properties": {
"trip": {
"id": "286571896",
"shortName": null,
"headsign": "Est",
"startTime": "10:04:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "4250077"
},
"route": {
"id": "425",
"shortName": "425",
"longName": "Express Anse-à-l'Orme",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40030",
"label": "40030",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 95,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 25,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1576776289,
"lastSeenAt": 1749753031,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3124
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67307,
45.50825
]
},
"properties": {
"trip": {
"id": "285007348",
"shortName": null,
"headsign": "Nord",
"startTime": "10:29:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "1170071"
},
"route": {
"id": "117",
"shortName": "117",
"longName": "O'Brien",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38082",
"label": "38082",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 310,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1576896516,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 3145
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60651,
45.61754
]
},
"properties": {
"trip": {
"id": "284737982",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:42:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "690221"
},
"route": {
"id": "69",
"shortName": "69",
"longName": "Gouin",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30852",
"label": "30852",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1576979772,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 3149
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83555,
45.47371
]
},
"properties": {
"trip": {
"id": "284780049",
"shortName": null,
"headsign": "Est",
"startTime": "10:08:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "4700247"
},
"route": {
"id": "470",
"shortName": "470",
"longName": "Express Pierrefonds",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "33811",
"label": "33811",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1577121641,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 3155
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54123,
45.56366
]
},
"properties": {
"trip": {
"id": "285284156",
"shortName": null,
"headsign": "Est",
"startTime": "10:11:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "850202"
},
"route": {
"id": "85",
"shortName": "85",
"longName": "Hochelaga",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39040",
"label": "39040",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 18,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1577122007,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 3157
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60773,
45.47032
]
},
"properties": {
"trip": {
"id": "286571262",
"shortName": null,
"headsign": "Est",
"startTime": "09:58:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "900252"
},
"route": {
"id": "90",
"shortName": "90",
"longName": "Saint-Jacques",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29096",
"label": "29096",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 46,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 42,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 3,
"firstSeenAt": 1577148851,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3158
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69254,
45.44178
]
},
"properties": {
"trip": {
"id": "286573600",
"shortName": null,
"headsign": "Est",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1980012"
},
"route": {
"id": "198",
"shortName": "198",
"longName": "Broadway",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40033",
"label": "40033",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 353,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1577241279,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3166
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62212,
45.44967
]
},
"properties": {
"trip": {
"id": "286570049",
"shortName": null,
"headsign": "Est",
"startTime": "09:29:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "360158"
},
"route": {
"id": "36",
"shortName": "36",
"longName": "Monk",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40031",
"label": "40031",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 109,
"odometer": 0,
"speed": 54
},
"agencyId": 1,
"currentStopSequence": 36,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1577500121,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3172
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56728,
45.48998
]
},
"properties": {
"trip": {
"id": "286569920",
"shortName": null,
"headsign": "Est",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "350017"
},
"route": {
"id": "35",
"shortName": "35",
"longName": "Griffintown",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40038",
"label": "40038",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1577502645,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3173
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58038,
45.61679
]
},
"properties": {
"trip": {
"id": "285028680",
"shortName": null,
"headsign": "Nord",
"startTime": "09:39:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "280922"
},
"route": {
"id": "28",
"shortName": "28",
"longName": "Honoré-Beaugrand",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "32001",
"label": "32001",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 26,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 47,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1577506115,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 3175
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70654,
45.52259
]
},
"properties": {
"trip": {
"id": "284778395",
"shortName": null,
"headsign": "Nord",
"startTime": "09:33:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1280153"
},
"route": {
"id": "128",
"shortName": "128",
"longName": "Saint-Laurent",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37092",
"label": "37092",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 63,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1578498021,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 3213
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62998,
45.48273
]
},
"properties": {
"trip": {
"id": "285001653",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:56:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "510191"
},
"route": {
"id": "51",
"shortName": "51",
"longName": "Édouard-Montpetit",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30061",
"label": "30061",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 216,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 35,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1578499337,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 3214
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59068,
45.43624
]
},
"properties": {
"trip": {
"id": "286570430",
"shortName": null,
"headsign": "Est",
"startTime": "10:23:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "610123"
},
"route": {
"id": "61",
"shortName": "61",
"longName": "Wellington",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40009",
"label": "40009",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 15,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1578795281,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3231
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60601,
45.56249
]
},
"properties": {
"trip": {
"id": "284738486",
"shortName": null,
"headsign": "Nord",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "4670079"
},
"route": {
"id": "467",
"shortName": "467",
"longName": "Express Saint-Michel",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "33806",
"label": "33806",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 325,
"odometer": 0,
"speed": 11
},
"agencyId": 1,
"currentStopSequence": 10,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1578934250,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 3235
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62243,
45.43916
]
},
"properties": {
"trip": {
"id": "286571703",
"shortName": null,
"headsign": "Est",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1060134"
},
"route": {
"id": "106",
"shortName": "106",
"longName": "Newman",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40046",
"label": "40046",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 20,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1579018485,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3241
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57634,
45.45568
]
},
"properties": {
"trip": {
"id": "286572174",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:12:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1080082"
},
"route": {
"id": "108",
"shortName": "108",
"longName": "Bannantyne",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40042",
"label": "40042",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 184,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 21,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1579029181,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3242
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74097,
45.44656
]
},
"properties": {
"trip": {
"id": "286572125",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:29:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1980009"
},
"route": {
"id": "198",
"shortName": "198",
"longName": "Broadway",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29099",
"label": "29099",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 46,
"odometer": 0,
"speed": 33
},
"agencyId": 1,
"currentStopSequence": 55,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1579050624,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3244
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64764,
45.47154
]
},
"properties": {
"trip": {
"id": "286571494",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:43:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1040117"
},
"route": {
"id": "104",
"shortName": "104",
"longName": "Cavendish",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40052",
"label": "40052",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 301,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 32,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1579103311,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3247
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66039,
45.4757
]
},
"properties": {
"trip": {
"id": "286573047",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:01:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1380088"
},
"route": {
"id": "138",
"shortName": "138",
"longName": "Notre-Dame-de-Grâce",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40002",
"label": "40002",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 301,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 38,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1579105004,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3249
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64953,
45.46991
]
},
"properties": {
"trip": {
"id": "284726649",
"shortName": null,
"headsign": "Sud",
"startTime": "10:28:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "660103"
},
"route": {
"id": "66",
"shortName": "66",
"longName": "The Boulevard",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29024",
"label": "29024",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 292,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1579138590,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 3251
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59965,
45.55986
]
},
"properties": {
"trip": {
"id": "285030524",
"shortName": null,
"headsign": "Est",
"startTime": "10:45:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "1410585"
},
"route": {
"id": "141",
"shortName": "141",
"longName": "Jean-Talon Est",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30002",
"label": "30002",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 180,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1579225960,
"lastSeenAt": 1749753030,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 3256
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56715,
45.51048
]
},
"properties": {
"trip": {
"id": "284777023",
"shortName": null,
"headsign": "Sud",
"startTime": "09:49:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "800107"
},
"route": {
"id": "80",
"shortName": "80",
"longName": "Avenue du Parc",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "33819",
"label": "33819",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 200,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 30,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1579226460,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 3257
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64885,
45.4432
]
},
"properties": {
"trip": {
"id": "286572641",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:45:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "900254"
},
"route": {
"id": "90",
"shortName": "90",
"longName": "Saint-Jacques",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40021",
"label": "40021",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 32,
"currentStatus": 2,
"congestionLevel": 3,
"occupancyStatus": 1,
"firstSeenAt": 1579287782,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3259
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69213,
45.43756
]
},
"properties": {
"trip": {
"id": "286571400",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:54:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "4910084"
},
"route": {
"id": "491",
"shortName": "491",
"longName": "Express Provost",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40012",
"label": "40012",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 173,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 10,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1579297610,
"lastSeenAt": 1749753031,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3262
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62104,
45.60759
]
},
"properties": {
"trip": {
"id": "284741329",
"shortName": null,
"headsign": "Sud destination Pie-IX / Notre-Dame",
"startTime": "10:18:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "4390255"
},
"route": {
"id": "439",
"shortName": "439",
"longName": "Express Pie-IX",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31861",
"label": "31861",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 11,
"currentStatus": 2,
"congestionLevel": 3,
"occupancyStatus": 1,
"firstSeenAt": 1579647397,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 3277
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66811,
45.43177
]
},
"properties": {
"trip": {
"id": "286573328",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:07:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1950177"
},
"route": {
"id": "195",
"shortName": "195",
"longName": "Dorval / Angrignon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40027",
"label": "40027",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 257,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 26,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1579968303,
"lastSeenAt": 1749753030,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3290
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63014,
45.43227
]
},
"properties": {
"trip": {
"id": "286572986",
"shortName": null,
"headsign": "Sud",
"startTime": "10:12:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1230114"
},
"route": {
"id": "123",
"shortName": "123",
"longName": "Dollard / Shevchenko",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40059",
"label": "40059",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 57,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1580146448,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3297
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57915,
45.48809
]
},
"properties": {
"trip": {
"id": "286573773",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:23:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "2110143"
},
"route": {
"id": "211",
"shortName": "211",
"longName": "Bord-du-Lac",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40054",
"label": "40054",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 225,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1580179206,
"lastSeenAt": 1749753031,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3300
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63277,
45.42963
]
},
"properties": {
"trip": {
"id": "286573389",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1130161"
},
"route": {
"id": "113",
"shortName": "113",
"longName": "Lapierre",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40057",
"label": "40057",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 309,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1580231049,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3303
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54437,
45.4594
]
},
"properties": {
"trip": {
"id": "285282963",
"shortName": null,
"headsign": "Nord",
"startTime": "10:19:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "1680170"
},
"route": {
"id": "168",
"shortName": "168",
"longName": "Cité-du-Havre",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31047",
"label": "31047",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 316,
"odometer": 0,
"speed": 6
},
"agencyId": 1,
"currentStopSequence": 10,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1580261766,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 3306
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65487,
45.46217
]
},
"properties": {
"trip": {
"id": "286571291",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:08:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1020074"
},
"route": {
"id": "102",
"shortName": "102",
"longName": "Somerled",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40060",
"label": "40060",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 286,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 26,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1580405049,
"lastSeenAt": 1749752978,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3313
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.7188,
45.53158
]
},
"properties": {
"trip": {
"id": "284738573",
"shortName": null,
"headsign": "Est",
"startTime": "10:34:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "690225"
},
"route": {
"id": "69",
"shortName": "69",
"longName": "Gouin",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31844",
"label": "31844",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1580434568,
"lastSeenAt": 1749753030,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 3314
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57933,
45.49386
]
},
"properties": {
"trip": {
"id": "284779243",
"shortName": null,
"headsign": "Sud",
"startTime": "09:59:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1650117"
},
"route": {
"id": "165",
"shortName": "165",
"longName": "Côte-des-Neiges",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "33841",
"label": "33841",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 128,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 33,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1580794443,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 3319
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63895,
45.49495
]
},
"properties": {
"trip": {
"id": "284778244",
"shortName": null,
"headsign": "Nord",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1240125"
},
"route": {
"id": "124",
"shortName": "124",
"longName": "Victoria",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37007",
"label": "37007",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 304,
"odometer": 0,
"speed": 30
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1580796906,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 3321
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59161,
45.43453
]
},
"properties": {
"trip": {
"id": "286571852",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:55:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1070141"
},
"route": {
"id": "107",
"shortName": "107",
"longName": "Verdun",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40044",
"label": "40044",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 283,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 43,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1580937967,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3328
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63415,
45.48232
]
},
"properties": {
"trip": {
"id": "286570671",
"shortName": null,
"headsign": "Nord",
"startTime": "09:56:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "630364"
},
"route": {
"id": "63",
"shortName": "63",
"longName": "Girouard",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29115",
"label": "29115",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 302,
"odometer": 0,
"speed": 4
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1581112804,
"lastSeenAt": 1749752647,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3336
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60404,
45.4743
]
},
"properties": {
"trip": {
"id": "286571552",
"shortName": null,
"headsign": "Est",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1040114"
},
"route": {
"id": "104",
"shortName": "104",
"longName": "Cavendish",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40022",
"label": "40022",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 36,
"odometer": 0,
"speed": 19
},
"agencyId": 1,
"currentStopSequence": 30,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1581370324,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3342
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66229,
45.45927
]
},
"properties": {
"trip": {
"id": "284777801",
"shortName": null,
"headsign": "Est",
"startTime": "10:29:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "1030154"
},
"route": {
"id": "103",
"shortName": "103",
"longName": "Monkland",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37027",
"label": "37027",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 58,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 3,
"occupancyStatus": 1,
"firstSeenAt": 1581371164,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 3344
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62506,
45.52148
]
},
"properties": {
"trip": {
"id": "284727143",
"shortName": null,
"headsign": "Nord",
"startTime": "10:30:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "1790192"
},
"route": {
"id": "179",
"shortName": "179",
"longName": "De l'Acadie",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31020",
"label": "31020",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1581455403,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 3347
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62767,
45.49841
]
},
"properties": {
"trip": {
"id": "284726706",
"shortName": null,
"headsign": "Sud",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "1290221"
},
"route": {
"id": "129",
"shortName": "129",
"longName": "Côte-Sainte-Catherine",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29036",
"label": "29036",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 38,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 3,
"occupancyStatus": 1,
"firstSeenAt": 1581574744,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 3353
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61088,
45.42615
]
},
"properties": {
"trip": {
"id": "286570411",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:32:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "610126"
},
"route": {
"id": "61",
"shortName": "61",
"longName": "Wellington",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40061",
"label": "40061",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 119,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 51,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1582004706,
"lastSeenAt": 1749752511,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3363
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.88374,
45.46316
]
},
"properties": {
"trip": {
"id": "284778991",
"shortName": null,
"headsign": "Ouest destination Usine de filtration",
"startTime": "09:46:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "4700259"
},
"route": {
"id": "470",
"shortName": "470",
"longName": "Express Pierrefonds",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "33820",
"label": "33820",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 229,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1582756207,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 3380
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58096,
45.61842
]
},
"properties": {
"trip": {
"id": "285030372",
"shortName": null,
"headsign": "Est",
"startTime": "09:48:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "1920150"
},
"route": {
"id": "192",
"shortName": "192",
"longName": "Robert",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30129",
"label": "30129",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 48,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1583275026,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 3399
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66177,
45.47569
]
},
"properties": {
"trip": {
"id": "284727564",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:55:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "1610134"
},
"route": {
"id": "161",
"shortName": "161",
"longName": "Van Horne",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31029",
"label": "31029",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1583715363,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 6789
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59012,
45.51712
]
},
"properties": {
"trip": {
"id": "284776860",
"shortName": null,
"headsign": "Sud",
"startTime": "10:06:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H50M000S-81-S",
"shapeId": "800107"
},
"route": {
"id": "80",
"shortName": "80",
"longName": "Avenue du Parc",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29816",
"label": "29816",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 125,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 20,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1584986523,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 7021
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55431,
45.56004
]
},
"properties": {
"trip": {
"id": "285283941",
"shortName": null,
"headsign": "Est",
"startTime": "10:16:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "1850126"
},
"route": {
"id": "185",
"shortName": "185",
"longName": "Sherbrooke",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31169",
"label": "31169",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 357,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 16,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1586020863,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 7076
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49292,
45.64035
]
},
"properties": {
"trip": {
"id": "285030331",
"shortName": null,
"headsign": "Sud",
"startTime": "10:05:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H54M000S-80-S",
"shapeId": "810020"
},
"route": {
"id": "81",
"shortName": "81",
"longName": "Saint-Jean-Baptiste",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31009",
"label": "31009",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 106,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1591293847,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 7297
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59224,
45.51337
]
},
"properties": {
"trip": {
"id": "285001027",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "110157"
},
"route": {
"id": "11",
"shortName": "11",
"longName": "Parc-du-Mont-Royal / Ridgewood",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40115",
"label": "40115",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 236,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 15,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1597442413,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 7839
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5832,
45.53122
]
},
"properties": {
"trip": {
"id": "285001109",
"shortName": null,
"headsign": "Nord",
"startTime": "09:58:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "140065"
},
"route": {
"id": "14",
"shortName": "14",
"longName": "Atateken",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40107",
"label": "40107",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 34,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1598468884,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 8505
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.93906,
45.404
]
},
"properties": {
"trip": {
"id": "286574215",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:36:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "4050078"
},
"route": {
"id": "405",
"shortName": "405",
"longName": "Express Bord-du-Lac",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40075",
"label": "40075",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 245,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 31,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1598669345,
"lastSeenAt": 1749752961,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 8602
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60329,
45.44673
]
},
"properties": {
"trip": {
"id": "286571655",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:34:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1130161"
},
"route": {
"id": "113",
"shortName": "113",
"longName": "Lapierre",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40074",
"label": "40074",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1598670786,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 8603
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63353,
45.44188
]
},
"properties": {
"trip": {
"id": "286572856",
"shortName": null,
"headsign": "Nord",
"startTime": "09:17:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1140009"
},
"route": {
"id": "114",
"shortName": "114",
"longName": "Angrignon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40071",
"label": "40071",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 40,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1598896267,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 8634
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64001,
45.42898
]
},
"properties": {
"trip": {
"id": "286572747",
"shortName": null,
"headsign": "Est",
"startTime": "10:22:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1130162"
},
"route": {
"id": "113",
"shortName": "113",
"longName": "Lapierre",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40067",
"label": "40067",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 9,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1599565454,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 8765
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.688,
45.43473
]
},
"properties": {
"trip": {
"id": "286572317",
"shortName": null,
"headsign": "Est",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1950182"
},
"route": {
"id": "195",
"shortName": "195",
"longName": "Dorval / Angrignon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40079",
"label": "40079",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 86,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1600175355,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 8825
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63542,
45.48168
]
},
"properties": {
"trip": {
"id": "285001672",
"shortName": null,
"headsign": "Est",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "510185"
},
"route": {
"id": "51",
"shortName": "51",
"longName": "Édouard-Montpetit",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40097",
"label": "40097",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 120,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 52,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1600427173,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 8843
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55287,
45.5182
]
},
"properties": {
"trip": {
"id": "285002447",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:33:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "4300151"
},
"route": {
"id": "430",
"shortName": "430",
"longName": "Express Pointe-aux-Trembles",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40096",
"label": "40096",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 211,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 25,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1600542368,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 8849
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.82346,
45.44069
]
},
"properties": {
"trip": {
"id": "286571176",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:56:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "4050078"
},
"route": {
"id": "405",
"shortName": "405",
"longName": "Express Bord-du-Lac",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40081",
"label": "40081",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 252,
"odometer": 0,
"speed": 90
},
"agencyId": 1,
"currentStopSequence": 5,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1600548187,
"lastSeenAt": 1749753031,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 8851
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57207,
45.53877
]
},
"properties": {
"trip": {
"id": "285002217",
"shortName": null,
"headsign": "Est",
"startTime": "09:36:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "970203"
},
"route": {
"id": "97",
"shortName": "97",
"longName": "Avenue-du-Mont-Royal",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40108",
"label": "40108",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 186,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 35,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1600681985,
"lastSeenAt": 1749753030,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 8857
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55287,
45.49889
]
},
"properties": {
"trip": {
"id": "285284833",
"shortName": null,
"headsign": "Est",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "500006"
},
"route": {
"id": "50",
"shortName": "50",
"longName": "Vieux-Montréal / Vieux-Port",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31182",
"label": "31182",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 357,
"odometer": 0,
"speed": 33
},
"agencyId": 1,
"currentStopSequence": 14,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1600691827,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 8860
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60789,
45.51495
]
},
"properties": {
"trip": {
"id": "285001742",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:15:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "510191"
},
"route": {
"id": "51",
"shortName": "51",
"longName": "Édouard-Montpetit",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40118",
"label": "40118",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 248,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 11,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1600770967,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 8867
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6348,
45.42158
]
},
"properties": {
"trip": {
"id": "286571632",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:03:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1120178"
},
"route": {
"id": "112",
"shortName": "112",
"longName": "Airlie",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40068",
"label": "40068",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 36,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1601026145,
"lastSeenAt": 1749753036,
"links": [
3,
3,
22
],
"tags": [
4
]
},
"id": 8897
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67149,
45.46217
]
},
"properties": {
"trip": {
"id": "285001824",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:43:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "1610134"
},
"route": {
"id": "161",
"shortName": "161",
"longName": "Van Horne",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40092",
"label": "40092",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 32,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 48,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1601288285,
"lastSeenAt": 1749753046,
"links": [
3,
3,
22
],
"tags": [
6
]
},
"id": 8907
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57847,
45.50547
]
},
"properties": {
"trip": {
"id": "284727020",
"shortName": null,
"headsign": "Est",
"startTime": "10:23:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H55M000S-80-S",
"shapeId": "1440095"
},
"route": {
"id": "144",
"shortName": "144",
"longName": "Avenue des Pins",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30146",
"label": "30146",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 358,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 11,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1601373665,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 8911
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60488,
45.44706
]
},
"properties": {
"trip": {
"id": "286573286",
"shortName": null,
"headsign": "Est",
"startTime": "09:41:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1950182"
},
"route": {
"id": "195",
"shortName": "195",
"longName": "Dorval / Angrignon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40066",
"label": "40066",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 172,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 59,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1601415132,
"lastSeenAt": 1749752913,
"links": [
3,
3,
22
],
"tags": [
4
]
},
"id": 8913
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58765,
45.52641
]
},
"properties": {
"trip": {
"id": "285001716",
"shortName": null,
"headsign": "Est",
"startTime": "09:33:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "510185"
},
"route": {
"id": "51",
"shortName": "51",
"longName": "Édouard-Montpetit",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40094",
"label": "40094",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 39,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 51,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1601461506,
"lastSeenAt": 1749752697,
"links": [
3,
3,
22
],
"tags": [
6
]
},
"id": 8915
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59706,
45.51822
]
},
"properties": {
"trip": {
"id": "285001601",
"shortName": null,
"headsign": "Est",
"startTime": "09:49:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "510185"
},
"route": {
"id": "51",
"shortName": "51",
"longName": "Édouard-Montpetit",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40111",
"label": "40111",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 31,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 46,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1601465590,
"lastSeenAt": 1749753046,
"links": [
3,
3,
22
],
"tags": [
6
]
},
"id": 8917
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75182,
45.45527
]
},
"properties": {
"trip": {
"id": "285009394",
"shortName": null,
"headsign": "Est",
"startTime": "09:57:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2040212"
},
"route": {
"id": "204",
"shortName": "204",
"longName": "Cardinal",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40139",
"label": "40139",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1601927409,
"lastSeenAt": 1749753046,
"links": [
3,
3,
22
],
"tags": [
8
]
},
"id": 9051
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83175,
45.46627
]
},
"properties": {
"trip": {
"id": "285008364",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:40:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2250139"
},
"route": {
"id": "225",
"shortName": "225",
"longName": "Hymus",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40156",
"label": "40156",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 234,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 49,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1602267427,
"lastSeenAt": 1749752514,
"links": [
3,
3,
22
],
"tags": [
8
]
},
"id": 9080
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73646,
45.52383
]
},
"properties": {
"trip": {
"id": "285006813",
"shortName": null,
"headsign": "Est",
"startTime": "09:44:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "680412"
},
"route": {
"id": "68",
"shortName": "68",
"longName": "Pierrefonds",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40157",
"label": "40157",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 66,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1602270490,
"lastSeenAt": 1749753046,
"links": [
3,
3,
22
],
"tags": [
8
]
},
"id": 9082
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.8467,
45.50962
]
},
"properties": {
"trip": {
"id": "285009518",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:21:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2050111"
},
"route": {
"id": "205",
"shortName": "205",
"longName": "Gouin",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40133",
"label": "40133",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 183,
"odometer": 0,
"speed": 4
},
"agencyId": 1,
"currentStopSequence": 15,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1602674533,
"lastSeenAt": 1749753044,
"links": [
3,
3,
22
],
"tags": [
8
]
},
"id": 9098
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.78223,
45.44973
]
},
"properties": {
"trip": {
"id": "285009042",
"shortName": null,
"headsign": "Est",
"startTime": "10:02:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2030123"
},
"route": {
"id": "203",
"shortName": "203",
"longName": "Carson",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40126",
"label": "40126",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 164,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606827731,
"lastSeenAt": 1749753034,
"links": [
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9204
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.9243,
45.40535
]
},
"properties": {
"trip": {
"id": "285008418",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:58:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2000098"
},
"route": {
"id": "200",
"shortName": "200",
"longName": "Sainte-Anne-de-Bellevue",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40134",
"label": "40134",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 276,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 42,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606827732,
"lastSeenAt": 1749753030,
"links": [
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9208
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74842,
45.49518
]
},
"properties": {
"trip": {
"id": "285009183",
"shortName": null,
"headsign": "Est",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2060107"
},
"route": {
"id": "206",
"shortName": "206",
"longName": "Roger-Pilon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40138",
"label": "40138",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 224,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606827732,
"lastSeenAt": 1749753046,
"links": [
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9211
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.81805,
45.44922
]
},
"properties": {
"trip": {
"id": "285008716",
"shortName": null,
"headsign": "Est",
"startTime": "10:20:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2020187"
},
"route": {
"id": "202",
"shortName": "202",
"longName": "Dawson",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40148",
"label": "40148",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 163,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 6,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606827732,
"lastSeenAt": 1749753031,
"links": [
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9216
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75921,
45.44194
]
},
"properties": {
"trip": {
"id": "285009305",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:54:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2020185"
},
"route": {
"id": "202",
"shortName": "202",
"longName": "Dawson",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40172",
"label": "40172",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 267,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 42,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606827732,
"lastSeenAt": 1749753045,
"links": [
3,
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9226
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.77731,
45.45006
]
},
"properties": {
"trip": {
"id": "285009093",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2040214"
},
"route": {
"id": "204",
"shortName": "204",
"longName": "Cardinal",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40173",
"label": "40173",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 272,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606827732,
"lastSeenAt": 1749753047,
"links": [
3,
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9227
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.80618,
45.49397
]
},
"properties": {
"trip": {
"id": "285009376",
"shortName": null,
"headsign": "Est",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2080107"
},
"route": {
"id": "208",
"shortName": "208",
"longName": "Brunswick",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40177",
"label": "40177",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 236,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 41,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606827732,
"lastSeenAt": 1749753046,
"links": [
3,
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9228
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74889,
45.49917
]
},
"properties": {
"trip": {
"id": "285009612",
"shortName": null,
"headsign": "Est",
"startTime": "10:06:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2150156"
},
"route": {
"id": "215",
"shortName": "215",
"longName": "Henri-Bourassa",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40200",
"label": "40200",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 27,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606827733,
"lastSeenAt": 1749753032,
"links": [
3,
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9239
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.92599,
45.42583
]
},
"properties": {
"trip": {
"id": "285010184",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:15:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "4190067"
},
"route": {
"id": "419",
"shortName": "419",
"longName": "Express John Abbott",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40213",
"label": "40213",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 247,
"odometer": 0,
"speed": 44
},
"agencyId": 1,
"currentStopSequence": 15,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606827733,
"lastSeenAt": 1749753040,
"links": [
3,
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9242
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.78725,
45.50219
]
},
"properties": {
"trip": {
"id": "285008518",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2080106"
},
"route": {
"id": "208",
"shortName": "208",
"longName": "Brunswick",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40190",
"label": "40190",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 8,
"odometer": 0,
"speed": 5
},
"agencyId": 1,
"currentStopSequence": 20,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606828450,
"lastSeenAt": 1749753045,
"links": [
3,
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9247
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.85383,
45.44763
]
},
"properties": {
"trip": {
"id": "285008393",
"shortName": null,
"headsign": "Est",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2000101"
},
"route": {
"id": "200",
"shortName": "200",
"longName": "Sainte-Anne-de-Bellevue",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40194",
"label": "40194",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 31,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606831449,
"lastSeenAt": 1749753044,
"links": [
3,
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9248
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.82853,
45.4688
]
},
"properties": {
"trip": {
"id": "285008744",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:29:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2020185"
},
"route": {
"id": "202",
"shortName": "202",
"longName": "Dawson",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40125",
"label": "40125",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 135,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 69,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1606906325,
"lastSeenAt": 1749753035,
"links": [
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9257
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68364,
45.51355
]
},
"properties": {
"trip": {
"id": "285007834",
"shortName": null,
"headsign": "Est",
"startTime": "10:12:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "1740117"
},
"route": {
"id": "174",
"shortName": "174",
"longName": "Côte-Vertu-Ouest",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40196",
"label": "40196",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 302,
"odometer": 0,
"speed": 6
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606907347,
"lastSeenAt": 1749752993,
"links": [
3,
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9260
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83588,
45.46134
]
},
"properties": {
"trip": {
"id": "285009794",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:28:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2170107"
},
"route": {
"id": "217",
"shortName": "217",
"longName": "Anse-à-l'Orme",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40174",
"label": "40174",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 144,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 3,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606927869,
"lastSeenAt": 1749753047,
"links": [
3,
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9262
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63814,
45.44716
]
},
"properties": {
"trip": {
"id": "286572605",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1900002"
},
"route": {
"id": "190",
"shortName": "190",
"longName": "Norman",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40217",
"label": "40217",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 232,
"odometer": 0,
"speed": 63
},
"agencyId": 1,
"currentStopSequence": 16,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606943355,
"lastSeenAt": 1749753040,
"links": [
3,
3,
3,
3,
22
],
"tags": [
4
]
},
"id": 9263
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64808,
45.42538
]
},
"properties": {
"trip": {
"id": "286572496",
"shortName": null,
"headsign": "Est",
"startTime": "10:31:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1120177"
},
"route": {
"id": "112",
"shortName": "112",
"longName": "Airlie",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40221",
"label": "40221",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1607032933,
"lastSeenAt": 1749753040,
"links": [
3,
3,
3,
3,
22
],
"tags": [
4
]
},
"id": 9267
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.85609,
45.48832
]
},
"properties": {
"trip": {
"id": "285006856",
"shortName": null,
"headsign": "Est",
"startTime": "10:13:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "680412"
},
"route": {
"id": "68",
"shortName": "68",
"longName": "Pierrefonds",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40127",
"label": "40127",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 27,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1607118970,
"lastSeenAt": 1749753043,
"links": [
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9271
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58389,
45.48983
]
},
"properties": {
"trip": {
"id": "286574121",
"shortName": null,
"headsign": "Nord",
"startTime": "09:57:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "570103"
},
"route": {
"id": "57",
"shortName": "57",
"longName": "Charlevoix",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40225",
"label": "40225",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 23,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1607180344,
"lastSeenAt": 1749752657,
"links": [
3,
3,
3,
3,
22
],
"tags": [
4
]
},
"id": 9272
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65933,
45.45917
]
},
"properties": {
"trip": {
"id": "286574292",
"shortName": null,
"headsign": "Est",
"startTime": "08:34:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "4200115"
},
"route": {
"id": "420",
"shortName": "420",
"longName": "Express Notre-Dame-de-Grâce",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40226",
"label": "40226",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 20,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1607372415,
"lastSeenAt": 1749753048,
"links": [
3,
3,
3,
3,
22
],
"tags": [
4
]
},
"id": 9275
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83038,
45.46693
]
},
"properties": {
"trip": {
"id": "285007868",
"shortName": null,
"headsign": "Est",
"startTime": "10:30:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2080107"
},
"route": {
"id": "208",
"shortName": "208",
"longName": "Brunswick",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40214",
"label": "40214",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1607546355,
"lastSeenAt": 1749753039,
"links": [
3,
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9282
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67213,
45.50834
]
},
"properties": {
"trip": {
"id": "285008077",
"shortName": null,
"headsign": "Sud",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "1170074"
},
"route": {
"id": "117",
"shortName": "117",
"longName": "O'Brien",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40189",
"label": "40189",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 216,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1607548577,
"lastSeenAt": 1749752688,
"links": [
3,
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9285
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59888,
45.42802
]
},
"properties": {
"trip": {
"id": "286572277",
"shortName": null,
"headsign": "Est",
"startTime": "10:11:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1120177"
},
"route": {
"id": "112",
"shortName": "112",
"longName": "Airlie",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40228",
"label": "40228",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 13,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1607766905,
"lastSeenAt": 1749753032,
"links": [
3,
3,
3,
22
],
"tags": [
4
]
},
"id": 9290
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.80923,
45.45419
]
},
"properties": {
"trip": {
"id": "285008611",
"shortName": null,
"headsign": "Nord",
"startTime": "09:35:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2010213"
},
"route": {
"id": "201",
"shortName": "201",
"longName": "Saint-Charles / Saint-Jean",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40195",
"label": "40195",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 57,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1607774588,
"lastSeenAt": 1749753042,
"links": [
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9291
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59497,
45.44574
]
},
"properties": {
"trip": {
"id": "286569896",
"shortName": null,
"headsign": "Est",
"startTime": "10:06:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1130162"
},
"route": {
"id": "113",
"shortName": "113",
"longName": "Lapierre",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40223",
"label": "40223",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 287,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 28,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1608004987,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 9296
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.82563,
45.43504
]
},
"properties": {
"trip": {
"id": "286573752",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:52:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "2110143"
},
"route": {
"id": "211",
"shortName": "211",
"longName": "Bord-du-Lac",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40236",
"label": "40236",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 166,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 13,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1608070755,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 9300
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73198,
45.45588
]
},
"properties": {
"trip": {
"id": "285008793",
"shortName": null,
"headsign": "Est",
"startTime": "09:56:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2020187"
},
"route": {
"id": "202",
"shortName": "202",
"longName": "Dawson",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40184",
"label": "40184",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 44,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 40,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1608116825,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 9301
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68363,
45.51349
]
},
"properties": {
"trip": {
"id": "285008690",
"shortName": null,
"headsign": "Est",
"startTime": "09:38:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2150156"
},
"route": {
"id": "215",
"shortName": "215",
"longName": "Henri-Bourassa",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40165",
"label": "40165",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 50,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1608118387,
"lastSeenAt": 1749752749,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 9302
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66859,
45.55439
]
},
"properties": {
"trip": {
"id": "285007552",
"shortName": null,
"headsign": "Est",
"startTime": "09:49:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "1640160"
},
"route": {
"id": "164",
"shortName": "164",
"longName": "Dudemaine",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40167",
"label": "40167",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 47,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1608141907,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 9304
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55778,
45.48552
]
},
"properties": {
"trip": {
"id": "286570496",
"shortName": null,
"headsign": "Est",
"startTime": "09:53:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "610123"
},
"route": {
"id": "61",
"shortName": "61",
"longName": "Wellington",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40231",
"label": "40231",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 26,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 44,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1608372964,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 9317
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74702,
45.50077
]
},
"properties": {
"trip": {
"id": "285008997",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:07:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "2250139"
},
"route": {
"id": "225",
"shortName": "225",
"longName": "Hymus",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40216",
"label": "40216",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 225,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 26,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1608636126,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 9320
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61235,
45.47269
]
},
"properties": {
"trip": {
"id": "285006468",
"shortName": null,
"headsign": "Sud",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "170097"
},
"route": {
"id": "17",
"shortName": "17",
"longName": "Décarie",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40209",
"label": "40209",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 30,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1608722769,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 9323
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.7247,
45.4921
]
},
"properties": {
"trip": {
"id": "285008048",
"shortName": null,
"headsign": "Est",
"startTime": "10:18:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H60M000S-80-S",
"shapeId": "1770139"
},
"route": {
"id": "177",
"shortName": "177",
"longName": "Thimens",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40170",
"label": "40170",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 195,
"odometer": 0,
"speed": 14
},
"agencyId": 1,
"currentStopSequence": 16,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1609016232,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 9325
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59538,
45.45679
]
},
"properties": {
"trip": {
"id": "286570079",
"shortName": null,
"headsign": "Est",
"startTime": "10:17:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "360158"
},
"route": {
"id": "36",
"shortName": "36",
"longName": "Monk",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40243",
"label": "40243",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 9,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1609270150,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 9329
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58147,
45.48268
]
},
"properties": {
"trip": {
"id": "286574160",
"shortName": null,
"headsign": "Est",
"startTime": "09:57:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1900003"
},
"route": {
"id": "190",
"shortName": "190",
"longName": "Norman",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40247",
"label": "40247",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 49,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1609292286,
"lastSeenAt": 1749752968,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 9331
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60831,
45.45905
]
},
"properties": {
"trip": {
"id": "286570861",
"shortName": null,
"headsign": "Est",
"startTime": "09:58:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1010135"
},
"route": {
"id": "101",
"shortName": "101",
"longName": "Saint-Patrick",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40240",
"label": "40240",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 66,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 32,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1609624328,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 9336
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6498,
45.42507
]
},
"properties": {
"trip": {
"id": "286572786",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:05:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1060135"
},
"route": {
"id": "106",
"shortName": "106",
"longName": "Newman",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40251",
"label": "40251",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 20,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 26,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1610571675,
"lastSeenAt": 1749752774,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 9351
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83572,
45.42847
]
},
"properties": {
"trip": {
"id": "286572242",
"shortName": null,
"headsign": "Est",
"startTime": "10:07:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "2110142"
},
"route": {
"id": "211",
"shortName": "211",
"longName": "Bord-du-Lac",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40244",
"label": "40244",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 110,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1610574133,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 9352
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68871,
45.43736
]
},
"properties": {
"trip": {
"id": "286572767",
"shortName": null,
"headsign": "Est",
"startTime": "10:40:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1100211"
},
"route": {
"id": "110",
"shortName": "110",
"longName": "Centrale",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40233",
"label": "40233",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1610733850,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 9358
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60532,
45.47319
]
},
"properties": {
"trip": {
"id": "286571351",
"shortName": null,
"headsign": "Est",
"startTime": "10:05:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1020075"
},
"route": {
"id": "102",
"shortName": "102",
"longName": "Somerled",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40246",
"label": "40246",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 38,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 25,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1612208048,
"lastSeenAt": 1749752764,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 9740
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61986,
45.49779
]
},
"properties": {
"trip": {
"id": "285001900",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:06:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "510191"
},
"route": {
"id": "51",
"shortName": "51",
"longName": "Édouard-Montpetit",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41003",
"label": "41003",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 121,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1625862964,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 10677
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61929,
45.49469
]
},
"properties": {
"trip": {
"id": "285002299",
"shortName": null,
"headsign": "Est",
"startTime": "10:06:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "510185"
},
"route": {
"id": "51",
"shortName": "51",
"longName": "Édouard-Montpetit",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41014",
"label": "41014",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 33,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1625864464,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 10678
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5662,
45.55679
]
},
"properties": {
"trip": {
"id": "285001328",
"shortName": null,
"headsign": "Est",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "270111"
},
"route": {
"id": "27",
"shortName": "27",
"longName": "Boulevard Saint-Joseph",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41010",
"label": "41010",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 293,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1626121924,
"lastSeenAt": 1749752795,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 10682
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57787,
45.54341
]
},
"properties": {
"trip": {
"id": "285001513",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:18:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "470114"
},
"route": {
"id": "47",
"shortName": "47",
"longName": "Masson",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41024",
"label": "41024",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 13,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1626234243,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 10688
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58523,
45.53785
]
},
"properties": {
"trip": {
"id": "285001459",
"shortName": null,
"headsign": "Est",
"startTime": "10:22:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "470115"
},
"route": {
"id": "47",
"shortName": "47",
"longName": "Masson",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41008",
"label": "41008",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 124,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 8,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1626257043,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 10689
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61375,
45.5089
]
},
"properties": {
"trip": {
"id": "285001882",
"shortName": null,
"headsign": "Est",
"startTime": "09:57:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "510185"
},
"route": {
"id": "51",
"shortName": "51",
"longName": "Édouard-Montpetit",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41011",
"label": "41011",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 37,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1626468905,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 10696
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51164,
45.60783
]
},
"properties": {
"trip": {
"id": "285001694",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:05:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "4300151"
},
"route": {
"id": "430",
"shortName": "430",
"longName": "Express Pointe-aux-Trembles",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41026",
"label": "41026",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 192,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 21,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1626987485,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 10710
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59592,
45.5195
]
},
"properties": {
"trip": {
"id": "285001969",
"shortName": null,
"headsign": "Est",
"startTime": "09:41:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "510185"
},
"route": {
"id": "51",
"shortName": "51",
"longName": "Édouard-Montpetit",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41018",
"label": "41018",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 29,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 46,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1627130644,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 10720
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56255,
45.54301
]
},
"properties": {
"trip": {
"id": "285001173",
"shortName": null,
"headsign": "Nord",
"startTime": "10:24:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "250054"
},
"route": {
"id": "25",
"shortName": "25",
"longName": "Angus",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41017",
"label": "41017",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 5,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1627413246,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 10728
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72341,
45.5313
]
},
"properties": {
"trip": {
"id": "284739443",
"shortName": null,
"headsign": "Est",
"startTime": "10:32:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "1800111"
},
"route": {
"id": "180",
"shortName": "180",
"longName": "De Salaberry",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41042",
"label": "41042",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1628027405,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 10748
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58948,
45.51664
]
},
"properties": {
"trip": {
"id": "285001001",
"shortName": null,
"headsign": "Est",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "110156"
},
"route": {
"id": "11",
"shortName": "11",
"longName": "Parc-du-Mont-Royal / Ridgewood",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41007",
"label": "41007",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 26,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1628157364,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 10753
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57734,
45.53761
]
},
"properties": {
"trip": {
"id": "285001300",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "270110"
},
"route": {
"id": "27",
"shortName": "27",
"longName": "Boulevard Saint-Joseph",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41029",
"label": "41029",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 14,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1629912965,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 10794
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56693,
45.6479
]
},
"properties": {
"trip": {
"id": "284738922",
"shortName": null,
"headsign": "Est via Gouin / Ozias-Leduc",
"startTime": "09:42:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "480413"
},
"route": {
"id": "48",
"shortName": "48",
"longName": "Perras",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41049",
"label": "41049",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 52,
"odometer": 0,
"speed": 44
},
"agencyId": 1,
"currentStopSequence": 43,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1629921492,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 10795
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56965,
45.53062
]
},
"properties": {
"trip": {
"id": "284739808",
"shortName": null,
"headsign": "Sud",
"startTime": "09:50:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "450177"
},
"route": {
"id": "45",
"shortName": "45",
"longName": "Papineau",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41053",
"label": "41053",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 35,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1630527125,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 10807
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71104,
45.47136
]
},
"properties": {
"trip": {
"id": "284739924",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:19:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "4600351"
},
"route": {
"id": "460",
"shortName": "460",
"longName": "Express Métropolitaine",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41052",
"label": "41052",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 224,
"odometer": 0,
"speed": 44
},
"agencyId": 1,
"currentStopSequence": 31,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1630609145,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 10813
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66711,
45.55622
]
},
"properties": {
"trip": {
"id": "284741161",
"shortName": null,
"headsign": "Sud",
"startTime": "10:33:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "560031"
},
"route": {
"id": "56",
"shortName": "56",
"longName": "Saint-Hubert",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41054",
"label": "41054",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1631097546,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 10855
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60197,
45.52556
]
},
"properties": {
"trip": {
"id": "284738459",
"shortName": null,
"headsign": "Sud",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "550145"
},
"route": {
"id": "55",
"shortName": "55",
"longName": "Boulevard Saint-Laurent",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41059",
"label": "41059",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 123,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 28,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1631698444,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 10876
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56876,
45.51223
]
},
"properties": {
"trip": {
"id": "284739030",
"shortName": null,
"headsign": "Sud",
"startTime": "09:30:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "550145"
},
"route": {
"id": "55",
"shortName": "55",
"longName": "Boulevard Saint-Laurent",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41063",
"label": "41063",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 46,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1631905863,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 10887
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65995,
45.547
]
},
"properties": {
"trip": {
"id": "284737655",
"shortName": null,
"headsign": "Sud",
"startTime": "10:16:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "550145"
},
"route": {
"id": "55",
"shortName": "55",
"longName": "Boulevard Saint-Laurent",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41044",
"label": "41044",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 112,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 9,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1632337386,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 10896
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70268,
45.53574
]
},
"properties": {
"trip": {
"id": "284739746",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:03:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "1800112"
},
"route": {
"id": "180",
"shortName": "180",
"longName": "De Salaberry",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41062",
"label": "41062",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 225,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 5,
"firstSeenAt": 1633029130,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 10910
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66709,
45.55657
]
},
"properties": {
"trip": {
"id": "284738672",
"shortName": null,
"headsign": "Est",
"startTime": "10:30:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "4690080"
},
"route": {
"id": "469",
"shortName": "469",
"longName": "Express Henri-Bourassa",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41046",
"label": "41046",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1633430716,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 10923
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66644,
45.56058
]
},
"properties": {
"trip": {
"id": "284739847",
"shortName": null,
"headsign": "Est destination Georges-Baril / Henri-Bourassa",
"startTime": "09:53:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "1460139"
},
"route": {
"id": "146",
"shortName": "146",
"longName": "Christophe-Colomb / Meilleur",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41070",
"label": "41070",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 32,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1635284106,
"lastSeenAt": 1749752690,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 10944
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65308,
45.5788
]
},
"properties": {
"trip": {
"id": "284739251",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:04:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "4690081"
},
"route": {
"id": "469",
"shortName": "469",
"longName": "Express Henri-Bourassa",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41106",
"label": "41106",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 209,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 18,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1643363763,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11048
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6329,
45.58777
]
},
"properties": {
"trip": {
"id": "284739167",
"shortName": null,
"headsign": "Est",
"startTime": "09:30:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "410323"
},
"route": {
"id": "41",
"shortName": "41",
"longName": "Quartier Saint-Michel / Ahuntsic",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41113",
"label": "41113",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 234,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 58,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1643364785,
"lastSeenAt": 1749752845,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11049
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62241,
45.62323
]
},
"properties": {
"trip": {
"id": "284739079",
"shortName": null,
"headsign": "Ouest via Gouin / Ozias-Leduc",
"startTime": "10:03:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "480412"
},
"route": {
"id": "48",
"shortName": "48",
"longName": "Perras",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41095",
"label": "41095",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 30,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1643401924,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11054
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59673,
45.56899
]
},
"properties": {
"trip": {
"id": "284738868",
"shortName": null,
"headsign": "Nord",
"startTime": "10:03:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "1394411"
},
"route": {
"id": "139",
"shortName": "139",
"longName": "Pie-IX",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41079",
"label": "41079",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1643403844,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11055
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64882,
45.5452
]
},
"properties": {
"trip": {
"id": "284741067",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:06:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "190036"
},
"route": {
"id": "19",
"shortName": "19",
"longName": "Chabanel / Marché Central",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41078",
"label": "41078",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 15,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1643489584,
"lastSeenAt": 1749753020,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11065
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58471,
45.58666
]
},
"properties": {
"trip": {
"id": "284739778",
"shortName": null,
"headsign": "Est via Jarry",
"startTime": "09:35:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "4600343"
},
"route": {
"id": "460",
"shortName": "460",
"longName": "Express Métropolitaine",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41089",
"label": "41089",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 32,
"odometer": 0,
"speed": 54
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1644238749,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11076
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.619,
45.61494
]
},
"properties": {
"trip": {
"id": "284739569",
"shortName": null,
"headsign": "Est",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "4690080"
},
"route": {
"id": "469",
"shortName": "469",
"longName": "Express Henri-Bourassa",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41120",
"label": "41120",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 318,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 14,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1644239464,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11077
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67594,
45.54203
]
},
"properties": {
"trip": {
"id": "284739675",
"shortName": null,
"headsign": "Est",
"startTime": "10:02:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "1800111"
},
"route": {
"id": "180",
"shortName": "180",
"longName": "De Salaberry",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41128",
"label": "41128",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 21,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1644487384,
"lastSeenAt": 1749753031,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11083
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62495,
45.54782
]
},
"properties": {
"trip": {
"id": "284738719",
"shortName": null,
"headsign": "Est",
"startTime": "10:15:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "1930136"
},
"route": {
"id": "193",
"shortName": "193",
"longName": "Jarry",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41077",
"label": "41077",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 13,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1644525605,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11084
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61524,
45.62706
]
},
"properties": {
"trip": {
"id": "284738142",
"shortName": null,
"headsign": "Est",
"startTime": "09:57:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "480414"
},
"route": {
"id": "48",
"shortName": "48",
"longName": "Perras",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41097",
"label": "41097",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 44,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 21,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1645089784,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11098
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64972,
45.5729
]
},
"properties": {
"trip": {
"id": "284737916",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:04:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "1400134"
},
"route": {
"id": "140",
"shortName": "140",
"longName": "Fleury",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41129",
"label": "41129",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 211,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1647984244,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11145
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6685,
45.55454
]
},
"properties": {
"trip": {
"id": "284738403",
"shortName": null,
"headsign": "Nord",
"startTime": "09:29:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "550147"
},
"route": {
"id": "55",
"shortName": "55",
"longName": "Boulevard Saint-Laurent",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41099",
"label": "41099",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 25,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 50,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1649071144,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11160
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65731,
45.56127
]
},
"properties": {
"trip": {
"id": "284738780",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:41:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "410320"
},
"route": {
"id": "41",
"shortName": "41",
"longName": "Quartier Saint-Michel / Ahuntsic",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41090",
"label": "41090",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 48,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1649184484,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11162
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59741,
45.57748
]
},
"properties": {
"trip": {
"id": "284739704",
"shortName": null,
"headsign": "Est",
"startTime": "09:55:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "1930136"
},
"route": {
"id": "193",
"shortName": "193",
"longName": "Jarry",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42003",
"label": "42003",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 31,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1661969045,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12442
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59872,
45.63763
]
},
"properties": {
"trip": {
"id": "284738217",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:16:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "480411"
},
"route": {
"id": "48",
"shortName": "48",
"longName": "Perras",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42013",
"label": "42013",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 228,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1664528044,
"lastSeenAt": 1749753030,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12615
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63931,
45.54129
]
},
"properties": {
"trip": {
"id": "284739128",
"shortName": null,
"headsign": "Nord",
"startTime": "09:46:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "550147"
},
"route": {
"id": "55",
"shortName": "55",
"longName": "Boulevard Saint-Laurent",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42007",
"label": "42007",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 35,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1664800086,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12621
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59816,
45.55904
]
},
"properties": {
"trip": {
"id": "284739603",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:11:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "410320"
},
"route": {
"id": "41",
"shortName": "41",
"longName": "Quartier Saint-Michel / Ahuntsic",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42010",
"label": "42010",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 214,
"odometer": 0,
"speed": 6
},
"agencyId": 1,
"currentStopSequence": 21,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1664828047,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12625
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60787,
45.54831
]
},
"properties": {
"trip": {
"id": "284739830",
"shortName": null,
"headsign": "Nord",
"startTime": "09:59:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "450176"
},
"route": {
"id": "45",
"shortName": "45",
"longName": "Papineau",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42009",
"label": "42009",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 293,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 21,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1664910486,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12631
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5342,
45.5964
]
},
"properties": {
"trip": {
"id": "285282365",
"shortName": null,
"headsign": "Sud",
"startTime": "09:08:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H59M000S-81-S",
"shapeId": "1360112"
},
"route": {
"id": "136",
"shortName": "136",
"longName": "Viau",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42032",
"label": "42032",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 3,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1664965384,
"lastSeenAt": 1749753030,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12637
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54874,
45.53215
]
},
"properties": {
"trip": {
"id": "284737950",
"shortName": null,
"headsign": "Nord",
"startTime": "07:28:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "1394411"
},
"route": {
"id": "139",
"shortName": "139",
"longName": "Pie-IX",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42035",
"label": "42035",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 11,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1664997186,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12640
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64095,
45.45564
]
},
"properties": {
"trip": {
"id": "285001786",
"shortName": null,
"headsign": "Est",
"startTime": "10:37:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H57M000S-81-S",
"shapeId": "510185"
},
"route": {
"id": "51",
"shortName": "51",
"longName": "Édouard-Montpetit",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42021",
"label": "42021",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 3,
"firstSeenAt": 1665173828,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12651
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63484,
45.56029
]
},
"properties": {
"trip": {
"id": "284739629",
"shortName": null,
"headsign": "Est",
"startTime": "09:58:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "540154"
},
"route": {
"id": "54",
"shortName": "54",
"longName": "Charland / Chabanel",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42040",
"label": "42040",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 302,
"odometer": 0,
"speed": 54
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1665430506,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12656
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65138,
45.5754
]
},
"properties": {
"trip": {
"id": "284737762",
"shortName": null,
"headsign": "Sud",
"startTime": "10:30:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "450177"
},
"route": {
"id": "45",
"shortName": "45",
"longName": "Papineau",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42043",
"label": "42043",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 120,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 3,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1665567784,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12661
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56962,
45.51207
]
},
"properties": {
"trip": {
"id": "284739648",
"shortName": null,
"headsign": "Nord",
"startTime": "10:21:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "550147"
},
"route": {
"id": "55",
"shortName": "55",
"longName": "Boulevard Saint-Laurent",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42017",
"label": "42017",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 197,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 51,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1666866365,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12708
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57623,
45.56144
]
},
"properties": {
"trip": {
"id": "284738323",
"shortName": null,
"headsign": "Sud",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "1394410"
},
"route": {
"id": "139",
"shortName": "139",
"longName": "Pie-IX",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42044",
"label": "42044",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 27,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1668511926,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12734
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63944,
45.5312
]
},
"properties": {
"trip": {
"id": "284739472",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:45:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H58M000S-80-S",
"shapeId": "1930135"
},
"route": {
"id": "193",
"shortName": "193",
"longName": "Jarry",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42049",
"label": "42049",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 291,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 49,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1668800763,
"lastSeenAt": 1749753031,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12744
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55561,
45.49658
]
},
"properties": {
"trip": {
"id": "286572001",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:25:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1070141"
},
"route": {
"id": "107",
"shortName": "107",
"longName": "Verdun",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44009",
"label": "44009",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 7,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1734558366,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2928814
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56338,
45.46174
]
},
"properties": {
"trip": {
"id": "286571727",
"shortName": null,
"headsign": "Sud",
"startTime": "10:07:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "380009"
},
"route": {
"id": "38",
"shortName": "38",
"longName": "De l'Église",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44011",
"label": "44011",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1734577208,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2928815
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56499,
45.50074
]
},
"properties": {
"trip": {
"id": "286570105",
"shortName": null,
"headsign": "Est",
"startTime": "09:52:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "360158"
},
"route": {
"id": "36",
"shortName": "36",
"longName": "Monk",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44004",
"label": "44004",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 38,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1734646086,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2928821
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.81499,
45.44118
]
},
"properties": {
"trip": {
"id": "286574189",
"shortName": null,
"headsign": "Est",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "4050077"
},
"route": {
"id": "405",
"shortName": "405",
"longName": "Express Bord-du-Lac",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44003",
"label": "44003",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 27,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1734987007,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2928839
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65063,
45.4411
]
},
"properties": {
"trip": {
"id": "286574521",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:58:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "4960099"
},
"route": {
"id": "496",
"shortName": "496",
"longName": "Express Victoria",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44017",
"label": "44017",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 251,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 3,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 3,
"firstSeenAt": 1737579964,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2928924
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63388,
45.43085
]
},
"properties": {
"trip": {
"id": "286571828",
"shortName": null,
"headsign": "Est",
"startTime": "10:20:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1060134"
},
"route": {
"id": "106",
"shortName": "106",
"longName": "Newman",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44013",
"label": "44013",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 62,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 15,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1737664807,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2928926
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58546,
45.48851
]
},
"properties": {
"trip": {
"id": "286571040",
"shortName": null,
"headsign": "Est",
"startTime": "09:33:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "900252"
},
"route": {
"id": "90",
"shortName": "90",
"longName": "Saint-Jacques",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44010",
"label": "44010",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 53,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1737722405,
"lastSeenAt": 1749752641,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2928928
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58486,
45.45714
]
},
"properties": {
"trip": {
"id": "286573635",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:12:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "370159"
},
"route": {
"id": "37",
"shortName": "37",
"longName": "Jolicoeur",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44016",
"label": "44016",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 274,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 15,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1737757625,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2928930
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67262,
45.43824
]
},
"properties": {
"trip": {
"id": "286572363",
"shortName": null,
"headsign": "Est",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1100211"
},
"route": {
"id": "110",
"shortName": "110",
"longName": "Centrale",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44026",
"label": "44026",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 181,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1740082265,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2928981
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.93988,
45.40375
]
},
"properties": {
"trip": {
"id": "286574138",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:25:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "2110143"
},
"route": {
"id": "211",
"shortName": "211",
"longName": "Bord-du-Lac",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44005",
"label": "44005",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 235,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 47,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1740085566,
"lastSeenAt": 1749753008,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2928982
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59566,
45.47477
]
},
"properties": {
"trip": {
"id": "286573322",
"shortName": null,
"headsign": "Est",
"startTime": "09:35:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "2110142"
},
"route": {
"id": "211",
"shortName": "211",
"longName": "Bord-du-Lac",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44007",
"label": "44007",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 17,
"odometer": 0,
"speed": 72
},
"agencyId": 1,
"currentStopSequence": 47,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1741279566,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2929024
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58101,
45.48294
]
},
"properties": {
"trip": {
"id": "286574095",
"shortName": null,
"headsign": "Est",
"startTime": "10:07:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "4910081"
},
"route": {
"id": "491",
"shortName": "491",
"longName": "Express Provost",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44025",
"label": "44025",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 8,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1742240587,
"lastSeenAt": 1749752900,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2929051
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59692,
45.47209
]
},
"properties": {
"trip": {
"id": "286572350",
"shortName": null,
"headsign": "Est",
"startTime": "09:50:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "4050077"
},
"route": {
"id": "405",
"shortName": "405",
"longName": "Express Bord-du-Lac",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44032",
"label": "44032",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 17,
"odometer": 0,
"speed": 72
},
"agencyId": 1,
"currentStopSequence": 31,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1744807988,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": []
},
"id": 2929150
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64837,
45.42506
]
},
"properties": {
"trip": {
"id": "286573371",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:54:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": "25M-H56M000S-83-S",
"shapeId": "1130161"
},
"route": {
"id": "113",
"shortName": "113",
"longName": "Lapierre",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44022",
"label": "44022",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 28,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 28,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1744881486,
"lastSeenAt": 1749752516,
"links": [
3,
22
],
"tags": []
},
"id": 2929157
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68033,
45.44303
]
},
"properties": {
"trip": {
"id": "910754",
"shortName": null,
"headsign": null,
"startTime": "10:32:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": null
},
"route": {
"id": "90",
"shortName": "90",
"longName": "Saint-Jacques",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44029",
"label": "44029",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1746092767,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": []
},
"id": 2929190
}
],
"lastRefreshAt": 1749738648
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET v2/agencies/{agency_slug}/vehicles/{vehicle}
Example request:
curl --request GET \
--get "https://api.transittracker.ca/v2/agencies/stm/vehicles/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "Accept-Language: en"
$client = new \GuzzleHttp\Client();
$url = 'https://api.transittracker.ca/v2/agencies/stm/vehicles/1';
$response = $client->get(
$url,
[
'headers' => [
'Content-Type' => 'application/json',
'Accept' => 'application/json',
'Accept-Language' => 'en',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://api.transittracker.ca/v2/agencies/stm/vehicles/1'
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Accept-Language': 'en'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (404):
Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 138
x-ratelimit-remaining: 133
content-language: en
vary: Origin
{
"message": "No query results for model [App\\Models\\Vehicle]."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET v2/vehicles
Example request:
curl --request GET \
--get "https://api.transittracker.ca/v2/vehicles" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "Accept-Language: en"
$client = new \GuzzleHttp\Client();
$url = 'https://api.transittracker.ca/v2/vehicles';
$response = $client->get(
$url,
[
'headers' => [
'Content-Type' => 'application/json',
'Accept' => 'application/json',
'Accept-Language' => 'en',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://api.transittracker.ca/v2/vehicles'
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Accept-Language': 'en'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 41
x-ratelimit-remaining: 40
content-language: en
vary: Origin
{
"data": [
{
"id": 7395,
"ref": "11013",
"isActive": false,
"label": "11013",
"timestamp": 1596669255,
"tripId": "218394791",
"routeId": "67",
"startTime": "18:38:00",
"position": {
"lat": 45.5837,
"lon": -73.64993
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 37,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "67",
"routeLongName": "Saint-Michel",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-07-23 12:29:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2946,
"ref": "11020",
"isActive": false,
"label": "11020",
"timestamp": 1741105235,
"tripId": "941689",
"routeId": "430",
"startTime": "10:35:00",
"position": {
"lat": 45.59039,
"lon": -73.50954
},
"bearing": 162,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 22,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "430",
"routeLongName": "Express Pointe-aux-Trembles",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-06 18:36:01",
"meta": {},
"updatedAt": "2025-03-04 11:22:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 11090,
"ref": "21254",
"isActive": false,
"label": "21254",
"timestamp": 1644928105,
"tripId": "241759598",
"routeId": "113",
"startTime": "07:27:00",
"position": {
"lat": 45.42506,
"lon": -73.64835
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "113",
"routeLongName": "Lapierre",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2022-02-15 07:03:07",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1,
"ref": "22215",
"isActive": false,
"label": "22215",
"timestamp": null,
"tripId": "217809243",
"routeId": "162",
"startTime": "07:43:00",
"position": {
"lat": 45.52127,
"lon": -73.66717
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "162",
"routeLongName": "Westminster",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2,
"ref": "22271",
"isActive": false,
"label": "22271",
"timestamp": null,
"tripId": "204986112",
"routeId": "205",
"startTime": "17:28:00",
"position": {
"lat": 45.51022,
"lon": -73.81322
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "205",
"routeLongName": "Gouin",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1360,
"ref": "22274",
"isActive": false,
"label": "22274",
"timestamp": null,
"tripId": "213462529",
"routeId": "419",
"startTime": "16:15:00",
"position": {
"lat": 45.4653,
"lon": -73.83135
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 21,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "419",
"routeLongName": "Express John Abbott",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:35:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3,
"ref": "22275",
"isActive": false,
"label": "22275",
"timestamp": null,
"tripId": "213374502",
"routeId": "419",
"startTime": "17:17:00",
"position": {
"lat": 45.46563,
"lon": -73.83165
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 21,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "419",
"routeLongName": "Express John Abbott",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1765,
"ref": "22281",
"isActive": false,
"label": "22281",
"timestamp": null,
"tripId": "204984833",
"routeId": "174",
"startTime": "07:36:00",
"position": {
"lat": 45.51433,
"lon": -73.68387
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "174",
"routeLongName": "Côte-Vertu-Ouest",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:35:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1807,
"ref": "22282",
"isActive": false,
"label": "22282",
"timestamp": 1601989251,
"tripId": "221067870",
"routeId": "33",
"startTime": "08:09:00",
"position": {
"lat": 45.57924,
"lon": -73.51611
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 60,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:40:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1659,
"ref": "22284",
"isActive": false,
"label": "22284",
"timestamp": 1594327398,
"tripId": "219805642",
"routeId": "215",
"startTime": "16:32:00",
"position": {
"lat": 45.47538,
"lon": -73.81367
},
"bearing": 55,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 7,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "215",
"routeLongName": "Henri-Bourassa",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:20:03",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 4,
"ref": "22286",
"isActive": false,
"label": "22286",
"timestamp": 1594327404,
"tripId": "219806213",
"routeId": "419",
"startTime": "16:16:00",
"position": {
"lat": 45.4679,
"lon": -73.82875
},
"bearing": 238,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 21,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "419",
"routeLongName": "Express John Abbott",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2666,
"ref": "22292",
"isActive": false,
"label": "22292",
"timestamp": null,
"tripId": "213459610",
"routeId": "72",
"startTime": "18:11:00",
"position": {
"lat": 45.46107,
"lon": -73.83552
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 32,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-26 12:24:05",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1151,
"ref": "22306",
"isActive": false,
"label": "22306",
"timestamp": 1594327396,
"tripId": "219804823",
"routeId": "204",
"startTime": "16:31:00",
"position": {
"lat": 45.46498,
"lon": -73.80157
},
"bearing": 144,
"speed": 10,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 11,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "204",
"routeLongName": "Cardinal",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 09:35:04",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 5,
"ref": "22307",
"isActive": false,
"label": "22307",
"timestamp": null,
"tripId": "204980263",
"routeId": "110",
"startTime": "06:24:00",
"position": {
"lat": 45.44172,
"lon": -73.59608
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "110",
"routeLongName": "Centrale",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1660,
"ref": "22309",
"isActive": false,
"label": "22309",
"timestamp": null,
"tripId": "213462270",
"routeId": "225",
"startTime": "16:45:00",
"position": {
"lat": 45.51333,
"lon": -73.68391
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "225",
"routeLongName": "Hymus",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:20:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1492,
"ref": "22317",
"isActive": false,
"label": "22317",
"timestamp": null,
"tripId": "209148471",
"routeId": "81",
"startTime": "19:58:00",
"position": {
"lat": 45.64755,
"lon": -73.57695
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 29,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "81",
"routeLongName": "Saint-Jean-Baptiste",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:55:01",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 6,
"ref": "22323",
"isActive": false,
"label": "22323",
"timestamp": null,
"tripId": "213279338",
"routeId": "186",
"startTime": "17:00:00",
"position": {
"lat": 45.60522,
"lon": -73.5505
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "186",
"routeLongName": "Sherbrooke-Est",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1906,
"ref": "22324",
"isActive": false,
"label": "22324",
"timestamp": null,
"tripId": "213460518",
"routeId": "200",
"startTime": "17:47:00",
"position": {
"lat": 45.46642,
"lon": -73.83155
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 47,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "200",
"routeLongName": "Sainte-Anne-de-Bellevue",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:55:05",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2033,
"ref": "22325",
"isActive": false,
"label": "22325",
"timestamp": 1602249916,
"tripId": "222776194",
"routeId": "68E",
"startTime": "15:59:00",
"position": {
"lat": 45.5028,
"lon": -73.73483
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 76,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:15:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 7,
"ref": "22328",
"isActive": false,
"label": "22328",
"timestamp": null,
"tripId": "213371799",
"routeId": "164",
"startTime": "15:17:00",
"position": {
"lat": 45.52495,
"lon": -73.71069
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "164",
"routeLongName": "Dudemaine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2750,
"ref": "22330",
"isActive": false,
"label": "22330",
"timestamp": 1594327404,
"tripId": "219804612",
"routeId": "72",
"startTime": "15:48:00",
"position": {
"lat": 45.51374,
"lon": -73.68198
},
"bearing": 233,
"speed": 3,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-28 12:44:02",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 8,
"ref": "22332",
"isActive": false,
"label": "22332",
"timestamp": 1594327160,
"tripId": "219806048",
"routeId": "17",
"startTime": "16:51:00",
"position": {
"lat": 45.5133,
"lon": -73.68321
},
"bearing": 138,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "17",
"routeLongName": "Décarie",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 9,
"ref": "22333",
"isActive": false,
"label": "22333",
"timestamp": 1594327399,
"tripId": "219804494",
"routeId": "208",
"startTime": "15:59:00",
"position": {
"lat": 45.50434,
"lon": -73.81744
},
"bearing": 325,
"speed": 29,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 46,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "208",
"routeLongName": "Brunswick",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 10,
"ref": "22335",
"isActive": false,
"label": "22335",
"timestamp": null,
"tripId": "204986156",
"routeId": "72",
"startTime": "15:56:00",
"position": {
"lat": 45.51435,
"lon": -73.68404
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 34,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1626,
"ref": "22337",
"isActive": false,
"label": "22337",
"timestamp": 1594327388,
"tripId": "219806198",
"routeId": "407",
"startTime": "16:33:00",
"position": {
"lat": 45.50069,
"lon": -73.83833
},
"bearing": 239,
"speed": 17,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 7,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "407",
"routeLongName": "Express Île-Bizard",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:15:03",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 11,
"ref": "22339",
"isActive": false,
"label": "22339",
"timestamp": null,
"tripId": "204987421",
"routeId": "419",
"startTime": "09:24:00",
"position": {
"lat": 45.40818,
"lon": -73.9397
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "419",
"routeLongName": "Express John Abbott",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 12,
"ref": "22343",
"isActive": false,
"label": "22343",
"timestamp": 1594327397,
"tripId": "219805876",
"routeId": "73",
"startTime": "16:30:00",
"position": {
"lat": 45.48747,
"lon": -73.68241
},
"bearing": 132,
"speed": 38,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 8,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "73",
"routeLongName": "Dalton",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 13,
"ref": "22344",
"isActive": false,
"label": "22344",
"timestamp": null,
"tripId": "963364",
"routeId": "196",
"startTime": "16:32:00",
"position": {
"lat": 45.5135,
"lon": -73.68353
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 57,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "196",
"routeLongName": "Parc-Industriel-Lachine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1731,
"ref": "22346",
"isActive": false,
"label": "22346",
"timestamp": null,
"tripId": "209230434",
"routeId": "202",
"startTime": "16:48:00",
"position": {
"lat": 45.44512,
"lon": -73.8162
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 61,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "202",
"routeLongName": "Dawson",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:30:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 7391,
"ref": "22347",
"isActive": false,
"label": "22347",
"timestamp": null,
"tripId": "219805643",
"routeId": "215",
"startTime": "17:32:00",
"position": {
"lat": null,
"lon": null
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 51,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "215",
"routeLongName": "Henri-Bourassa",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-07-20 05:47:04",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2942,
"ref": "22349",
"isActive": false,
"label": "22349",
"timestamp": 1603138417,
"tripId": "222777210",
"routeId": "72",
"startTime": "15:40:00",
"position": {
"lat": 45.50703,
"lon": -73.67342
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 22,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-06 12:12:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1661,
"ref": "22358",
"isActive": false,
"label": "22358",
"timestamp": null,
"tripId": "213303386",
"routeId": "205",
"startTime": "16:12:00",
"position": {
"lat": 45.51082,
"lon": -73.81412
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 37,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "205",
"routeLongName": "Gouin",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:20:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 14,
"ref": "22365",
"isActive": false,
"label": "22365",
"timestamp": 1594327388,
"tripId": "219804805",
"routeId": "72",
"startTime": "16:03:00",
"position": {
"lat": 45.50225,
"lon": -73.69775
},
"bearing": 41,
"speed": 47,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 32,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1810,
"ref": "22366",
"isActive": false,
"label": "22366",
"timestamp": 1594327400,
"tripId": "219804704",
"routeId": "201",
"startTime": "15:59:00",
"position": {
"lat": 45.45368,
"lon": -73.87022
},
"bearing": 325,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 36,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "201",
"routeLongName": "Saint-Charles / Saint-Jean",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:40:05",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1558,
"ref": "22368",
"isActive": false,
"label": "22368",
"timestamp": null,
"tripId": "213459433",
"routeId": "70",
"startTime": "18:10:00",
"position": {
"lat": 45.48993,
"lon": -73.72518
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 25,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "70",
"routeLongName": "Bois-Franc",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:05:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1327,
"ref": "22371",
"isActive": false,
"label": "22371",
"timestamp": null,
"tripId": "204985840",
"routeId": "203",
"startTime": "07:29:00",
"position": {
"lat": 45.44732,
"lon": -73.7404
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 47,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "203",
"routeLongName": "Carson",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:30:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1627,
"ref": "22372",
"isActive": false,
"label": "22372",
"timestamp": null,
"tripId": "204985200",
"routeId": "196",
"startTime": "16:05:00",
"position": {
"lat": 45.51423,
"lon": -73.68412
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 57,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "196",
"routeLongName": "Parc-Industriel-Lachine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:15:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1523,
"ref": "22379",
"isActive": false,
"label": "22379",
"timestamp": 1594327405,
"tripId": "218394768",
"routeId": "54",
"startTime": "16:10:00",
"position": {
"lat": 45.55476,
"lon": -73.63506
},
"bearing": 294,
"speed": 57,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "54",
"routeLongName": "Charland / Chabanel",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:00:03",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1493,
"ref": "22384",
"isActive": false,
"label": "22384",
"timestamp": null,
"tripId": "205024518",
"routeId": "54",
"startTime": "16:51:00",
"position": {
"lat": 45.57575,
"lon": -73.63595
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 43,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "54",
"routeLongName": "Charland / Chabanel",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:55:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1524,
"ref": "22390",
"isActive": false,
"label": "22390",
"timestamp": null,
"tripId": "213465213",
"routeId": "18",
"startTime": "17:20:00",
"position": {
"lat": 45.52997,
"lon": -73.60795
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 50,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "18",
"routeLongName": "Beaubien",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:00:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1766,
"ref": "22392",
"isActive": false,
"label": "22392",
"timestamp": null,
"tripId": "213468108",
"routeId": "427",
"startTime": "07:58:00",
"position": {
"lat": 45.54565,
"lon": -73.64977
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 29,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "427",
"routeLongName": "Express Saint-Joseph",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:35:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1559,
"ref": "22394",
"isActive": false,
"label": "22394",
"timestamp": null,
"tripId": "213273615",
"routeId": "460",
"startTime": "15:23:00",
"position": {
"lat": 45.59842,
"lon": -73.56709
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 47,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "460",
"routeLongName": "Express Métropolitaine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:05:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1444,
"ref": "22396",
"isActive": false,
"label": "22396",
"timestamp": 1594327400,
"tripId": "219806399",
"routeId": "64",
"startTime": "16:40:00",
"position": {
"lat": 45.53059,
"lon": -73.71799
},
"bearing": 33,
"speed": 11,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 4,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "64",
"routeLongName": "Grenet",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:50:01",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2010,
"ref": "22400",
"isActive": false,
"label": "22400",
"timestamp": null,
"tripId": "218394496",
"routeId": "41",
"startTime": "17:01:00",
"position": {
"lat": 45.57198,
"lon": -73.6386
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 40,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "41",
"routeLongName": "Quartier Saint-Michel / Ahuntsic",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:10:07",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1701,
"ref": "22402",
"isActive": false,
"label": "22402",
"timestamp": null,
"tripId": "204985344",
"routeId": "225",
"startTime": "19:18:00",
"position": {
"lat": 45.46757,
"lon": -73.82935
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 49,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "225",
"routeLongName": "Hymus",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:25:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 15,
"ref": "22403",
"isActive": false,
"label": "22403",
"timestamp": 1601992455,
"tripId": "222778193",
"routeId": "205",
"startTime": "09:08:00",
"position": {
"lat": 45.50208,
"lon": -73.73399
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 38,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "205",
"routeLongName": "Gouin",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1560,
"ref": "22404",
"isActive": false,
"label": "22404",
"timestamp": 1594327035,
"tripId": "219806107",
"routeId": "475",
"startTime": "16:30:00",
"position": {
"lat": 45.49092,
"lon": -73.71223
},
"bearing": 224,
"speed": 61,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "475",
"routeLongName": "Express Dollard-des-Ormeaux",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:05:03",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 16,
"ref": "22405",
"isActive": false,
"label": "22405",
"timestamp": null,
"tripId": "213461430",
"routeId": "204",
"startTime": "18:18:00",
"position": {
"lat": 45.4669,
"lon": -73.83072
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 39,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "204",
"routeLongName": "Cardinal",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 17,
"ref": "22406",
"isActive": false,
"label": "22406",
"timestamp": null,
"tripId": "213451600",
"routeId": "33",
"startTime": "12:15:00",
"position": {
"lat": 45.58252,
"lon": -73.5424
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 51,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2034,
"ref": "22407",
"isActive": false,
"label": "22407",
"timestamp": null,
"tripId": "213360186",
"routeId": "31",
"startTime": "12:35:00",
"position": {
"lat": 45.55758,
"lon": -73.66452
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 25,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "31",
"routeLongName": "Saint-Denis",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:15:05",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1767,
"ref": "22408",
"isActive": false,
"label": "22408",
"timestamp": null,
"tripId": "213479877",
"routeId": "58",
"startTime": "06:36:00",
"position": {
"lat": 45.46173,
"lon": -73.56707
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:35:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1561,
"ref": "22410",
"isActive": false,
"label": "22410",
"timestamp": 1594327389,
"tripId": "218397147",
"routeId": "460",
"startTime": "15:30:00",
"position": {
"lat": 45.47186,
"lon": -73.71037
},
"bearing": 223,
"speed": 66,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "460",
"routeLongName": "Express Métropolitaine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:05:03",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1164,
"ref": "22412",
"isActive": false,
"label": "22412",
"timestamp": null,
"tripId": "205046234",
"routeId": "27",
"startTime": "08:27:00",
"position": {
"lat": 45.52752,
"lon": -73.58681
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 22,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "27",
"routeLongName": "Boulevard Saint-Joseph",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 09:50:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2930,
"ref": "22413",
"isActive": false,
"label": "22413",
"timestamp": 1600262883,
"tripId": "221069045",
"routeId": "48",
"startTime": "08:30:00",
"position": {
"lat": 45.66183,
"lon": -73.53822
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 46,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-05 20:36:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1266,
"ref": "22417",
"isActive": false,
"label": "22417",
"timestamp": null,
"tripId": "213284277",
"routeId": "40",
"startTime": "18:52:00",
"position": {
"lat": 45.67393,
"lon": -73.50491
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 41,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "40",
"routeLongName": "Henri-Bourassa-Est",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:20:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1702,
"ref": "22418",
"isActive": false,
"label": "22418",
"timestamp": null,
"tripId": "213451504",
"routeId": "189",
"startTime": "18:11:00",
"position": {
"lat": 45.66062,
"lon": -73.49312
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 43,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "189",
"routeLongName": "Notre-Dame",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:25:04",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1445,
"ref": "22419",
"isActive": false,
"label": "22419",
"timestamp": null,
"tripId": "209230595",
"routeId": "90",
"startTime": "07:18:00",
"position": {
"lat": 45.48943,
"lon": -73.58425
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 54,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "90",
"routeLongName": "Saint-Jacques",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:50:01",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 18,
"ref": "22421",
"isActive": false,
"label": "22421",
"timestamp": null,
"tripId": "205049357",
"routeId": "44",
"startTime": "16:53:00",
"position": {
"lat": 45.63835,
"lon": -73.5967
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "44",
"routeLongName": "Armand-Bombardier",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2925,
"ref": "22423",
"isActive": false,
"label": "22423",
"timestamp": null,
"tripId": "213452535",
"routeId": "48",
"startTime": "15:50:00",
"position": {
"lat": 45.65802,
"lon": -73.54414
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-05 19:34:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1525,
"ref": "23201",
"isActive": false,
"label": "23201",
"timestamp": null,
"tripId": "213463699",
"routeId": "55",
"startTime": "20:24:00",
"position": {
"lat": 45.55537,
"lon": -73.66798
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 50,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "55",
"routeLongName": "Boulevard Saint-Laurent",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:00:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1379,
"ref": "23202",
"isActive": false,
"label": "23202",
"timestamp": 1594326934,
"tripId": "219804552",
"routeId": "218",
"startTime": "16:16:00",
"position": {
"lat": 45.466,
"lon": -73.83217
},
"bearing": 58,
"speed": 16,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 27,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "218",
"routeLongName": "Antoine-Faucon",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:40:02",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1733,
"ref": "23204",
"isActive": false,
"label": "23204",
"timestamp": 1594327396,
"tripId": "218397170",
"routeId": "460",
"startTime": "16:03:00",
"position": {
"lat": 45.51348,
"lon": -73.65896
},
"bearing": 24,
"speed": 35,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 32,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "460",
"routeLongName": "Express Métropolitaine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:30:03",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2748,
"ref": "23205",
"isActive": false,
"label": "23205",
"timestamp": null,
"tripId": "218396946",
"routeId": "460",
"startTime": "06:33:00",
"position": {
"lat": 45.45502,
"lon": -73.73462
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 50,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "460",
"routeLongName": "Express Métropolitaine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-28 12:18:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1362,
"ref": "23206",
"isActive": false,
"label": "23206",
"timestamp": null,
"tripId": "213272757",
"routeId": "146E",
"startTime": "12:10:00",
"position": {
"lat": 45.5528,
"lon": -73.65508
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 6,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:35:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1411,
"ref": "23210",
"isActive": false,
"label": "23210",
"timestamp": null,
"tripId": "205024702",
"routeId": "469",
"startTime": "17:59:00",
"position": {
"lat": 45.58177,
"lon": -73.65099
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "469",
"routeLongName": "Express Henri-Bourassa",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:45:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1987,
"ref": "23211",
"isActive": false,
"label": "23211",
"timestamp": 1594327388,
"tripId": "219805716",
"routeId": "202",
"startTime": "16:15:00",
"position": {
"lat": 45.44868,
"lon": -73.72882
},
"bearing": 271,
"speed": 83,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 33,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "202",
"routeLongName": "Dawson",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:05:07",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 19,
"ref": "23213",
"isActive": false,
"label": "23213",
"timestamp": null,
"tripId": "219805642",
"routeId": "215",
"startTime": "16:32:00",
"position": {
"lat": 45.50338,
"lon": -73.73367
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 33,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "215",
"routeLongName": "Henri-Bourassa",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1494,
"ref": "23214",
"isActive": false,
"label": "23214",
"timestamp": null,
"tripId": "204985107",
"routeId": "170",
"startTime": "16:42:00",
"position": {
"lat": 45.52207,
"lon": -73.73322
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "170",
"routeLongName": "Keller",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:55:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3352,
"ref": "23218",
"isActive": false,
"label": "23218",
"timestamp": 1594327398,
"tripId": "218417632",
"routeId": "189",
"startTime": "16:51:00",
"position": {
"lat": 45.59696,
"lon": -73.53573
},
"bearing": 127,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "189",
"routeLongName": "Notre-Dame",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-02-12 16:47:03",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2884,
"ref": "23222",
"isActive": false,
"label": "23222",
"timestamp": 1600809082,
"tripId": "222767565",
"routeId": "460",
"startTime": "15:47:00",
"position": {
"lat": 45.59967,
"lon": -73.56883
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 47,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "460",
"routeLongName": "Express Métropolitaine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-04 11:02:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 20,
"ref": "23225",
"isActive": false,
"label": "23225",
"timestamp": null,
"tripId": "213465386",
"routeId": "18E",
"startTime": "14:52:00",
"position": {
"lat": 45.59572,
"lon": -73.53539
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 32,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 21,
"ref": "23227",
"isActive": false,
"label": "23227",
"timestamp": null,
"tripId": "212834225",
"routeId": "49",
"startTime": "05:05:00",
"position": {
"lat": 45.55673,
"lon": -73.66742
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 52,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "49",
"routeLongName": "Maurice-Duplessis",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1562,
"ref": "23229",
"isActive": false,
"label": "23229",
"timestamp": null,
"tripId": "218378853",
"routeId": "171",
"startTime": "18:58:00",
"position": {
"lat": 45.55645,
"lon": -73.66738
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 38,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "171",
"routeLongName": "Henri-Bourassa",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:05:04",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 22,
"ref": "23235",
"isActive": false,
"label": "23235",
"timestamp": null,
"tripId": "204981671",
"routeId": "196",
"startTime": "18:43:00",
"position": {
"lat": 45.43987,
"lon": -73.68674
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 59,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "196",
"routeLongName": "Parc-Industriel-Lachine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1876,
"ref": "24201",
"isActive": false,
"label": "24201",
"timestamp": 1594327391,
"tripId": "218397155",
"routeId": "460",
"startTime": "15:43:00",
"position": {
"lat": 45.55844,
"lon": -73.61168
},
"bearing": 57,
"speed": 21,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 39,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "460",
"routeLongName": "Express Métropolitaine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:50:06",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1380,
"ref": "24202",
"isActive": false,
"label": "24202",
"timestamp": 1596759739,
"tripId": "218396904",
"routeId": "440",
"startTime": "19:15:00",
"position": {
"lat": 45.5458,
"lon": -73.64947
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 17,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "440",
"routeLongName": "Express Charleroi",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:40:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 23,
"ref": "24203",
"isActive": false,
"label": "24203",
"timestamp": 1597758673,
"tripId": "218397438",
"routeId": "41",
"startTime": "09:01:00",
"position": {
"lat": 45.55172,
"lon": -73.65542
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 54,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "41",
"routeLongName": "Quartier Saint-Michel / Ahuntsic",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1159,
"ref": "24204",
"isActive": false,
"label": "24204",
"timestamp": null,
"tripId": "217447881",
"routeId": "469",
"startTime": "10:03:00",
"position": {
"lat": 45.55873,
"lon": -73.66695
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 18,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "469",
"routeLongName": "Express Henri-Bourassa",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 09:45:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1811,
"ref": "24205",
"isActive": false,
"label": "24205",
"timestamp": null,
"tripId": "218397349",
"routeId": "469",
"startTime": "13:37:00",
"position": {
"lat": 45.55652,
"lon": -73.66727
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 18,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "469",
"routeLongName": "Express Henri-Bourassa",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:40:07",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2660,
"ref": "24206",
"isActive": false,
"label": "24206",
"timestamp": 1594327396,
"tripId": "218394491",
"routeId": "41",
"startTime": "16:41:00",
"position": {
"lat": 45.55207,
"lon": -73.65018
},
"bearing": 21,
"speed": 30,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "41",
"routeLongName": "Quartier Saint-Michel / Ahuntsic",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-26 12:06:04",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2536,
"ref": "24207",
"isActive": false,
"label": "24207",
"timestamp": 1594327394,
"tripId": "218396897",
"routeId": "460",
"startTime": "15:47:00",
"position": {
"lat": 45.54877,
"lon": -73.63386
},
"bearing": 113,
"speed": 33,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 36,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "460",
"routeLongName": "Express Métropolitaine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-25 10:40:02",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3269,
"ref": "24208",
"isActive": false,
"label": "24208",
"timestamp": null,
"tripId": "218394768",
"routeId": "54",
"startTime": "16:10:00",
"position": {
"lat": 45.57592,
"lon": -73.63622
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 43,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "54",
"routeLongName": "Charland / Chabanel",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-01-20 21:10:06",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2259,
"ref": "24209",
"isActive": false,
"label": "24209",
"timestamp": 1594326847,
"tripId": "218394395",
"routeId": "440",
"startTime": "16:01:00",
"position": {
"lat": 45.60653,
"lon": -73.61991
},
"bearing": 65,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 18,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "440",
"routeLongName": "Express Charleroi",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 19:55:02",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1913,
"ref": "24210",
"isActive": false,
"label": "24210",
"timestamp": 1599222048,
"tripId": "222751358",
"routeId": "48",
"startTime": "07:19:00",
"position": {
"lat": 45.55675,
"lon": -73.66743
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 47,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:55:09",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 24,
"ref": "24211",
"isActive": false,
"label": "24211",
"timestamp": 1603138415,
"tripId": "222752317",
"routeId": "460",
"startTime": "15:03:00",
"position": {
"lat": 45.57587,
"lon": -73.5939
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 44,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "460",
"routeLongName": "Express Métropolitaine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2599,
"ref": "24212",
"isActive": false,
"label": "24212",
"timestamp": null,
"tripId": "218274477",
"routeId": "44",
"startTime": "19:05:00",
"position": {
"lat": 45.6387,
"lon": -73.59734
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 32,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "44",
"routeLongName": "Armand-Bombardier",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-25 15:12:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3216,
"ref": "24213",
"isActive": false,
"label": "24213",
"timestamp": null,
"tripId": "903866",
"routeId": "33",
"startTime": "13:19:00",
"position": {
"lat": 45.61795,
"lon": -73.5819
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-01-08 12:26:04",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1412,
"ref": "24215",
"isActive": false,
"label": "24215",
"timestamp": null,
"tripId": "213286452",
"routeId": "141",
"startTime": "12:55:00",
"position": {
"lat": 45.59447,
"lon": -73.57304
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 25,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:45:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1381,
"ref": "24216",
"isActive": false,
"label": "24216",
"timestamp": 1597699406,
"tripId": "218397092",
"routeId": "469",
"startTime": "16:46:00",
"position": {
"lat": 45.60265,
"lon": -73.6321
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 14,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "469",
"routeLongName": "Express Henri-Bourassa",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:40:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1446,
"ref": "24217",
"isActive": false,
"label": "24217",
"timestamp": 1597713208,
"tripId": "218415634",
"routeId": "81",
"startTime": "20:45:00",
"position": {
"lat": 45.64925,
"lon": -73.5788
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 27,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "81",
"routeLongName": "Saint-Jean-Baptiste",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:50:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2929,
"ref": "24218",
"isActive": false,
"label": "24218",
"timestamp": 1594327390,
"tripId": "218378734",
"routeId": "171",
"startTime": "15:47:00",
"position": {
"lat": 45.55067,
"lon": -73.67061
},
"bearing": 29,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 46,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "171",
"routeLongName": "Henri-Bourassa",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-05 20:18:04",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1563,
"ref": "24219",
"isActive": false,
"label": "24219",
"timestamp": 1601344221,
"tripId": "222766038",
"routeId": "119",
"startTime": "21:15:00",
"position": {
"lat": 45.49532,
"lon": -73.62482
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 44,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "119",
"routeLongName": "Rockland",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:05:04",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2608,
"ref": "24220",
"isActive": false,
"label": "24220",
"timestamp": 1594327406,
"tripId": "218377158",
"routeId": "119",
"startTime": "16:16:00",
"position": {
"lat": 45.51997,
"lon": -73.62041
},
"bearing": 232,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 20,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "119",
"routeLongName": "Rockland",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-25 20:06:05",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 25,
"ref": "24221",
"isActive": false,
"label": "24221",
"timestamp": 1602198803,
"tripId": "222765682",
"routeId": "103",
"startTime": "18:48:00",
"position": {
"lat": 45.45782,
"lon": -73.66665
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 27,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "103",
"routeLongName": "Monkland",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2394,
"ref": "24222",
"isActive": false,
"label": "24222",
"timestamp": 1603136949,
"tripId": "222788111",
"routeId": "968",
"startTime": "15:18:00",
"position": {
"lat": 45.51082,
"lon": -73.81382
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 14,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "968",
"routeLongName": "Trainbus Roxboro / Côte-Vertu",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 21:00:05",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1526,
"ref": "24223",
"isActive": false,
"label": "24223",
"timestamp": null,
"tripId": "209229950",
"routeId": "55",
"startTime": "19:12:00",
"position": {
"lat": 45.55433,
"lon": -73.66863
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 50,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "55",
"routeLongName": "Boulevard Saint-Laurent",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:00:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3177,
"ref": "24225",
"isActive": false,
"label": "24225",
"timestamp": null,
"tripId": "218376560",
"routeId": "105",
"startTime": "08:28:00",
"position": {
"lat": 45.47307,
"lon": -73.6061
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "105",
"routeLongName": "Sherbrooke",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-28 10:22:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1847,
"ref": "24226",
"isActive": false,
"label": "24226",
"timestamp": null,
"tripId": "213362037",
"routeId": "160",
"startTime": "15:54:00",
"position": {
"lat": 45.49195,
"lon": -73.64805
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 34,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "160",
"routeLongName": "Barclay",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:45:08",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2891,
"ref": "24227",
"isActive": false,
"label": "24227",
"timestamp": 1601559741,
"tripId": "222767414",
"routeId": "213",
"startTime": "09:03:00",
"position": {
"lat": 45.5163,
"lon": -73.8295
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 41,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "213",
"routeLongName": "Parc-Industriel-Saint-Laurent",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-04 12:22:05",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 26,
"ref": "24228",
"isActive": false,
"label": "24228",
"timestamp": 1603138414,
"tripId": "222749140",
"routeId": "161",
"startTime": "15:48:00",
"position": {
"lat": 45.49642,
"lon": -73.63577
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 25,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "161",
"routeLongName": "Van Horne",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1495,
"ref": "24229",
"isActive": false,
"label": "24229",
"timestamp": null,
"tripId": "213458224",
"routeId": "178",
"startTime": "20:32:00",
"position": {
"lat": 45.46105,
"lon": -73.54784
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 21,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:55:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 27,
"ref": "24230",
"isActive": false,
"label": "24230",
"timestamp": null,
"tripId": "204982323",
"routeId": "420",
"startTime": "17:44:00",
"position": {
"lat": 45.46645,
"lon": -73.65313
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 18,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "420",
"routeLongName": "Express Notre-Dame-de-Grâce",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1768,
"ref": "24231",
"isActive": false,
"label": "24231",
"timestamp": 1618869266,
"tripId": "229662201",
"routeId": "469",
"startTime": "17:26:00",
"position": {
"lat": 45.5562,
"lon": -73.66716
},
"bearing": 128,
"speed": 20,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 18,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "469",
"routeLongName": "Express Henri-Bourassa",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:35:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 28,
"ref": "24232",
"isActive": false,
"label": "24232",
"timestamp": null,
"tripId": "213495599",
"routeId": "128",
"startTime": "07:08:00",
"position": {
"lat": 45.51952,
"lon": -73.6662
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 70,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "128",
"routeLongName": "Saint-Laurent",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 29,
"ref": "24233",
"isActive": false,
"label": "24233",
"timestamp": null,
"tripId": "218417639",
"routeId": "189",
"startTime": "17:04:00",
"position": {
"lat": 45.6985,
"lon": -73.4841
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 63,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "189",
"routeLongName": "Notre-Dame",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2906,
"ref": "24234",
"isActive": false,
"label": "24234",
"timestamp": 1594326851,
"tripId": "218397480",
"routeId": "469",
"startTime": "16:02:00",
"position": {
"lat": 45.60174,
"lon": -73.63482
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 17,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 3,
"label": "Congestion"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "469",
"routeLongName": "Express Henri-Bourassa",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-04 21:40:03",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1228,
"ref": "24235",
"isActive": false,
"label": "24235",
"timestamp": 1594327404,
"tripId": "218397179",
"routeId": "460",
"startTime": "16:08:00",
"position": {
"lat": 45.50783,
"lon": -73.67241
},
"bearing": 119,
"speed": 29,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 30,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "460",
"routeLongName": "Express Métropolitaine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:10:02",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1328,
"ref": "24236",
"isActive": false,
"label": "24236",
"timestamp": 1603132586,
"tripId": "222752324",
"routeId": "460",
"startTime": "15:11:00",
"position": {
"lat": 45.54598,
"lon": -73.65017
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 38,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "460",
"routeLongName": "Express Métropolitaine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:30:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 30,
"ref": "24238",
"isActive": false,
"label": "24238",
"timestamp": null,
"tripId": "218413727",
"routeId": "33",
"startTime": "14:46:00",
"position": {
"lat": 45.62775,
"lon": -73.61543
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 61,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1292,
"ref": "24239",
"isActive": false,
"label": "24239",
"timestamp": 1599011002,
"tripId": "221070010",
"routeId": "33",
"startTime": "21:00:00",
"position": {
"lat": 45.62755,
"lon": -73.61525
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 65,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:25:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1769,
"ref": "24240",
"isActive": false,
"label": "24240",
"timestamp": null,
"tripId": "218417063",
"routeId": "187",
"startTime": "12:18:00",
"position": {
"lat": 45.60098,
"lon": -73.53242
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 42,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "187",
"routeLongName": "René-Lévesque",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:35:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 31,
"ref": "24241",
"isActive": false,
"label": "24241",
"timestamp": 1601466203,
"tripId": "222764841",
"routeId": "188",
"startTime": "07:24:00",
"position": {
"lat": 45.52072,
"lon": -73.66161
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "188",
"routeLongName": "Couture",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3245,
"ref": "24242",
"isActive": false,
"label": "24242",
"timestamp": 1597765938,
"tripId": "222465948",
"routeId": "178",
"startTime": "20:50:00",
"position": {
"lat": 45.53192,
"lon": -73.60095
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 22,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-01-14 21:16:07",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2124,
"ref": "24243",
"isActive": false,
"label": "24243",
"timestamp": 1594327406,
"tripId": "218377581",
"routeId": "162",
"startTime": "16:40:00",
"position": {
"lat": 45.46716,
"lon": -73.66766
},
"bearing": 208,
"speed": 35,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 7,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "162",
"routeLongName": "Westminster",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:40:08",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1413,
"ref": "24245",
"isActive": false,
"label": "24245",
"timestamp": 1597754530,
"tripId": "223318619",
"routeId": "162",
"startTime": "08:12:00",
"position": {
"lat": 45.47702,
"lon": -73.62154
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "162",
"routeLongName": "Westminster",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:45:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3068,
"ref": "24246",
"isActive": false,
"label": "24246",
"timestamp": 1594327399,
"tripId": "218421325",
"routeId": "129",
"startTime": "15:49:00",
"position": {
"lat": 45.50874,
"lon": -73.55588
},
"bearing": 27,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 42,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 0,
"label": "Empty"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "129",
"routeLongName": "Côte-Sainte-Catherine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-14 16:32:02",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3233,
"ref": "24247",
"isActive": false,
"label": "24247",
"timestamp": null,
"tripId": "223320830",
"routeId": "919",
"startTime": "09:30:00",
"position": {
"lat": 45.50742,
"lon": -73.64268
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 12,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-01-12 21:18:05",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1414,
"ref": "24248",
"isActive": false,
"label": "24248",
"timestamp": 1594327393,
"tripId": "218416043",
"routeId": "33",
"startTime": "15:38:00",
"position": {
"lat": 45.62868,
"lon": -73.61641
},
"bearing": 151,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 60,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:45:03",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2036,
"ref": "24249",
"isActive": false,
"label": "24249",
"timestamp": 1598530705,
"tripId": "222767160",
"routeId": "171",
"startTime": "07:32:00",
"position": {
"lat": 45.52172,
"lon": -73.66698
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 5,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 3,
"label": "Canceled"
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "171",
"routeLongName": "Henri-Bourassa",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:15:07",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 32,
"ref": "24250",
"isActive": false,
"label": "24250",
"timestamp": 1594327093,
"tripId": "218416392",
"routeId": "86",
"startTime": "15:26:00",
"position": {
"lat": 45.65788,
"lon": -73.56944
},
"bearing": 231,
"speed": 14,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 98,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "86",
"routeLongName": "Pointe-aux-Trembles",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2037,
"ref": "24252",
"isActive": false,
"label": "24252",
"timestamp": null,
"tripId": "218428086",
"routeId": "58",
"startTime": "07:53:00",
"position": {
"lat": 45.47003,
"lon": -73.56585
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:15:07",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1177,
"ref": "24253",
"isActive": false,
"label": "24253",
"timestamp": 1603138412,
"tripId": "226465146",
"routeId": "125",
"startTime": "15:46:00",
"position": {
"lat": 45.5284,
"lon": -73.55705
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 25,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "125",
"routeLongName": "Ontario",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 09:55:04",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 33,
"ref": "24254",
"isActive": false,
"label": "24254",
"timestamp": 1594327405,
"tripId": "218427600",
"routeId": "35",
"startTime": "16:14:00",
"position": {
"lat": 45.48136,
"lon": -73.57777
},
"bearing": 229,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "35",
"routeLongName": "Griffintown",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 34,
"ref": "24255",
"isActive": false,
"label": "24255",
"timestamp": 1611315940,
"tripId": "229041067",
"routeId": "460",
"startTime": "06:30:00",
"position": {
"lat": 45.44973,
"lon": -73.74468
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 8,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "460",
"routeLongName": "Express Métropolitaine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 35,
"ref": "24256",
"isActive": false,
"label": "24256",
"timestamp": 1594327404,
"tripId": "218429055",
"routeId": "90",
"startTime": "16:51:00",
"position": {
"lat": 45.48906,
"lon": -73.58334
},
"bearing": 135,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "90",
"routeLongName": "Saint-Jacques",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1629,
"ref": "24257",
"isActive": false,
"label": "24257",
"timestamp": 1608301635,
"tripId": "222817501",
"routeId": "460",
"startTime": "07:27:00",
"position": {
"lat": 45.54558,
"lon": -73.65031
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 41,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "460",
"routeLongName": "Express Métropolitaine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:15:05",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 36,
"ref": "24258",
"isActive": false,
"label": "24258",
"timestamp": 1594327406,
"tripId": "218426986",
"routeId": "411",
"startTime": "16:16:00",
"position": {
"lat": 45.44309,
"lon": -73.8146
},
"bearing": 253,
"speed": 4,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 5,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "411",
"routeLongName": "Express Lionel-Groulx",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 37,
"ref": "24259",
"isActive": false,
"label": "24259",
"timestamp": null,
"tripId": "218395594",
"routeId": "469",
"startTime": "17:24:00",
"position": {
"lat": 45.6234,
"lon": -73.62135
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 16,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "469",
"routeLongName": "Express Henri-Bourassa",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 38,
"ref": "24260",
"isActive": false,
"label": "24260",
"timestamp": 1594327129,
"tripId": "218394752",
"routeId": "54",
"startTime": "15:49:00",
"position": {
"lat": 45.57496,
"lon": -73.63611
},
"bearing": 212,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 42,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "54",
"routeLongName": "Charland / Chabanel",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1959,
"ref": "24261",
"isActive": false,
"label": "24261",
"timestamp": null,
"tripId": "218394662",
"routeId": "54",
"startTime": "09:09:00",
"position": {
"lat": 45.5286,
"lon": -73.66817
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 23,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "54",
"routeLongName": "Charland / Chabanel",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:00:10",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1447,
"ref": "24262",
"isActive": false,
"label": "24262",
"timestamp": 1598305118,
"tripId": "222752420",
"routeId": "469",
"startTime": "17:09:00",
"position": {
"lat": 45.62358,
"lon": -73.62173
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 17,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "469",
"routeLongName": "Express Henri-Bourassa",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:50:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2749,
"ref": "24263",
"isActive": false,
"label": "24263",
"timestamp": 1603101250,
"tripId": "222752232",
"routeId": "460",
"startTime": "08:03:00",
"position": {
"lat": 45.54547,
"lon": -73.64927
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 28,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "460",
"routeLongName": "Express Métropolitaine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-28 12:24:04",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 39,
"ref": "24264",
"isActive": false,
"label": "24264",
"timestamp": 1594327404,
"tripId": "218394728",
"routeId": "54",
"startTime": "16:38:00",
"position": {
"lat": 45.5667,
"lon": -73.64307
},
"bearing": 211,
"speed": 12,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 8,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "54",
"routeLongName": "Charland / Chabanel",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1770,
"ref": "24265",
"isActive": false,
"label": "24265",
"timestamp": 1597066536,
"tripId": "218396932",
"routeId": "460",
"startTime": "07:44:00",
"position": {
"lat": 45.54623,
"lon": -73.64978
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 50,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "460",
"routeLongName": "Express Métropolitaine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:35:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 40,
"ref": "24266",
"isActive": false,
"label": "24266",
"timestamp": 1594327398,
"tripId": "218396895",
"routeId": "440",
"startTime": "16:35:00",
"position": {
"lat": 45.56294,
"lon": -73.64289
},
"bearing": 30,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 3,
"label": "Congestion"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "440",
"routeLongName": "Express Charleroi",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1448,
"ref": "24267",
"isActive": false,
"label": "24267",
"timestamp": 1599652349,
"tripId": "222752205",
"routeId": "406",
"startTime": "07:51:00",
"position": {
"lat": 45.42945,
"lon": -73.6427
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 3,
"label": "Canceled"
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:50:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 41,
"ref": "24268",
"isActive": false,
"label": "24268",
"timestamp": 1594327406,
"tripId": "218397120",
"routeId": "460",
"startTime": "16:19:00",
"position": {
"lat": 45.50046,
"lon": -73.68219
},
"bearing": 48,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 26,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "460",
"routeLongName": "Express Métropolitaine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1960,
"ref": "24269",
"isActive": false,
"label": "24269",
"timestamp": 1594327404,
"tripId": "218397173",
"routeId": "460",
"startTime": "16:00:00",
"position": {
"lat": 45.5243,
"lon": -73.65289
},
"bearing": 193,
"speed": 37,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 18,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "460",
"routeLongName": "Express Métropolitaine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:00:10",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3180,
"ref": "24270",
"isActive": false,
"label": "24270",
"timestamp": 1594326878,
"tripId": "218397127",
"routeId": "460",
"startTime": "15:09:00",
"position": {
"lat": 45.59941,
"lon": -73.56887
},
"bearing": 172,
"speed": 21,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 47,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "460",
"routeLongName": "Express Métropolitaine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-29 18:36:02",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2596,
"ref": "24271",
"isActive": false,
"label": "24271",
"timestamp": 1594327404,
"tripId": "218397409",
"routeId": "469",
"startTime": "16:37:00",
"position": {
"lat": 45.57878,
"lon": -73.6528
},
"bearing": 29,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "469",
"routeLongName": "Express Henri-Bourassa",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-25 12:58:04",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2322,
"ref": "24272",
"isActive": false,
"label": "24272",
"timestamp": 1594327389,
"tripId": "218397187",
"routeId": "460",
"startTime": "16:13:00",
"position": {
"lat": 45.50825,
"lon": -73.67307
},
"bearing": 300,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 29,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "460",
"routeLongName": "Express Métropolitaine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 20:05:05",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1329,
"ref": "24273",
"isActive": false,
"label": "24273",
"timestamp": 1602714532,
"tripId": "222752331",
"routeId": "460",
"startTime": "16:44:00",
"position": {
"lat": 45.54642,
"lon": -73.65224
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 47,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "460",
"routeLongName": "Express Métropolitaine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:30:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2896,
"ref": "24274",
"isActive": false,
"label": "24274",
"timestamp": 1594327107,
"tripId": "218397130",
"routeId": "460",
"startTime": "15:20:00",
"position": {
"lat": 45.59896,
"lon": -73.5686
},
"bearing": 116,
"speed": 35,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 47,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "460",
"routeLongName": "Express Métropolitaine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-04 20:20:07",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 42,
"ref": "24276",
"isActive": false,
"label": "24276",
"timestamp": 1594327398,
"tripId": "218397417",
"routeId": "469",
"startTime": "16:29:00",
"position": {
"lat": 45.60263,
"lon": -73.63217
},
"bearing": 245,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 16,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "469",
"routeLongName": "Express Henri-Bourassa",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 43,
"ref": "24277",
"isActive": false,
"label": "24277",
"timestamp": 1608318088,
"tripId": "221368654",
"routeId": "187",
"startTime": "13:30:00",
"position": {
"lat": 45.59933,
"lon": -73.53342
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 43,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "187",
"routeLongName": "René-Lévesque",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3153,
"ref": "24278",
"isActive": false,
"label": "24278",
"timestamp": 1594327404,
"tripId": "218417601",
"routeId": "432",
"startTime": "16:14:00",
"position": {
"lat": 45.61359,
"lon": -73.62719
},
"bearing": 323,
"speed": 44,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 17,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 0,
"label": "Empty"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "432",
"routeLongName": "Express Lacordaire",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-23 11:28:03",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3008,
"ref": "24279",
"isActive": false,
"label": "24279",
"timestamp": null,
"tripId": "217680668",
"routeId": "49",
"startTime": "16:10:00",
"position": {
"lat": 45.66463,
"lon": -73.5458
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 61,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "49",
"routeLongName": "Maurice-Duplessis",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-11 10:54:04",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1630,
"ref": "24280",
"isActive": false,
"label": "24280",
"timestamp": null,
"tripId": "213360937",
"routeId": "18E",
"startTime": "14:59:00",
"position": {
"lat": 45.53107,
"lon": -73.61031
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 21,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:15:05",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2038,
"ref": "24281",
"isActive": false,
"label": "24281",
"timestamp": 1598657374,
"tripId": "221221155",
"routeId": "411",
"startTime": "18:40:00",
"position": {
"lat": 45.40487,
"lon": -73.93667
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 20,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "411",
"routeLongName": "Express Lionel-Groulx",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:15:09",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2178,
"ref": "24282",
"isActive": false,
"label": "24282",
"timestamp": 1594327399,
"tripId": "218429905",
"routeId": "109",
"startTime": "16:15:00",
"position": {
"lat": 45.42999,
"lon": -73.60979
},
"bearing": 134,
"speed": 24,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 30,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 13:05:05",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1415,
"ref": "24283",
"isActive": false,
"label": "24283",
"timestamp": 1594327025,
"tripId": "218429373",
"routeId": "406",
"startTime": "16:08:00",
"position": {
"lat": 45.42515,
"lon": -73.64867
},
"bearing": 64,
"speed": 28,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 29,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:45:03",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1602,
"ref": "24285",
"isActive": false,
"label": "24285",
"timestamp": null,
"tripId": "204981911",
"routeId": "113E",
"startTime": "08:34:00",
"position": {
"lat": 45.43705,
"lon": -73.60005
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 5,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:10:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2676,
"ref": "24286",
"isActive": false,
"label": "24286",
"timestamp": null,
"tripId": "204980122",
"routeId": "406",
"startTime": "18:30:00",
"position": {
"lat": 45.42183,
"lon": -73.648
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 25,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-26 19:44:06",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2849,
"ref": "24287",
"isActive": false,
"label": "24287",
"timestamp": null,
"tripId": "218427274",
"routeId": "425",
"startTime": "17:23:00",
"position": {
"lat": 45.43638,
"lon": -73.89845
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "425",
"routeLongName": "Express Anse-à-l'Orme",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-03 10:16:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2014,
"ref": "24288",
"isActive": false,
"label": "24288",
"timestamp": 1594327393,
"tripId": "218427280",
"routeId": "496",
"startTime": "16:11:00",
"position": {
"lat": 45.45393,
"lon": -73.62328
},
"bearing": 54,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 21,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "496",
"routeLongName": "Express Victoria",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:10:12",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2086,
"ref": "24289",
"isActive": false,
"label": "24289",
"timestamp": null,
"tripId": "218305269",
"routeId": "107",
"startTime": "05:00:00",
"position": {
"lat": 45.44133,
"lon": -73.63412
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 9,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "107",
"routeLongName": "Verdun",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:25:11",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1208,
"ref": "24291",
"isActive": false,
"label": "24291",
"timestamp": 1594327263,
"tripId": "218426975",
"routeId": "411",
"startTime": "16:56:00",
"position": {
"lat": 45.40359,
"lon": -73.94041
},
"bearing": 249,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "411",
"routeLongName": "Express Lionel-Groulx",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:05:03",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2396,
"ref": "24292",
"isActive": false,
"label": "24292",
"timestamp": 1594327398,
"tripId": "218430553",
"routeId": "138",
"startTime": "16:28:00",
"position": {
"lat": 45.46842,
"lon": -73.63961
},
"bearing": 119,
"speed": 41,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 16,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "138",
"routeLongName": "Notre-Dame-de-Grâce",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 21:00:07",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 44,
"ref": "24293",
"isActive": false,
"label": "24293",
"timestamp": 1594327108,
"tripId": "218427153",
"routeId": "491",
"startTime": "16:02:00",
"position": {
"lat": 45.43748,
"lon": -73.68873
},
"bearing": 359,
"speed": 3,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 14,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "491",
"routeLongName": "Express Provost",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2771,
"ref": "24294",
"isActive": false,
"label": "24294",
"timestamp": 1609935858,
"tripId": "229041398",
"routeId": "180",
"startTime": "07:31:00",
"position": {
"lat": 45.54965,
"lon": -73.6563
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "180",
"routeLongName": "De Salaberry",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-29 10:28:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2125,
"ref": "24295",
"isActive": false,
"label": "24295",
"timestamp": null,
"tripId": "223319927",
"routeId": "213",
"startTime": "18:09:00",
"position": {
"lat": 45.51342,
"lon": -73.68372
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 42,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "213",
"routeLongName": "Parc-Industriel-Saint-Laurent",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:40:11",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1449,
"ref": "24296",
"isActive": false,
"label": "24296",
"timestamp": null,
"tripId": "213464628",
"routeId": "46",
"startTime": "09:10:00",
"position": {
"lat": 45.52625,
"lon": -73.58794
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 8,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "46",
"routeLongName": "Casgrain",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:50:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 45,
"ref": "24297",
"isActive": false,
"label": "24297",
"timestamp": 1602626324,
"tripId": "222764913",
"routeId": "64",
"startTime": "17:47:00",
"position": {
"lat": 45.52953,
"lon": -73.71597
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 17,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "64",
"routeLongName": "Grenet",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1664,
"ref": "24298",
"isActive": false,
"label": "24298",
"timestamp": 1600201190,
"tripId": "222788118",
"routeId": "968",
"startTime": "15:49:00",
"position": {
"lat": 45.51085,
"lon": -73.81133
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 14,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "968",
"routeLongName": "Trainbus Roxboro / Côte-Vertu",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:20:05",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 9328,
"ref": "24299",
"isActive": false,
"label": "24299",
"timestamp": null,
"tripId": "941219",
"routeId": "427",
"startTime": "06:17:00",
"position": {
"lat": null,
"lon": null
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 1,
"label": "Added"
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "427",
"routeLongName": "Express Saint-Joseph",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-12-29 06:20:04",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1527,
"ref": "24301",
"isActive": false,
"label": "24301",
"timestamp": 1620161328,
"tripId": "229093086",
"routeId": "193",
"startTime": "15:55:00",
"position": {
"lat": 45.60662,
"lon": -73.57185
},
"bearing": 49,
"speed": 14,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 48,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "193",
"routeLongName": "Jarry",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:00:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2920,
"ref": "24302",
"isActive": false,
"label": "24302",
"timestamp": 1603112901,
"tripId": "222764732",
"routeId": "68",
"startTime": "08:03:00",
"position": {
"lat": 45.4376,
"lon": -73.90125
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 79,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "68",
"routeLongName": "Pierrefonds",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-05 12:28:07",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3192,
"ref": "24303",
"isActive": false,
"label": "24303",
"timestamp": 1594327399,
"tripId": "218379615",
"routeId": "919",
"startTime": "16:30:00",
"position": {
"lat": 45.50582,
"lon": -73.64254
},
"bearing": 177,
"speed": 19,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 13,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-01-02 15:58:03",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 46,
"ref": "24304",
"isActive": false,
"label": "24304",
"timestamp": 1611876436,
"tripId": "229042432",
"routeId": "136",
"startTime": "17:54:00",
"position": {
"lat": 45.59963,
"lon": -73.61138
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 34,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "136",
"routeLongName": "Viau",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1416,
"ref": "24306",
"isActive": false,
"label": "24306",
"timestamp": null,
"tripId": "222752188",
"routeId": "460",
"startTime": "07:44:00",
"position": {
"lat": null,
"lon": null
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 50,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "460",
"routeLongName": "Express Métropolitaine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:45:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1632,
"ref": "24307",
"isActive": false,
"label": "24307",
"timestamp": null,
"tripId": "223319960",
"routeId": "171",
"startTime": "17:10:00",
"position": {
"lat": 45.55213,
"lon": -73.66972
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 37,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "171",
"routeLongName": "Henri-Bourassa",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:15:05",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 47,
"ref": "25201",
"isActive": false,
"label": "25201",
"timestamp": 1614865888,
"tripId": "225757623",
"routeId": "97",
"startTime": "08:00:00",
"position": {
"lat": 45.51637,
"lon": -73.58875
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 37,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "97",
"routeLongName": "Avenue-du-Mont-Royal",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1990,
"ref": "25202",
"isActive": false,
"label": "25202",
"timestamp": 1632517638,
"tripId": "238426887",
"routeId": "410",
"startTime": "15:48:00",
"position": {
"lat": 45.70119,
"lon": -73.48113
},
"bearing": 75,
"speed": 19,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 37,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "410",
"routeLongName": "Express Notre-Dame",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:05:11",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2901,
"ref": "25203",
"isActive": false,
"label": "25203",
"timestamp": 1628688056,
"tripId": "232405927",
"routeId": "25",
"startTime": "08:54:00",
"position": {
"lat": 45.53207,
"lon": -73.59753
},
"bearing": 29,
"speed": 31,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 22,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "25",
"routeLongName": "Angus",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-04 20:42:07",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3111,
"ref": "25204",
"isActive": false,
"label": "25204",
"timestamp": 1617751543,
"tripId": "229031367",
"routeId": "430",
"startTime": "18:28:00",
"position": {
"lat": 45.68914,
"lon": -73.49046
},
"bearing": 103,
"speed": 41,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 33,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "430",
"routeLongName": "Express Pointe-aux-Trembles",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-18 20:40:06",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 739,
"ref": "25205",
"isActive": false,
"label": "25205",
"timestamp": 1633522473,
"tripId": "238426948",
"routeId": "427",
"startTime": "07:25:00",
"position": {
"lat": 45.49504,
"lon": -73.57996
},
"bearing": 206,
"speed": 26,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 29,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "427",
"routeLongName": "Express Saint-Joseph",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 01:13:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2752,
"ref": "25206",
"isActive": false,
"label": "25206",
"timestamp": 1632139993,
"tripId": "238426954",
"routeId": "427",
"startTime": "07:34:00",
"position": {
"lat": 45.49377,
"lon": -73.56907
},
"bearing": 124,
"speed": 32,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 27,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "427",
"routeLongName": "Express Saint-Joseph",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-28 14:38:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3266,
"ref": "25207",
"isActive": false,
"label": "25207",
"timestamp": 1620736301,
"tripId": "229031661",
"routeId": "410",
"startTime": "07:26:00",
"position": {
"lat": 45.49777,
"lon": -73.56652
},
"bearing": 124,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 38,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "410",
"routeLongName": "Express Notre-Dame",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-01-20 12:28:11",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1073,
"ref": "25208",
"isActive": false,
"label": "25208",
"timestamp": 1645021788,
"tripId": "241510984",
"routeId": "427",
"startTime": "08:42:00",
"position": {
"lat": 45.49544,
"lon": -73.5795
},
"bearing": 221,
"speed": 23,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 29,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "427",
"routeLongName": "Express Saint-Joseph",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 02:55:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2841,
"ref": "25209",
"isActive": false,
"label": "25209",
"timestamp": 1620045209,
"tripId": "229030420",
"routeId": "51E",
"startTime": "08:25:00",
"position": {
"lat": 45.52022,
"lon": -73.59715
},
"bearing": 307,
"speed": 20,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 6,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-02 20:00:05",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1877,
"ref": "25210",
"isActive": false,
"label": "25210",
"timestamp": 1594327083,
"tripId": "218427272",
"routeId": "496",
"startTime": "15:56:00",
"position": {
"lat": 45.44773,
"lon": -73.7439
},
"bearing": 14,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "496",
"routeLongName": "Express Victoria",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:50:09",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1120,
"ref": "25211",
"isActive": false,
"label": "25211",
"timestamp": 1615333225,
"tripId": "229202241",
"routeId": "55",
"startTime": "17:44:00",
"position": {
"lat": 45.55416,
"lon": -73.66869
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 49,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "55",
"routeLongName": "Boulevard Saint-Laurent",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 03:20:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3107,
"ref": "25212",
"isActive": false,
"label": "25212",
"timestamp": 1613871611,
"tripId": "223494094",
"routeId": "55",
"startTime": "18:30:00",
"position": {
"lat": 45.53143,
"lon": -73.60133
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 50,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "55",
"routeLongName": "Boulevard Saint-Laurent",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-18 12:26:09",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 741,
"ref": "25213",
"isActive": false,
"label": "25213",
"timestamp": 1628075094,
"tripId": "231569151",
"routeId": "99",
"startTime": "06:30:00",
"position": {
"lat": 45.57036,
"lon": -73.59564
},
"bearing": 33,
"speed": 15,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 27,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "99",
"routeLongName": "Villeray",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 01:13:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 48,
"ref": "25214",
"isActive": false,
"label": "25214",
"timestamp": 1621033658,
"tripId": "230205371",
"routeId": "31",
"startTime": "18:39:00",
"position": {
"lat": 45.53123,
"lon": -73.60183
},
"bearing": 108,
"speed": 2,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 29,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "31",
"routeLongName": "Saint-Denis",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 6816,
"ref": "25215",
"isActive": false,
"label": "25215",
"timestamp": 1622033320,
"tripId": "230204100",
"routeId": "18",
"startTime": "08:30:00",
"position": {
"lat": 45.58073,
"lon": -73.56503
},
"bearing": 203,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 15,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "18",
"routeLongName": "Beaubien",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-03-09 16:11:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2921,
"ref": "25216",
"isActive": false,
"label": "25216",
"timestamp": 1622414429,
"tripId": "226862900",
"routeId": "179",
"startTime": "18:12:00",
"position": {
"lat": 45.54152,
"lon": -73.69813
},
"bearing": 101,
"speed": 28,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "179",
"routeLongName": "De l'Acadie",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-05 12:28:08",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3012,
"ref": "25217",
"isActive": false,
"label": "25217",
"timestamp": 1632146125,
"tripId": "239574237",
"routeId": "49",
"startTime": "08:57:00",
"position": {
"lat": 45.55651,
"lon": -73.66724
},
"bearing": 176,
"speed": 13,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 52,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "49",
"routeLongName": "Maurice-Duplessis",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-11 12:26:09",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 49,
"ref": "25218",
"isActive": false,
"label": "25218",
"timestamp": 1594327393,
"tripId": "219805950",
"routeId": "196",
"startTime": "16:18:00",
"position": {
"lat": 45.46423,
"lon": -73.70657
},
"bearing": 133,
"speed": 41,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 36,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "196",
"routeLongName": "Parc-Industriel-Lachine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2963,
"ref": "25219",
"isActive": false,
"label": "25219",
"timestamp": 1623072398,
"tripId": "231063497",
"routeId": "18",
"startTime": "08:38:00",
"position": {
"lat": 45.53063,
"lon": -73.60944
},
"bearing": 302,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 50,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "18",
"routeLongName": "Beaubien",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-07 18:02:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2513,
"ref": "25220",
"isActive": false,
"label": "25220",
"timestamp": 1594327389,
"tripId": "218421542",
"routeId": "129",
"startTime": "16:16:00",
"position": {
"lat": 45.51582,
"lon": -73.60201
},
"bearing": 264,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 18,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "129",
"routeLongName": "Côte-Sainte-Catherine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-24 17:40:02",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2136,
"ref": "25221",
"isActive": false,
"label": "25221",
"timestamp": 1594327406,
"tripId": "218421276",
"routeId": "55",
"startTime": "16:30:00",
"position": {
"lat": 45.51382,
"lon": -73.5724
},
"bearing": 299,
"speed": 13,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 9,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "55",
"routeLongName": "Boulevard Saint-Laurent",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:45:11",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 6820,
"ref": "25222",
"isActive": false,
"label": "25222",
"timestamp": 1594327398,
"tripId": "218422165",
"routeId": "179",
"startTime": "16:14:00",
"position": {
"lat": 45.53532,
"lon": -73.66341
},
"bearing": 292,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 22,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "179",
"routeLongName": "De l'Acadie",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-03-09 21:08:03",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1528,
"ref": "25223",
"isActive": false,
"label": "25223",
"timestamp": 1625524553,
"tripId": "231569739",
"routeId": "18",
"startTime": "17:46:00",
"position": {
"lat": 45.59555,
"lon": -73.53551
},
"bearing": 23,
"speed": 38,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 53,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "18",
"routeLongName": "Beaubien",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:00:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1703,
"ref": "25224",
"isActive": false,
"label": "25224",
"timestamp": 1615126547,
"tripId": "225756088",
"routeId": "55",
"startTime": "08:30:00",
"position": {
"lat": 45.50525,
"lon": -73.5564
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 47,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "55",
"routeLongName": "Boulevard Saint-Laurent",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:25:04",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 50,
"ref": "25225",
"isActive": false,
"label": "25225",
"timestamp": 1633375996,
"tripId": "243243568",
"routeId": "100E",
"startTime": "14:55:00",
"position": {
"lat": 45.54179,
"lon": -73.6412
},
"bearing": 25,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 23,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2791,
"ref": "25226",
"isActive": false,
"label": "25226",
"timestamp": 1643287656,
"tripId": "241512476",
"routeId": "430",
"startTime": "06:43:00",
"position": {
"lat": 45.49652,
"lon": -73.5725
},
"bearing": 211,
"speed": 7,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "430",
"routeLongName": "Express Pointe-aux-Trembles",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-29 20:30:07",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1665,
"ref": "25227",
"isActive": false,
"label": "25227",
"timestamp": 1625869542,
"tripId": "231570301",
"routeId": "161",
"startTime": "18:07:00",
"position": {
"lat": 45.46208,
"lon": -73.67155
},
"bearing": 31,
"speed": 19,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 28,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "161",
"routeLongName": "Van Horne",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:20:05",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2040,
"ref": "25228",
"isActive": false,
"label": "25228",
"timestamp": 1621252887,
"tripId": "230205578",
"routeId": "144",
"startTime": "07:40:00",
"position": {
"lat": 45.48949,
"lon": -73.58492
},
"bearing": 131,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 21,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "144",
"routeLongName": "Avenue des Pins",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:15:10",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 51,
"ref": "25229",
"isActive": false,
"label": "25229",
"timestamp": 1622722709,
"tripId": "237847826",
"routeId": "179",
"startTime": "07:45:00",
"position": {
"lat": 45.54091,
"lon": -73.69639
},
"bearing": 116,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "179",
"routeLongName": "De l'Acadie",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 52,
"ref": "25230",
"isActive": false,
"label": "25230",
"timestamp": 1594327043,
"tripId": "218421320",
"routeId": "55",
"startTime": "16:49:00",
"position": {
"lat": 45.50643,
"lon": -73.55622
},
"bearing": 294,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "55",
"routeLongName": "Boulevard Saint-Laurent",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1991,
"ref": "25231",
"isActive": false,
"label": "25231",
"timestamp": 1610720243,
"tripId": "230205854",
"routeId": "92",
"startTime": "00:38:00",
"position": {
"lat": 45.53145,
"lon": -73.60175
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 28,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "92",
"routeLongName": "Jean-Talon Ouest",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:05:12",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 6858,
"ref": "25232",
"isActive": false,
"label": "25232",
"timestamp": 1626904178,
"tripId": "232342063",
"routeId": "186",
"startTime": "17:20:00",
"position": {
"lat": 45.69399,
"lon": -73.49612
},
"bearing": 27,
"speed": 24,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 44,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "186",
"routeLongName": "Sherbrooke-Est",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-03-10 15:33:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 53,
"ref": "25233",
"isActive": false,
"label": "25233",
"timestamp": 1628757552,
"tripId": "232343488",
"routeId": "362",
"startTime": "03:07:00",
"position": {
"lat": 45.5312,
"lon": -73.54825
},
"bearing": 304,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 111,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "362",
"routeLongName": "Hochelaga / Notre-Dame",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3366,
"ref": "25234",
"isActive": false,
"label": "25234",
"timestamp": 1632806579,
"tripId": "239577002",
"routeId": "141",
"startTime": "00:55:00",
"position": {
"lat": 45.56017,
"lon": -73.59714
},
"bearing": 212,
"speed": 52,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 48,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-02-19 15:38:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 54,
"ref": "25235",
"isActive": false,
"label": "25235",
"timestamp": 1625915376,
"tripId": "231720266",
"routeId": "187",
"startTime": "07:03:00",
"position": {
"lat": 45.66553,
"lon": -73.51035
},
"bearing": 96,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "187",
"routeLongName": "René-Lévesque",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 55,
"ref": "25236",
"isActive": false,
"label": "25236",
"timestamp": 1649114112,
"tripId": "250154052",
"routeId": "51",
"startTime": "18:24:00",
"position": {
"lat": 45.4553,
"lon": -73.64121
},
"bearing": 208,
"speed": 21,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 53,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2171,
"ref": "25237",
"isActive": false,
"label": "25237",
"timestamp": 1627646933,
"tripId": "232405461",
"routeId": "27",
"startTime": "07:53:00",
"position": {
"lat": 45.52802,
"lon": -73.58636
},
"bearing": 214,
"speed": 17,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 22,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "27",
"routeLongName": "Boulevard Saint-Joseph",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 13:00:12",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3204,
"ref": "25238",
"isActive": false,
"label": "25238",
"timestamp": 1628513567,
"tripId": "231570472",
"routeId": "144",
"startTime": "08:33:00",
"position": {
"lat": 45.49012,
"lon": -73.58586
},
"bearing": 128,
"speed": 14,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 21,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "144",
"routeLongName": "Avenue des Pins",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-01-06 12:30:19",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 56,
"ref": "25239",
"isActive": false,
"label": "25239",
"timestamp": 1626871257,
"tripId": "232405983",
"routeId": "47",
"startTime": "08:18:00",
"position": {
"lat": 45.52624,
"lon": -73.5878
},
"bearing": 49,
"speed": 24,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 23,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "47",
"routeLongName": "Masson",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3395,
"ref": "25240",
"isActive": false,
"label": "25240",
"timestamp": 1631019405,
"tripId": "238425403",
"routeId": "18",
"startTime": "08:06:00",
"position": {
"lat": 45.53092,
"lon": -73.61006
},
"bearing": 303,
"speed": 31,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 50,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "18",
"routeLongName": "Beaubien",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-03-03 01:23:04",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2670,
"ref": "25241",
"isActive": false,
"label": "25241",
"timestamp": 1622038131,
"tripId": "229030536",
"routeId": "47",
"startTime": "09:48:00",
"position": {
"lat": 45.52925,
"lon": -73.58521
},
"bearing": 214,
"speed": 35,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 23,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "47",
"routeLongName": "Masson",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-26 12:50:08",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2789,
"ref": "25242",
"isActive": false,
"label": "25242",
"timestamp": 1649939930,
"tripId": "250153924",
"routeId": "51E",
"startTime": "08:35:00",
"position": {
"lat": 45.52187,
"lon": -73.59634
},
"bearing": 41,
"speed": 13,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 6,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 5,
"label": "Full"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-29 13:04:08",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 57,
"ref": "25243",
"isActive": false,
"label": "25243",
"timestamp": 1594327395,
"tripId": "218430646",
"routeId": "191",
"startTime": "16:11:00",
"position": {
"lat": 45.44201,
"lon": -73.66499
},
"bearing": 91,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 38,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1992,
"ref": "25244",
"isActive": false,
"label": "25244",
"timestamp": 1627906221,
"tripId": "232405461",
"routeId": "27",
"startTime": "07:53:00",
"position": {
"lat": 45.5279,
"lon": -73.58647
},
"bearing": 213,
"speed": 20,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 22,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "27",
"routeLongName": "Boulevard Saint-Joseph",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:05:12",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1666,
"ref": "25245",
"isActive": false,
"label": "25245",
"timestamp": 1617285683,
"tripId": "229031296",
"routeId": "97",
"startTime": "09:15:00",
"position": {
"lat": 45.51643,
"lon": -73.58875
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "97",
"routeLongName": "Avenue-du-Mont-Royal",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:20:05",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1704,
"ref": "25246",
"isActive": false,
"label": "25246",
"timestamp": 1649859234,
"tripId": "250154764",
"routeId": "85",
"startTime": "09:27:00",
"position": {
"lat": 45.53286,
"lon": -73.55055
},
"bearing": 125,
"speed": 17,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 57,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "85",
"routeLongName": "Hochelaga",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:25:04",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 58,
"ref": "25247",
"isActive": false,
"label": "25247",
"timestamp": 1628250228,
"tripId": "232405890",
"routeId": "51",
"startTime": "07:20:00",
"position": {
"lat": 45.48514,
"lon": -73.6279
},
"bearing": 33,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 23,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 59,
"ref": "25248",
"isActive": false,
"label": "25248",
"timestamp": 1629290567,
"tripId": "232405983",
"routeId": "47",
"startTime": "08:18:00",
"position": {
"lat": 45.52636,
"lon": -73.5882
},
"bearing": 123,
"speed": 7,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 23,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "47",
"routeLongName": "Masson",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 60,
"ref": "26001",
"isActive": false,
"label": "26001",
"timestamp": 1656680977,
"tripId": "252010359",
"routeId": "85",
"startTime": "08:30:00",
"position": {
"lat": 45.53332,
"lon": -73.55168
},
"bearing": 114,
"speed": 19,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 57,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "85",
"routeLongName": "Hochelaga",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2880,
"ref": "26002",
"isActive": false,
"label": "26002",
"timestamp": 1594327391,
"tripId": "218427591",
"routeId": "35",
"startTime": "16:30:00",
"position": {
"lat": 45.48998,
"lon": -73.56729
},
"bearing": 33,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 10,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "35",
"routeLongName": "Griffintown",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-03 22:16:09",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 61,
"ref": "26003",
"isActive": false,
"label": "26003",
"timestamp": 1594327263,
"tripId": "219805841",
"routeId": "468",
"startTime": "16:46:00",
"position": {
"lat": 45.51423,
"lon": -73.6841
},
"bearing": 333,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "468",
"routeLongName": "Express Pierrefonds / Gouin",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 755,
"ref": "26004",
"isActive": false,
"label": "26004",
"timestamp": 1651237674,
"tripId": "250154475",
"routeId": "51",
"startTime": "08:09:00",
"position": {
"lat": 45.52583,
"lon": -73.58814
},
"bearing": 32,
"speed": 21,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 50,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 01:13:04",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3054,
"ref": "26005",
"isActive": false,
"label": "26005",
"timestamp": 1649077580,
"tripId": "250155065",
"routeId": "27",
"startTime": "08:48:00",
"position": {
"lat": 45.52774,
"lon": -73.58662
},
"bearing": 213,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 22,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "27",
"routeLongName": "Boulevard Saint-Joseph",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-13 12:12:09",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1634,
"ref": "26006",
"isActive": false,
"label": "26006",
"timestamp": 1647295320,
"tripId": "241512520",
"routeId": "430",
"startTime": "16:41:00",
"position": {
"lat": 45.55458,
"lon": -73.5847
},
"bearing": 113,
"speed": 28,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 32,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "430",
"routeLongName": "Express Pointe-aux-Trembles",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:15:06",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 913,
"ref": "26007",
"isActive": false,
"label": "26007",
"timestamp": 1594327395,
"tripId": "218421800",
"routeId": "161",
"startTime": "16:00:00",
"position": {
"lat": 45.52253,
"lon": -73.61307
},
"bearing": 33,
"speed": 1,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 39,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "161",
"routeLongName": "Van Horne",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 01:18:46",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 62,
"ref": "26008",
"isActive": false,
"label": "26008",
"timestamp": 1594327393,
"tripId": "218421017",
"routeId": "55",
"startTime": "16:20:00",
"position": {
"lat": 45.52377,
"lon": -73.59441
},
"bearing": 304,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "55",
"routeLongName": "Boulevard Saint-Laurent",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2826,
"ref": "26009",
"isActive": false,
"label": "26009",
"timestamp": 1649373237,
"tripId": "250155075",
"routeId": "410",
"startTime": "17:52:00",
"position": {
"lat": 45.54453,
"lon": -73.57137
},
"bearing": 204,
"speed": 30,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "410",
"routeLongName": "Express Notre-Dame",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-02 10:10:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2862,
"ref": "26010",
"isActive": false,
"label": "26010",
"timestamp": 1627922857,
"tripId": "231569254",
"routeId": "92",
"startTime": "11:00:00",
"position": {
"lat": 45.53193,
"lon": -73.6019
},
"bearing": 129,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 30,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "92",
"routeLongName": "Jean-Talon Ouest",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-03 12:36:11",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1564,
"ref": "26011",
"isActive": false,
"label": "26011",
"timestamp": 1651235978,
"tripId": "250154760",
"routeId": "51",
"startTime": "07:35:00",
"position": {
"lat": 45.52622,
"lon": -73.58782
},
"bearing": 32,
"speed": 37,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 51,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:05:04",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2733,
"ref": "26012",
"isActive": false,
"label": "26012",
"timestamp": 1654122821,
"tripId": "250269003",
"routeId": "168",
"startTime": "18:00:00",
"position": {
"lat": 45.44849,
"lon": -73.5542
},
"bearing": 217,
"speed": 39,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 28,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "168",
"routeLongName": "Cité-du-Havre",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-27 22:12:07",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 63,
"ref": "26013",
"isActive": false,
"label": "26013",
"timestamp": 1657233652,
"tripId": "251981702",
"routeId": "150",
"startTime": "18:07:00",
"position": {
"lat": 45.52406,
"lon": -73.55231
},
"bearing": 123,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "150",
"routeLongName": "René-Lévesque",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2618,
"ref": "26014",
"isActive": false,
"label": "26014",
"timestamp": 1594327395,
"tripId": "218427147",
"routeId": "411",
"startTime": "16:27:00",
"position": {
"lat": 45.43567,
"lon": -73.84193
},
"bearing": 68,
"speed": 80,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 8,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "411",
"routeLongName": "Express Lionel-Groulx",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-25 20:46:08",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2981,
"ref": "26015",
"isActive": false,
"label": "26015",
"timestamp": 1594327257,
"tripId": "219805429",
"routeId": "196",
"startTime": "16:44:00",
"position": {
"lat": 45.43977,
"lon": -73.69164
},
"bearing": 268,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "196",
"routeLongName": "Parc-Industriel-Lachine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-09 12:54:07",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2605,
"ref": "26016",
"isActive": false,
"label": "26016",
"timestamp": 1648207476,
"tripId": "250155063",
"routeId": "410",
"startTime": "06:59:00",
"position": {
"lat": 45.65166,
"lon": -73.48914
},
"bearing": 156,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": 3,
"label": "Congestion"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "410",
"routeLongName": "Express Notre-Dame",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-25 19:26:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 64,
"ref": "26017",
"isActive": false,
"label": "26017",
"timestamp": 1645620811,
"tripId": "242656682",
"routeId": "186",
"startTime": "07:22:00",
"position": {
"lat": 45.59727,
"lon": -73.53466
},
"bearing": 203,
"speed": 25,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 44,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "186",
"routeLongName": "Sherbrooke-Est",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3018,
"ref": "26018",
"isActive": false,
"label": "26018",
"timestamp": 1644932659,
"tripId": "241511463",
"routeId": "51",
"startTime": "07:46:00",
"position": {
"lat": 45.52612,
"lon": -73.58791
},
"bearing": 31,
"speed": 16,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 51,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-11 13:38:10",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2898,
"ref": "26019",
"isActive": false,
"label": "26019",
"timestamp": 1594327404,
"tripId": "219806175",
"routeId": "475",
"startTime": "16:10:00",
"position": {
"lat": 45.4847,
"lon": -73.79295
},
"bearing": 237,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 5,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "475",
"routeLongName": "Express Dollard-des-Ormeaux",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-04 20:26:11",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1293,
"ref": "26020",
"isActive": false,
"label": "26020",
"timestamp": 1655211651,
"tripId": "251982712",
"routeId": "125",
"startTime": "08:11:00",
"position": {
"lat": 45.50645,
"lon": -73.57053
},
"bearing": 205,
"speed": 15,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 41,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "125",
"routeLongName": "Ontario",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:25:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1529,
"ref": "26021",
"isActive": false,
"label": "26021",
"timestamp": 1594327396,
"tripId": "218415501",
"routeId": "141",
"startTime": "16:11:00",
"position": {
"lat": 45.58326,
"lon": -73.58072
},
"bearing": 170,
"speed": 16,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 33,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:00:04",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2087,
"ref": "26022",
"isActive": false,
"label": "26022",
"timestamp": 1594327393,
"tripId": "218446215",
"routeId": "131",
"startTime": "16:27:00",
"position": {
"lat": 45.57249,
"lon": -73.54594
},
"bearing": 120,
"speed": 33,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 17,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 0,
"label": "Empty"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "131",
"routeLongName": "De l'Assomption",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:25:14",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 65,
"ref": "26023",
"isActive": false,
"label": "26023",
"timestamp": 1594327398,
"tripId": "218417573",
"routeId": "189",
"startTime": "16:14:00",
"position": {
"lat": 45.67074,
"lon": -73.49397
},
"bearing": 10,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 48,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "189",
"routeLongName": "Notre-Dame",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 66,
"ref": "26024",
"isActive": false,
"label": "26024",
"timestamp": 1594327404,
"tripId": "218417442",
"routeId": "187",
"startTime": "16:25:00",
"position": {
"lat": 45.64346,
"lon": -73.49964
},
"bearing": 14,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 18,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "187",
"routeLongName": "René-Lévesque",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 67,
"ref": "26025",
"isActive": false,
"label": "26025",
"timestamp": 1594327304,
"tripId": "218446683",
"routeId": "178",
"startTime": "16:37:00",
"position": {
"lat": 45.49603,
"lon": -73.57114
},
"bearing": 129,
"speed": 33,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 68,
"ref": "26026",
"isActive": false,
"label": "26026",
"timestamp": 1669293832,
"tripId": "256333293",
"routeId": "49E",
"startTime": "07:03:00",
"position": {
"lat": 45.61785,
"lon": -73.58235
},
"bearing": 286,
"speed": 15,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 39,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3067,
"ref": "26027",
"isActive": false,
"label": "26027",
"timestamp": 1594327404,
"tripId": "218446273",
"routeId": "136",
"startTime": "16:09:00",
"position": {
"lat": 45.56215,
"lon": -73.54631
},
"bearing": 206,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "136",
"routeLongName": "Viau",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-14 14:28:03",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 69,
"ref": "26028",
"isActive": false,
"label": "26028",
"timestamp": 1671629164,
"tripId": "256792774",
"routeId": "136",
"startTime": "07:48:00",
"position": {
"lat": 45.5555,
"lon": -73.54636
},
"bearing": 205,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "136",
"routeLongName": "Viau",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 70,
"ref": "26029",
"isActive": false,
"label": "26029",
"timestamp": 1594327398,
"tripId": "218446432",
"routeId": "168",
"startTime": "16:16:00",
"position": {
"lat": 45.45068,
"lon": -73.54968
},
"bearing": 212,
"speed": 21,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 27,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "168",
"routeLongName": "Cité-du-Havre",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 71,
"ref": "26030",
"isActive": false,
"label": "26030",
"timestamp": 1594327395,
"tripId": "218445453",
"routeId": "24",
"startTime": "16:39:00",
"position": {
"lat": 45.53387,
"lon": -73.56204
},
"bearing": 193,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 5,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "24",
"routeLongName": "Sherbrooke",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 72,
"ref": "26031",
"isActive": false,
"label": "26031",
"timestamp": 1671628507,
"tripId": "256790917",
"routeId": "168",
"startTime": "07:42:00",
"position": {
"lat": 45.50375,
"lon": -73.57098
},
"bearing": 306,
"speed": 8,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 30,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "168",
"routeLongName": "Cité-du-Havre",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 73,
"ref": "26032",
"isActive": false,
"label": "26032",
"timestamp": 1594327390,
"tripId": "218445967",
"routeId": "136",
"startTime": "16:24:00",
"position": {
"lat": 45.575,
"lon": -73.58973
},
"bearing": 257,
"speed": 11,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 16,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "136",
"routeLongName": "Viau",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2191,
"ref": "26033",
"isActive": false,
"label": "26033",
"timestamp": 1594327400,
"tripId": "218446496",
"routeId": "168",
"startTime": "16:20:00",
"position": {
"lat": 45.49722,
"lon": -73.5582
},
"bearing": 295,
"speed": 13,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 25,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "168",
"routeLongName": "Cité-du-Havre",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 14:20:06",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1243,
"ref": "26034",
"isActive": false,
"label": "26034",
"timestamp": 1650494804,
"tripId": "250268379",
"routeId": "136",
"startTime": "18:55:00",
"position": {
"lat": 45.56282,
"lon": -73.54632
},
"bearing": 116,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "136",
"routeLongName": "Viau",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:15:04",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2876,
"ref": "26035",
"isActive": false,
"label": "26035",
"timestamp": 1701757804,
"tripId": "271578184",
"routeId": "34",
"startTime": "01:05:00",
"position": {
"lat": 45.53185,
"lon": -73.54826
},
"bearing": 208,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "34",
"routeLongName": "Sainte-Catherine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-03 20:58:11",
"meta": {},
"updatedAt": "2023-12-05 01:34:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 74,
"ref": "26036",
"isActive": false,
"label": "26036",
"timestamp": 1594327394,
"tripId": "218446293",
"routeId": "22",
"startTime": "16:43:00",
"position": {
"lat": 45.58712,
"lon": -73.5212
},
"bearing": 105,
"speed": 42,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "22",
"routeLongName": "Notre-Dame",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 75,
"ref": "26037",
"isActive": false,
"label": "26037",
"timestamp": 1641245489,
"tripId": "242656326",
"routeId": "81",
"startTime": "15:57:00",
"position": {
"lat": 45.65306,
"lon": -73.55686
},
"bearing": 55,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 11,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "81",
"routeLongName": "Saint-Jean-Baptiste",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 76,
"ref": "26038",
"isActive": false,
"label": "26038",
"timestamp": 1647606525,
"tripId": "241585189",
"routeId": "85",
"startTime": "07:32:00",
"position": {
"lat": 45.53331,
"lon": -73.55167
},
"bearing": 106,
"speed": 16,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 57,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "85",
"routeLongName": "Hochelaga",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2616,
"ref": "26039",
"isActive": false,
"label": "26039",
"timestamp": 1594327405,
"tripId": "218417480",
"routeId": "40",
"startTime": "16:06:00",
"position": {
"lat": 45.66233,
"lon": -73.50739
},
"bearing": 13,
"speed": 38,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 34,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "40",
"routeLongName": "Henri-Bourassa-Est",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-25 20:40:11",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 77,
"ref": "26040",
"isActive": false,
"label": "26040",
"timestamp": 1712787839,
"tripId": "274630114",
"routeId": "189",
"startTime": "17:47:00",
"position": {
"lat": 45.6982,
"lon": -73.4882
},
"bearing": 260,
"speed": 70,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 64,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "189",
"routeLongName": "Notre-Dame",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-04-10 18:35:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 78,
"ref": "26041",
"isActive": false,
"label": "26041",
"timestamp": 1594327400,
"tripId": "218444860",
"routeId": "125",
"startTime": "16:25:00",
"position": {
"lat": 45.55833,
"lon": -73.53603
},
"bearing": 16,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 17,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "125",
"routeLongName": "Ontario",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 79,
"ref": "26042",
"isActive": false,
"label": "26042",
"timestamp": 1594327400,
"tripId": "218430851",
"routeId": "195",
"startTime": "15:43:00",
"position": {
"lat": 45.44191,
"lon": -73.69417
},
"bearing": 268,
"speed": 14,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 51,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "195",
"routeLongName": "Dorval / Angrignon",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 80,
"ref": "26043",
"isActive": false,
"label": "26043",
"timestamp": 1594327388,
"tripId": "218445793",
"routeId": "85",
"startTime": "16:00:00",
"position": {
"lat": 45.59938,
"lon": -73.53323
},
"bearing": 23,
"speed": 52,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 36,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 0,
"label": "Empty"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "85",
"routeLongName": "Hochelaga",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2088,
"ref": "26044",
"isActive": false,
"label": "26044",
"timestamp": 1642549006,
"tripId": "241586105",
"routeId": "136",
"startTime": "17:58:00",
"position": {
"lat": 45.60067,
"lon": -73.61034
},
"bearing": 36,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "136",
"routeLongName": "Viau",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:25:15",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 780,
"ref": "26045",
"isActive": false,
"label": "26045",
"timestamp": 1594327036,
"tripId": "218445477",
"routeId": "24",
"startTime": "16:48:00",
"position": {
"lat": 45.53922,
"lon": -73.56009
},
"bearing": 126,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "24",
"routeLongName": "Sherbrooke",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 01:13:06",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 81,
"ref": "26046",
"isActive": false,
"label": "26046",
"timestamp": 1669336525,
"tripId": "256329702",
"routeId": "26",
"startTime": null,
"position": {
"lat": 45.58907,
"lon": -73.5401
},
"bearing": 303,
"speed": 22,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "26",
"routeLongName": "Mercier-Est",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3184,
"ref": "26047",
"isActive": false,
"label": "26047",
"timestamp": 1646238283,
"tripId": "242658857",
"routeId": "86",
"startTime": null,
"position": {
"lat": 45.6592,
"lon": -73.57127
},
"bearing": 322,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "86",
"routeLongName": "Pointe-aux-Trembles",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-30 20:42:04",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2431,
"ref": "26048",
"isActive": false,
"label": "26048",
"timestamp": 1652357390,
"tripId": "250155077",
"routeId": "427",
"startTime": "07:30:00",
"position": {
"lat": 45.4967,
"lon": -73.57233
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 26,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "427",
"routeLongName": "Express Saint-Joseph",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 21:40:11",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3121,
"ref": "26049",
"isActive": false,
"label": "26049",
"timestamp": 1649807100,
"tripId": "249553857",
"routeId": "189",
"startTime": "19:07:00",
"position": {
"lat": 45.69759,
"lon": -73.49081
},
"bearing": 247,
"speed": 26,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 64,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "189",
"routeLongName": "Notre-Dame",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-19 10:52:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1565,
"ref": "26050",
"isActive": false,
"label": "26050",
"timestamp": 1594327405,
"tripId": "218417638",
"routeId": "487",
"startTime": "16:15:00",
"position": {
"lat": 45.63085,
"lon": -73.51691
},
"bearing": 200,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 15,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "487",
"routeLongName": "Express Bout-de-l'Île",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:05:05",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 82,
"ref": "26051",
"isActive": false,
"label": "26051",
"timestamp": 1658965535,
"tripId": "251982395",
"routeId": "74",
"startTime": "19:44:00",
"position": {
"lat": 45.49992,
"lon": -73.56399
},
"bearing": 138,
"speed": 17,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "74",
"routeLongName": "Bridge",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2095,
"ref": "26052",
"isActive": false,
"label": "26052",
"timestamp": 1594327405,
"tripId": "218446724",
"routeId": "178",
"startTime": "16:18:00",
"position": {
"lat": 45.46726,
"lon": -73.53775
},
"bearing": 67,
"speed": 47,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 7,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:30:15",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1819,
"ref": "26053",
"isActive": false,
"label": "26053",
"timestamp": 1681734021,
"tripId": "263867279",
"routeId": "487",
"startTime": "07:48:00",
"position": {
"lat": 45.600227355957,
"lon": -73.53288269043
},
"bearing": 203,
"speed": 51,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 34,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "487",
"routeLongName": "Express Bout-de-l'Île",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:40:12",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1879,
"ref": "26054",
"isActive": false,
"label": "26054",
"timestamp": 1646750188,
"tripId": "242656143",
"routeId": "428",
"startTime": "07:32:00",
"position": {
"lat": 45.66578,
"lon": -73.5348
},
"bearing": 159,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 26,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "428",
"routeLongName": "Express Parcs industriels de l'Est",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:50:12",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 7400,
"ref": "26055",
"isActive": false,
"label": "26055",
"timestamp": 1647525424,
"tripId": "241584937",
"routeId": "168",
"startTime": "09:27:00",
"position": {
"lat": 45.50371,
"lon": -73.57089
},
"bearing": 306,
"speed": 10,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 30,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "168",
"routeLongName": "Cité-du-Havre",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-07-28 08:41:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 83,
"ref": "26056",
"isActive": false,
"label": "26056",
"timestamp": 1638897052,
"tripId": "243170467",
"routeId": "186",
"startTime": "12:00:00",
"position": {
"lat": 45.61937,
"lon": -73.58073
},
"bearing": 299,
"speed": 34,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "186",
"routeLongName": "Sherbrooke-Est",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1566,
"ref": "26057",
"isActive": false,
"label": "26057",
"timestamp": 1594327404,
"tripId": "218417025",
"routeId": "81",
"startTime": "16:06:00",
"position": {
"lat": 45.65018,
"lon": -73.57974
},
"bearing": 324,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 30,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "81",
"routeLongName": "Saint-Jean-Baptiste",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:05:05",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 7001,
"ref": "26058",
"isActive": false,
"label": "26058",
"timestamp": 1594327389,
"tripId": "961266",
"routeId": "189",
"startTime": "16:30:00",
"position": {
"lat": 45.61253,
"lon": -73.50999
},
"bearing": 14,
"speed": 42,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "189",
"routeLongName": "Notre-Dame",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-03-19 13:24:03",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2041,
"ref": "26059",
"isActive": false,
"label": "26059",
"timestamp": 1644534265,
"tripId": "242655593",
"routeId": "33",
"startTime": "17:08:00",
"position": {
"lat": 45.62759,
"lon": -73.61526
},
"bearing": 140,
"speed": 21,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 61,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:15:13",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 84,
"ref": "26060",
"isActive": false,
"label": "26060",
"timestamp": 1638817298,
"tripId": "243180806",
"routeId": "168",
"startTime": "12:09:00",
"position": {
"lat": 45.50257,
"lon": -73.56525
},
"bearing": 123,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 30,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "168",
"routeLongName": "Cité-du-Havre",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3055,
"ref": "26061",
"isActive": false,
"label": "26061",
"timestamp": 1594327399,
"tripId": "218416873",
"routeId": "48",
"startTime": "15:54:00",
"position": {
"lat": 45.65224,
"lon": -73.55846
},
"bearing": 53,
"speed": 26,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 43,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-13 12:22:11",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1209,
"ref": "26062",
"isActive": false,
"label": "26062",
"timestamp": 1636551436,
"tripId": "243173885",
"routeId": "192",
"startTime": "07:52:00",
"position": {
"lat": 45.54743,
"lon": -73.63736
},
"bearing": 211,
"speed": 34,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 49,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "192",
"routeLongName": "Robert",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:05:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3339,
"ref": "26063",
"isActive": false,
"label": "26063",
"timestamp": 1594327087,
"tripId": "218415674",
"routeId": "32",
"startTime": "16:44:00",
"position": {
"lat": 45.61564,
"lon": -73.62936
},
"bearing": 324,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "32",
"routeLongName": "Lacordaire",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-02-08 20:28:01",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1074,
"ref": "26064",
"isActive": false,
"label": "26064",
"timestamp": 1659013766,
"tripId": "252293488",
"routeId": "26",
"startTime": "08:48:00",
"position": {
"lat": 45.59145,
"lon": -73.53813
},
"bearing": 204,
"speed": 10,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 27,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "26",
"routeLongName": "Mercier-Est",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 02:55:04",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 85,
"ref": "26065",
"isActive": false,
"label": "26065",
"timestamp": 1649296555,
"tripId": "249554063",
"routeId": "187",
"startTime": "19:15:00",
"position": {
"lat": 45.60085,
"lon": -73.53233
},
"bearing": 122,
"speed": 31,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "187",
"routeLongName": "René-Lévesque",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 86,
"ref": "26066",
"isActive": false,
"label": "26066",
"timestamp": 1686004026,
"tripId": "263867828",
"routeId": "186",
"startTime": "17:53:00",
"position": {
"lat": 45.69751,
"lon": -73.49125
},
"bearing": 227,
"speed": 14,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 44,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "186",
"routeLongName": "Sherbrooke-Est",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 6848,
"ref": "26067",
"isActive": false,
"label": "26067",
"timestamp": 1685107696,
"tripId": "263866444",
"routeId": "39",
"startTime": "08:50:00",
"position": {
"lat": 45.58983,
"lon": -73.63425
},
"bearing": 56,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 47,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "39",
"routeLongName": "Des Grandes-Prairies",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-03-10 13:47:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 87,
"ref": "26068",
"isActive": false,
"label": "26068",
"timestamp": 1673995580,
"tripId": "259250113",
"routeId": "822",
"startTime": "17:20:00",
"position": {
"lat": 45.58801,
"lon": -73.53995
},
"bearing": 23,
"speed": 31,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 11,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "822",
"routeLongName": "Navette Longue-Pointe",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2096,
"ref": "26069",
"isActive": false,
"label": "26069",
"timestamp": 1646915828,
"tripId": "242656381",
"routeId": "486",
"startTime": "07:05:00",
"position": {
"lat": 45.59871,
"lon": -73.5338
},
"bearing": 204,
"speed": 16,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "486",
"routeLongName": "Express Sherbrooke",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:30:16",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 88,
"ref": "26070",
"isActive": false,
"label": "26070",
"timestamp": 1647454854,
"tripId": "242658308",
"routeId": "39",
"startTime": "14:12:00",
"position": {
"lat": 45.6201,
"lon": -73.58246
},
"bearing": 121,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 17,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "39",
"routeLongName": "Des Grandes-Prairies",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1963,
"ref": "26071",
"isActive": false,
"label": "26071",
"timestamp": 1594327390,
"tripId": "218402944",
"routeId": "14",
"startTime": "16:43:00",
"position": {
"lat": 45.50936,
"lon": -73.55544
},
"bearing": 20,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "14",
"routeLongName": "Atateken",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:00:14",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3372,
"ref": "26072",
"isActive": false,
"label": "26072",
"timestamp": 1594327391,
"tripId": "218416936",
"routeId": "428",
"startTime": "16:00:00",
"position": {
"lat": 45.58904,
"lon": -73.53953
},
"bearing": 300,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 30,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "428",
"routeLongName": "Express Parcs industriels de l'Est",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-02-20 16:53:04",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1706,
"ref": "26073",
"isActive": false,
"label": "26073",
"timestamp": 1594327390,
"tripId": "218415554",
"routeId": "49",
"startTime": "16:03:00",
"position": {
"lat": 45.60606,
"lon": -73.63563
},
"bearing": 202,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 42,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "49",
"routeLongName": "Maurice-Duplessis",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:25:05",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 7188,
"ref": "26074",
"isActive": false,
"label": "26074",
"timestamp": 1594327120,
"tripId": "218415795",
"routeId": "449",
"startTime": "16:47:00",
"position": {
"lat": 45.58956,
"lon": -73.54004
},
"bearing": 311,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "449",
"routeLongName": "Express Rivière-des-Prairies",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-05-12 15:34:05",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3252,
"ref": "26075",
"isActive": false,
"label": "26075",
"timestamp": 1701091387,
"tripId": "271531686",
"routeId": "49",
"startTime": "07:24:00",
"position": {
"lat": 45.55688,
"lon": -73.66742
},
"bearing": 177,
"speed": 4,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 52,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "49",
"routeLongName": "Maurice-Duplessis",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-01-16 11:30:11",
"meta": {},
"updatedAt": "2023-11-27 08:34:38",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1850,
"ref": "26076",
"isActive": false,
"label": "26076",
"timestamp": 1594327388,
"tripId": "218417646",
"routeId": "189",
"startTime": "16:04:00",
"position": {
"lat": 45.67082,
"lon": -73.49395
},
"bearing": 8,
"speed": 28,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 49,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "189",
"routeLongName": "Notre-Dame",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:45:13",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3140,
"ref": "26077",
"isActive": false,
"label": "26077",
"timestamp": 1710794402,
"tripId": "274252188",
"routeId": "33",
"startTime": "15:38:00",
"position": {
"lat": 45.6301,
"lon": -73.61797
},
"bearing": 147,
"speed": 23,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 60,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-20 10:40:03",
"meta": {},
"updatedAt": "2024-03-18 16:50:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2941,
"ref": "26078",
"isActive": false,
"label": "26078",
"timestamp": 1665352821,
"tripId": "253171320",
"routeId": "187",
"startTime": "17:27:00",
"position": {
"lat": 45.66566,
"lon": -73.51093
},
"bearing": 138,
"speed": 16,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 44,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "187",
"routeLongName": "René-Lévesque",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-06 11:50:07",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3302,
"ref": "26079",
"isActive": false,
"label": "26079",
"timestamp": 1646745610,
"tripId": "242655005",
"routeId": "43",
"startTime": "07:28:00",
"position": {
"lat": 45.59115,
"lon": -73.6474
},
"bearing": 30,
"speed": 35,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 62,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "43",
"routeLongName": "Monselet",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-01-28 11:48:01",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3079,
"ref": "26080",
"isActive": false,
"label": "26080",
"timestamp": 1594327404,
"tripId": "218416964",
"routeId": "44",
"startTime": "16:15:00",
"position": {
"lat": 45.62506,
"lon": -73.5818
},
"bearing": 47,
"speed": 19,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 25,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "44",
"routeLongName": "Armand-Bombardier",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-16 20:42:13",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2709,
"ref": "26081",
"isActive": false,
"label": "26081",
"timestamp": 1703843133,
"tripId": "271544317",
"routeId": "362",
"startTime": "03:55:00",
"position": {
"lat": 45.68735,
"lon": -73.48991
},
"bearing": 10,
"speed": 60,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 104,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "362",
"routeLongName": "Hochelaga / Notre-Dame",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-27 12:42:12",
"meta": {},
"updatedAt": "2023-12-29 04:47:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 89,
"ref": "26082",
"isActive": false,
"label": "26082",
"timestamp": 1594327400,
"tripId": "218417761",
"routeId": "33",
"startTime": "15:57:00",
"position": {
"lat": 45.60556,
"lon": -73.61867
},
"bearing": 323,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 41,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2097,
"ref": "26083",
"isActive": false,
"label": "26083",
"timestamp": 1594327404,
"tripId": "218417507",
"routeId": "141",
"startTime": "16:43:00",
"position": {
"lat": 45.55981,
"lon": -73.59963
},
"bearing": 168,
"speed": 11,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:30:16",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1229,
"ref": "26084",
"isActive": false,
"label": "26084",
"timestamp": 1651843798,
"tripId": "249550845",
"routeId": "469",
"startTime": "09:00:00",
"position": {
"lat": 45.62318,
"lon": -73.62113
},
"bearing": 323,
"speed": 6,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 17,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "469",
"routeLongName": "Express Henri-Bourassa",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:10:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2196,
"ref": "26085",
"isActive": false,
"label": "26085",
"timestamp": 1646697966,
"tripId": "242657187",
"routeId": "33",
"startTime": "18:18:00",
"position": {
"lat": 45.6257,
"lon": -73.61737
},
"bearing": 53,
"speed": 54,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 54,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 17:00:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3016,
"ref": "26086",
"isActive": false,
"label": "26086",
"timestamp": 1710502093,
"tripId": "274251281",
"routeId": "432",
"startTime": "06:45:00",
"position": {
"lat": 45.57682,
"lon": -73.54664
},
"bearing": 46,
"speed": 22,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "432",
"routeLongName": "Express Lacordaire",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-11 12:58:11",
"meta": {},
"updatedAt": "2024-03-15 07:32:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1210,
"ref": "27001",
"isActive": false,
"label": "27001",
"timestamp": 1594327398,
"tripId": "218416276",
"routeId": "32",
"startTime": "16:27:00",
"position": {
"lat": 45.56762,
"lon": -73.52324
},
"bearing": 299,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "32",
"routeLongName": "Lacordaire",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:05:03",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3022,
"ref": "27002",
"isActive": false,
"label": "27002",
"timestamp": 1594327390,
"tripId": "218417816",
"routeId": "28I",
"startTime": "16:10:00",
"position": {
"lat": 45.59698,
"lon": -73.53581
},
"bearing": 122,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 32,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 3,
"label": "Congestion"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-11 20:48:13",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3286,
"ref": "27003",
"isActive": false,
"label": "27003",
"timestamp": 1675979829,
"tripId": "259247473",
"routeId": "32",
"startTime": "15:59:00",
"position": {
"lat": 45.61521,
"lon": -73.62891
},
"bearing": 333,
"speed": 14,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 41,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "32",
"routeLongName": "Lacordaire",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-01-24 10:22:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3385,
"ref": "27004",
"isActive": false,
"label": "27004",
"timestamp": 1671473976,
"tripId": "256333449",
"routeId": "186",
"startTime": "13:23:00",
"position": {
"lat": 45.59706,
"lon": -73.53606
},
"bearing": 123,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "186",
"routeLongName": "Sherbrooke-Est",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-02-27 00:49:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1669,
"ref": "27005",
"isActive": false,
"label": "27005",
"timestamp": 1594327382,
"tripId": "218415559",
"routeId": "33",
"startTime": "16:50:00",
"position": {
"lat": 45.57864,
"lon": -73.51431
},
"bearing": 119,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:20:06",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 90,
"ref": "27006",
"isActive": false,
"label": "27006",
"timestamp": 1678314201,
"tripId": "259247303",
"routeId": "486",
"startTime": "16:51:00",
"position": {
"lat": 45.69702,
"lon": -73.49166
},
"bearing": 54,
"speed": 35,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 23,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "486",
"routeLongName": "Express Sherbrooke",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 787,
"ref": "27007",
"isActive": false,
"label": "27007",
"timestamp": 1668642817,
"tripId": "256330047",
"routeId": "49",
"startTime": "17:52:00",
"position": {
"lat": 45.66819,
"lon": -73.54836
},
"bearing": 333,
"speed": 32,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 62,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "49",
"routeLongName": "Maurice-Duplessis",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 01:13:07",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 91,
"ref": "27008",
"isActive": false,
"label": "27008",
"timestamp": 1651333293,
"tripId": "246814033",
"routeId": "32",
"startTime": "10:32:00",
"position": {
"lat": 45.58165,
"lon": -73.58595
},
"bearing": 80,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 25,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "32",
"routeLongName": "Lacordaire",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 92,
"ref": "27009",
"isActive": false,
"label": "27009",
"timestamp": 1594327404,
"tripId": "218416150",
"routeId": "43",
"startTime": "16:37:00",
"position": {
"lat": 45.58471,
"lon": -73.64716
},
"bearing": 54,
"speed": 25,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 10,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "43",
"routeLongName": "Monselet",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 93,
"ref": "27010",
"isActive": false,
"label": "27010",
"timestamp": 1677012708,
"tripId": "259247967",
"routeId": "49",
"startTime": "14:30:00",
"position": {
"lat": 45.6179,
"lon": -73.58147
},
"bearing": 200,
"speed": 1,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 58,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": 3,
"label": "Congestion"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "49",
"routeLongName": "Maurice-Duplessis",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3072,
"ref": "27011",
"isActive": false,
"label": "27011",
"timestamp": 1594327405,
"tripId": "218416248",
"routeId": "141",
"startTime": "15:59:00",
"position": {
"lat": 45.6089,
"lon": -73.5436
},
"bearing": 81,
"speed": 4,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 39,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-15 19:04:05",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1567,
"ref": "27012",
"isActive": false,
"label": "27012",
"timestamp": 1705984420,
"tripId": "274251051",
"routeId": "44",
"startTime": "23:05:00",
"position": {
"lat": 45.58985,
"lon": -73.5399
},
"bearing": 20,
"speed": 16,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 37,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "44",
"routeLongName": "Armand-Bombardier",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:05:05",
"meta": {},
"updatedAt": "2024-01-22 23:41:04",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1820,
"ref": "27013",
"isActive": false,
"label": "27013",
"timestamp": 1594327388,
"tripId": "218417825",
"routeId": "49",
"startTime": "16:43:00",
"position": {
"lat": 45.5559,
"lon": -73.66727
},
"bearing": 24,
"speed": 5,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "49",
"routeLongName": "Maurice-Duplessis",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:40:13",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 94,
"ref": "27014",
"isActive": false,
"label": "27014",
"timestamp": 1594327397,
"tripId": "218416658",
"routeId": "44",
"startTime": "16:26:00",
"position": {
"lat": 45.61185,
"lon": -73.58068
},
"bearing": 212,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "44",
"routeLongName": "Armand-Bombardier",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1851,
"ref": "27015",
"isActive": false,
"label": "27015",
"timestamp": 1647570711,
"tripId": "242655517",
"routeId": "44",
"startTime": "22:02:00",
"position": {
"lat": 45.58986,
"lon": -73.53992
},
"bearing": 19,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 37,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "44",
"routeLongName": "Armand-Bombardier",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:45:14",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1417,
"ref": "27016",
"isActive": false,
"label": "27016",
"timestamp": 1702386514,
"tripId": "271531654",
"routeId": "33",
"startTime": "07:13:00",
"position": {
"lat": 45.62777,
"lon": -73.61546
},
"bearing": 143,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 61,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:45:04",
"meta": {},
"updatedAt": "2023-12-12 08:16:05",
"agencyName": "Société de transport de Montréal"
},
{
"id": 95,
"ref": "27017",
"isActive": false,
"label": "27017",
"timestamp": 1712152500,
"tripId": "274626402",
"routeId": "449",
"startTime": "09:20:00",
"position": {
"lat": 45.59775,
"lon": -73.55106
},
"bearing": 122,
"speed": 24,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 40,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "449",
"routeLongName": "Express Rivière-des-Prairies",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-04-03 10:00:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 96,
"ref": "27018",
"isActive": false,
"label": "27018",
"timestamp": 1709075585,
"tripId": "274250440",
"routeId": "86",
"startTime": "17:02:00",
"position": {
"lat": 45.65896,
"lon": -73.57102
},
"bearing": 325,
"speed": 2,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 100,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "86",
"routeLongName": "Pointe-aux-Trembles",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-02-27 18:24:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 97,
"ref": "27019",
"isActive": false,
"label": "27019",
"timestamp": 1683201999,
"tripId": "263864773",
"routeId": "141",
"startTime": "07:25:00",
"position": {
"lat": 45.599010467529,
"lon": -73.533622741699
},
"bearing": 203,
"speed": 50,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 48,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 98,
"ref": "27020",
"isActive": false,
"label": "27020",
"timestamp": 1661636750,
"tripId": "253203189",
"routeId": "33",
"startTime": "16:54:00",
"position": {
"lat": 45.62843,
"lon": -73.61613
},
"bearing": 143,
"speed": 33,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 61,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1964,
"ref": "27021",
"isActive": false,
"label": "27021",
"timestamp": 1594327405,
"tripId": "902665",
"routeId": "32",
"startTime": "16:37:00",
"position": {
"lat": 45.5787,
"lon": -73.56006
},
"bearing": 293,
"speed": 26,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 16,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "32",
"routeLongName": "Lacordaire",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:00:15",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 99,
"ref": "27022",
"isActive": false,
"label": "27022",
"timestamp": 1724063135,
"tripId": "275919709",
"routeId": "44",
"startTime": null,
"position": {
"lat": 45.58962,
"lon": -73.54025
},
"bearing": 117,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "44",
"routeLongName": "Armand-Bombardier",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-08-19 06:27:05",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2456,
"ref": "27023",
"isActive": false,
"label": "27023",
"timestamp": 1698969401,
"tripId": "271531191",
"routeId": "28",
"startTime": "19:14:00",
"position": {
"lat": 45.61676,
"lon": -73.58064
},
"bearing": 83,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 47,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "28",
"routeLongName": "Honoré-Beaugrand",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 22:12:09",
"meta": {},
"updatedAt": "2023-11-02 19:58:04",
"agencyName": "Société de transport de Montréal"
},
{
"id": 100,
"ref": "27024",
"isActive": false,
"label": "27024",
"timestamp": 1676928469,
"tripId": "259248057",
"routeId": "40",
"startTime": "15:45:00",
"position": {
"lat": 45.62452,
"lon": -73.58285
},
"bearing": 238,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "40",
"routeLongName": "Henri-Bourassa-Est",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 101,
"ref": "27025",
"isActive": false,
"label": "27025",
"timestamp": 1696693122,
"tripId": "266927692",
"routeId": "33",
"startTime": "11:13:00",
"position": {
"lat": 45.6057,
"lon": -73.61902
},
"bearing": 144,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 20,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-10-07 11:40:05",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3308,
"ref": "27026",
"isActive": false,
"label": "27026",
"timestamp": 1594327400,
"tripId": "218445423",
"routeId": "24",
"startTime": "16:28:00",
"position": {
"lat": 45.48538,
"lon": -73.5961
},
"bearing": 41,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 11,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "24",
"routeLongName": "Sherbrooke",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-01-29 11:23:04",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 102,
"ref": "27027",
"isActive": false,
"label": "27027",
"timestamp": 1594327400,
"tripId": "218444798",
"routeId": "10",
"startTime": "16:25:00",
"position": {
"lat": 45.54256,
"lon": -73.58829
},
"bearing": 306,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 16,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "10",
"routeLongName": "De Lorimier",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 103,
"ref": "27028",
"isActive": false,
"label": "27028",
"timestamp": 1695417527,
"tripId": "267788815",
"routeId": "189",
"startTime": "16:37:00",
"position": {
"lat": 45.65562,
"lon": -73.49128
},
"bearing": 335,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 40,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "189",
"routeLongName": "Notre-Dame",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 104,
"ref": "27029",
"isActive": false,
"label": "27029",
"timestamp": 1700146118,
"tripId": "271531324",
"routeId": "32",
"startTime": "08:40:00",
"position": {
"lat": 45.57775,
"lon": -73.54993
},
"bearing": 100,
"speed": 8,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 36,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "32",
"routeLongName": "Lacordaire",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-11-16 09:50:04",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3315,
"ref": "27030",
"isActive": false,
"label": "27030",
"timestamp": 1594327405,
"tripId": "218429848",
"routeId": "109",
"startTime": "16:28:00",
"position": {
"lat": 45.43266,
"lon": -73.63082
},
"bearing": 290,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-01-30 22:46:02",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3108,
"ref": "27501",
"isActive": false,
"label": "27501",
"timestamp": 1594327391,
"tripId": "218430819",
"routeId": "406",
"startTime": "16:37:00",
"position": {
"lat": 45.4444,
"lon": -73.61409
},
"bearing": 223,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 4,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-18 12:28:10",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3135,
"ref": "27502",
"isActive": false,
"label": "27502",
"timestamp": 1721362617,
"tripId": "275639400",
"routeId": "113",
"startTime": "23:45:00",
"position": {
"lat": 45.42508,
"lon": -73.64851
},
"bearing": 53,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 36,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "113",
"routeLongName": "Lapierre",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-19 19:36:05",
"meta": {},
"updatedAt": "2024-07-19 00:18:04",
"agencyName": "Société de transport de Montréal"
},
{
"id": 105,
"ref": "27503",
"isActive": false,
"label": "27503",
"timestamp": 1699915451,
"tripId": "271516928",
"routeId": "496",
"startTime": "16:59:00",
"position": {
"lat": 45.44745,
"lon": -73.74305
},
"bearing": 272,
"speed": 31,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "496",
"routeLongName": "Express Victoria",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-11-13 17:55:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 7314,
"ref": "27504",
"isActive": false,
"label": "27504",
"timestamp": 1594327263,
"tripId": "218430081",
"routeId": "406",
"startTime": "16:18:00",
"position": {
"lat": 45.42482,
"lon": -73.64992
},
"bearing": 17,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 28,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-06-10 12:00:02",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3000,
"ref": "27505",
"isActive": false,
"label": "27505",
"timestamp": 1702404514,
"tripId": "271514006",
"routeId": "104",
"startTime": "12:23:00",
"position": {
"lat": 45.48933,
"lon": -73.58444
},
"bearing": 44,
"speed": 20,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 42,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "104",
"routeLongName": "Cavendish",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-10 12:16:10",
"meta": {},
"updatedAt": "2023-12-12 13:19:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 106,
"ref": "27506",
"isActive": false,
"label": "27506",
"timestamp": 1729013422,
"tripId": "280227548",
"routeId": "63",
"startTime": "13:02:00",
"position": {
"lat": 45.4888,
"lon": -73.58509
},
"bearing": 43,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 27,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "63",
"routeLongName": "Girouard",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-10-15 13:32:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3078,
"ref": "27507",
"isActive": false,
"label": "27507",
"timestamp": 1594327404,
"tripId": "218429403",
"routeId": "106",
"startTime": "16:34:00",
"position": {
"lat": 45.43041,
"lon": -73.63507
},
"bearing": 65,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 15,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "106",
"routeLongName": "Newman",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-16 20:36:16",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2997,
"ref": "27508",
"isActive": false,
"label": "27508",
"timestamp": 1699910761,
"tripId": "271514203",
"routeId": "406",
"startTime": "15:58:00",
"position": {
"lat": 45.42543,
"lon": -73.649
},
"bearing": 151,
"speed": 10,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 29,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-10 10:54:04",
"meta": {},
"updatedAt": "2023-11-13 16:36:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 107,
"ref": "27509",
"isActive": false,
"label": "27509",
"timestamp": 1594327389,
"tripId": "218426702",
"routeId": "211",
"startTime": "15:41:00",
"position": {
"lat": 45.4311,
"lon": -73.84498
},
"bearing": 267,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 22,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "211",
"routeLongName": "Bord-du-Lac",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 108,
"ref": "27510",
"isActive": false,
"label": "27510",
"timestamp": 1727392505,
"tripId": "280227986",
"routeId": "90",
"startTime": "18:14:00",
"position": {
"lat": 45.44356,
"lon": -73.68033
},
"bearing": 182,
"speed": 36,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 52,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "90",
"routeLongName": "Saint-Jacques",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-26 19:26:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2976,
"ref": "27511",
"isActive": false,
"label": "27511",
"timestamp": 1594327328,
"tripId": "218429450",
"routeId": "406",
"startTime": "16:50:00",
"position": {
"lat": 45.4462,
"lon": -73.60425
},
"bearing": 138,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-09 11:18:03",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1178,
"ref": "27512",
"isActive": false,
"label": "27512",
"timestamp": 1594327390,
"tripId": "218426940",
"routeId": "405",
"startTime": "16:07:00",
"position": {
"lat": 45.44839,
"lon": -73.72356
},
"bearing": 92,
"speed": 84,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "405",
"routeLongName": "Express Bord-du-Lac",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 09:55:05",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1771,
"ref": "27513",
"isActive": false,
"label": "27513",
"timestamp": 1594327202,
"tripId": "218428783",
"routeId": "78",
"startTime": "16:11:00",
"position": {
"lat": 45.44641,
"lon": -73.60447
},
"bearing": 197,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 29,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:35:06",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1568,
"ref": "27514",
"isActive": false,
"label": "27514",
"timestamp": 1699943472,
"tripId": "271513088",
"routeId": "61",
"startTime": "01:10:00",
"position": {
"lat": 45.45451,
"lon": -73.56776
},
"bearing": 182,
"speed": 43,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 30,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "61",
"routeLongName": "Wellington",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:05:05",
"meta": {},
"updatedAt": "2023-11-14 01:39:04",
"agencyName": "Société de transport de Montréal"
},
{
"id": 109,
"ref": "27515",
"isActive": false,
"label": "27515",
"timestamp": 1727820261,
"tripId": "280230393",
"routeId": "211",
"startTime": "16:44:00",
"position": {
"lat": 45.40384,
"lon": -73.93959
},
"bearing": 239,
"speed": 10,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 47,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "211",
"routeLongName": "Bord-du-Lac",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-10-01 18:07:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3362,
"ref": "27516",
"isActive": false,
"label": "27516",
"timestamp": 1726613437,
"tripId": "280229394",
"routeId": "198",
"startTime": null,
"position": {
"lat": 45.44861,
"lon": -73.7427
},
"bearing": 98,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "198",
"routeLongName": "Broadway",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-02-15 22:43:03",
"meta": {},
"updatedAt": "2024-09-17 18:52:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 110,
"ref": "27517",
"isActive": false,
"label": "27517",
"timestamp": 1594327390,
"tripId": "218427691",
"routeId": "36",
"startTime": "16:28:00",
"position": {
"lat": 45.48191,
"lon": -73.57686
},
"bearing": 229,
"speed": 3,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 13,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "36",
"routeLongName": "Monk",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1418,
"ref": "27518",
"isActive": false,
"label": "27518",
"timestamp": 1698175830,
"tripId": "271490174",
"routeId": "406",
"startTime": "15:38:00",
"position": {
"lat": 45.4462,
"lon": -73.60425
},
"bearing": 219,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:45:04",
"meta": {},
"updatedAt": "2023-10-24 15:32:05",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3211,
"ref": "27519",
"isActive": false,
"label": "27519",
"timestamp": 1699885919,
"tripId": "271516374",
"routeId": "411",
"startTime": "08:45:00",
"position": {
"lat": 45.48165,
"lon": -73.58254
},
"bearing": 43,
"speed": 5,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 14,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "411",
"routeLongName": "Express Lionel-Groulx",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-01-07 23:14:58",
"meta": {},
"updatedAt": "2023-11-13 09:43:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 111,
"ref": "27520",
"isActive": true,
"label": "27520",
"timestamp": 1749738647,
"tripId": "286570790",
"routeId": "71",
"startTime": "09:55:00",
"position": {
"lat": 45.49535,
"lon": -73.57852
},
"bearing": 302,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 34,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286570790",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "71",
"routeLongName": "Pointe-Saint-Charles",
"shapeLink": "/storage/shapes/stm/710083.json",
"shapeId": "710083",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-12 10:31:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2830,
"ref": "27521",
"isActive": false,
"label": "27521",
"timestamp": 1594327405,
"tripId": "218427092",
"routeId": "491",
"startTime": "16:31:00",
"position": {
"lat": 45.44197,
"lon": -73.66652
},
"bearing": 88,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 7,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "491",
"routeLongName": "Express Provost",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-02 12:02:09",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2556,
"ref": "27522",
"isActive": false,
"label": "27522",
"timestamp": 1749731313,
"tripId": "286570879",
"routeId": "90",
"startTime": "07:32:00",
"position": {
"lat": 45.48803,
"lon": -73.58601
},
"bearing": 42,
"speed": 33,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 53,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286570879",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "90",
"routeLongName": "Saint-Jacques",
"shapeLink": "/storage/shapes/stm/900252.json",
"shapeId": "900252",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-25 11:36:06",
"meta": {},
"updatedAt": "2025-06-12 08:37:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3074,
"ref": "27523",
"isActive": false,
"label": "27523",
"timestamp": 1724178324,
"tripId": "953133",
"routeId": "405",
"startTime": "14:57:00",
"position": {
"lat": 45.4823,
"lon": -73.57896
},
"bearing": 299,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "405",
"routeLongName": "Express Bord-du-Lac",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-16 11:46:08",
"meta": {},
"updatedAt": "2024-08-20 14:27:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1179,
"ref": "27524",
"isActive": false,
"label": "27524",
"timestamp": 1594327396,
"tripId": "218417292",
"routeId": "48",
"startTime": "16:12:00",
"position": {
"lat": 45.62885,
"lon": -73.61268
},
"bearing": 43,
"speed": 31,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 23,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 09:55:05",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 112,
"ref": "27525",
"isActive": false,
"label": "27525",
"timestamp": 1594327398,
"tripId": "218417865",
"routeId": "44",
"startTime": "16:35:00",
"position": {
"lat": 45.59579,
"lon": -73.55817
},
"bearing": 295,
"speed": 11,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 7,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "44",
"routeLongName": "Armand-Bombardier",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1923,
"ref": "27526",
"isActive": false,
"label": "27526",
"timestamp": 1718407531,
"tripId": "274737690",
"routeId": "10",
"startTime": "18:56:00",
"position": {
"lat": 45.55567,
"lon": -73.61723
},
"bearing": 299,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 26,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "10",
"routeLongName": "De Lorimier",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:55:16",
"meta": {},
"updatedAt": "2024-06-14 19:30:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1496,
"ref": "27527",
"isActive": false,
"label": "27527",
"timestamp": 1742204603,
"tripId": "282236858",
"routeId": "195",
"startTime": null,
"position": {
"lat": 45.44601,
"lon": -73.60479
},
"bearing": 274,
"speed": 24,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "195",
"routeLongName": "Dorval / Angrignon",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:55:02",
"meta": {},
"updatedAt": "2025-03-17 05:45:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1852,
"ref": "27528",
"isActive": false,
"label": "27528",
"timestamp": 1729821263,
"tripId": "279633400",
"routeId": "193",
"startTime": "21:10:00",
"position": {
"lat": 45.6043,
"lon": -73.57337
},
"bearing": 34,
"speed": 19,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 48,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "193",
"routeLongName": "Jarry",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:45:15",
"meta": {},
"updatedAt": "2024-10-24 22:05:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3040,
"ref": "27529",
"isActive": false,
"label": "27529",
"timestamp": 1749730487,
"tripId": "286571056",
"routeId": "90",
"startTime": "07:22:00",
"position": {
"lat": 45.48886,
"lon": -73.58501
},
"bearing": 42,
"speed": 16,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 53,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286571056",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "90",
"routeLongName": "Saint-Jacques",
"shapeLink": "/storage/shapes/stm/900252.json",
"shapeId": "900252",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-12-12 20:36:14",
"meta": {},
"updatedAt": "2025-06-12 08:25:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 113,
"ref": "27530",
"isActive": false,
"label": "27530",
"timestamp": 1594327278,
"tripId": "218430144",
"routeId": "112",
"startTime": "16:10:00",
"position": {
"lat": 45.4248,
"lon": -73.64838
},
"bearing": 296,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 39,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "112",
"routeLongName": "Airlie",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3325,
"ref": "27531",
"isActive": false,
"label": "27531",
"timestamp": 1594327019,
"tripId": "218430122",
"routeId": "90",
"startTime": "15:26:00",
"position": {
"lat": 45.44334,
"lon": -73.68024
},
"bearing": 181,
"speed": 41,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 52,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "90",
"routeLongName": "Saint-Jacques",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-02-05 09:09:02",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1419,
"ref": "27532",
"isActive": false,
"label": "27532",
"timestamp": 1701498118,
"tripId": "271515324",
"routeId": "104",
"startTime": "00:43:00",
"position": {
"lat": 45.46458,
"lon": -73.63088
},
"bearing": 123,
"speed": 39,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 40,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "104",
"routeLongName": "Cavendish",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:45:04",
"meta": {},
"updatedAt": "2023-12-02 01:24:05",
"agencyName": "Société de transport de Montréal"
},
{
"id": 114,
"ref": "27533",
"isActive": false,
"label": "27533",
"timestamp": 1749068831,
"tripId": "286569912",
"routeId": "112",
"startTime": "15:58:00",
"position": {
"lat": 45.42519,
"lon": -73.64822
},
"bearing": 17,
"speed": 56,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 40,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286569912",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "112",
"routeLongName": "Airlie",
"shapeLink": "/storage/shapes/stm/1120178.json",
"shapeId": "1120178",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-04 16:31:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1110,
"ref": "27534",
"isActive": true,
"label": "27534",
"timestamp": 1749738646,
"tripId": "286570902",
"routeId": "37",
"startTime": "10:17:00",
"position": {
"lat": 45.45704,
"lon": -73.5818
},
"bearing": 93,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 15,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286570902",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "37",
"routeLongName": "Jolicoeur",
"shapeLink": "/storage/shapes/stm/370158.json",
"shapeId": "370158",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 03:00:05",
"meta": {},
"updatedAt": "2025-06-12 10:31:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 115,
"ref": "27535",
"isActive": false,
"label": "27535",
"timestamp": 1749731587,
"tripId": "286572689",
"routeId": "113",
"startTime": "07:59:00",
"position": {
"lat": 45.44714,
"lon": -73.60416
},
"bearing": 282,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286572689",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "113",
"routeLongName": "Lapierre",
"shapeLink": "/storage/shapes/stm/1130162.json",
"shapeId": "1130162",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-12 08:40:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1294,
"ref": "27536",
"isActive": false,
"label": "27536",
"timestamp": 1749734966,
"tripId": "286573261",
"routeId": "195",
"startTime": "08:43:00",
"position": {
"lat": 45.44602,
"lon": -73.6048
},
"bearing": 296,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 59,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286573261",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "195",
"routeLongName": "Dorval / Angrignon",
"shapeLink": "/storage/shapes/stm/1950182.json",
"shapeId": "1950182",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 10:25:03",
"meta": {},
"updatedAt": "2025-06-12 09:38:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1569,
"ref": "28001",
"isActive": false,
"label": "28001",
"timestamp": 1720246237,
"tripId": "277328975",
"routeId": "139",
"startTime": "01:34:00",
"position": {
"lat": 45.59686,
"lon": -73.64251
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 44,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "139",
"routeLongName": "Pie-IX",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:05:05",
"meta": {},
"updatedAt": "2024-07-06 02:21:05",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1853,
"ref": "28002",
"isActive": false,
"label": "28002",
"timestamp": 1594327217,
"tripId": "218415477",
"routeId": "43",
"startTime": "15:42:00",
"position": {
"lat": 45.5902,
"lon": -73.65066
},
"bearing": 144,
"speed": 37,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 61,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "43",
"routeLongName": "Monselet",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:45:15",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1211,
"ref": "28003",
"isActive": false,
"label": "28003",
"timestamp": 1749734808,
"tripId": "286573502",
"routeId": "198",
"startTime": "08:27:00",
"position": {
"lat": 45.44693,
"lon": -73.60451
},
"bearing": 162,
"speed": 14,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 56,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286573502",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "198",
"routeLongName": "Broadway",
"shapeLink": "/storage/shapes/stm/1980012.json",
"shapeId": "1980012",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 10:05:03",
"meta": {},
"updatedAt": "2025-06-12 09:36:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1365,
"ref": "28004",
"isActive": false,
"label": "28004",
"timestamp": 1718977244,
"tripId": "277328881",
"routeId": "48",
"startTime": "08:51:00",
"position": {
"lat": 45.55687,
"lon": -73.66743
},
"bearing": 163,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 47,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:35:04",
"meta": {},
"updatedAt": "2024-06-21 09:51:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 116,
"ref": "28005",
"isActive": false,
"label": "28005",
"timestamp": 1594327399,
"tripId": "218417998",
"routeId": "48",
"startTime": "16:26:00",
"position": {
"lat": 45.59846,
"lon": -73.64025
},
"bearing": 30,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 9,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 117,
"ref": "28006",
"isActive": false,
"label": "28006",
"timestamp": 1749727104,
"tripId": "285007817",
"routeId": "174",
"startTime": "06:57:00",
"position": {
"lat": 45.47258,
"lon": -73.73527
},
"bearing": 222,
"speed": 20,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 13,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285007817",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "174",
"routeLongName": "Côte-Vertu-Ouest",
"shapeLink": "/storage/shapes/stm/1740116.json",
"shapeId": "1740116",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-12 07:29:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2924,
"ref": "28007",
"isActive": false,
"label": "28007",
"timestamp": 1727823166,
"tripId": "280230986",
"routeId": "425",
"startTime": "17:42:00",
"position": {
"lat": 45.43753,
"lon": -73.90037
},
"bearing": 285,
"speed": 33,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "425",
"routeLongName": "Express Anse-à-l'Orme",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-05 16:58:06",
"meta": {},
"updatedAt": "2024-10-01 19:01:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3197,
"ref": "28008",
"isActive": false,
"label": "28008",
"timestamp": 1749734130,
"tripId": "285008669",
"routeId": "202",
"startTime": "08:07:00",
"position": {
"lat": 45.50768,
"lon": -73.67278
},
"bearing": 33,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 67,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008669",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "202",
"routeLongName": "Dawson",
"shapeLink": "/storage/shapes/stm/2020187.json",
"shapeId": "2020187",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-01-05 21:44:02",
"meta": {},
"updatedAt": "2025-06-12 09:26:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1571,
"ref": "28009",
"isActive": false,
"label": "28009",
"timestamp": 1749648406,
"tripId": "285009438",
"routeId": "209",
"startTime": "08:49:00",
"position": {
"lat": 45.51023,
"lon": -73.81164
},
"bearing": 88,
"speed": 44,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 39,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285009438",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "209",
"routeLongName": "Des Sources",
"shapeLink": "/storage/shapes/stm/2090097.json",
"shapeId": "2090097",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:05:06",
"meta": {},
"updatedAt": "2025-06-11 09:37:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3298,
"ref": "28010",
"isActive": false,
"label": "28010",
"timestamp": 1716383911,
"tripId": "274240951",
"routeId": "196",
"startTime": "08:36:00",
"position": {
"lat": 45.51316,
"lon": -73.68404
},
"bearing": 43,
"speed": 11,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 57,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "196",
"routeLongName": "Parc-Industriel-Lachine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-01-27 20:59:05",
"meta": {},
"updatedAt": "2024-05-22 09:26:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3005,
"ref": "28011",
"isActive": false,
"label": "28011",
"timestamp": 1749735094,
"tripId": "285007812",
"routeId": "174",
"startTime": "09:12:00",
"position": {
"lat": 45.51416,
"lon": -73.68406
},
"bearing": 331,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 17,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285007812",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "174",
"routeLongName": "Côte-Vertu-Ouest",
"shapeLink": "/storage/shapes/stm/1740117.json",
"shapeId": "1740117",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-10 19:14:06",
"meta": {},
"updatedAt": "2025-06-12 09:42:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3250,
"ref": "28012",
"isActive": false,
"label": "28012",
"timestamp": 1749737862,
"tripId": "286569768",
"routeId": "12",
"startTime": "09:47:00",
"position": {
"lat": 45.46271,
"lon": -73.56522
},
"bearing": 275,
"speed": 8,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 30,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286569768",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "12",
"routeLongName": "Île-des-Soeurs",
"shapeLink": "/storage/shapes/stm/120115.json",
"shapeId": "120115",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-01-15 12:06:23",
"meta": {},
"updatedAt": "2025-06-12 10:19:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 118,
"ref": "28013",
"isActive": false,
"label": "28013",
"timestamp": 1727915163,
"tripId": "280229248",
"routeId": "211",
"startTime": "19:13:00",
"position": {
"lat": 45.4037,
"lon": -73.94005
},
"bearing": 239,
"speed": 24,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 47,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "211",
"routeLongName": "Bord-du-Lac",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-10-02 20:37:04",
"agencyName": "Société de transport de Montréal"
},
{
"id": 119,
"ref": "28014",
"isActive": false,
"label": "28014",
"timestamp": 1734011495,
"tripId": "280422270",
"routeId": "198",
"startTime": "07:46:00",
"position": {
"lat": 45.44715,
"lon": -73.6042
},
"bearing": 282,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 53,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "198",
"routeLongName": "Broadway",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-12-12 09:00:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1968,
"ref": "28015",
"isActive": false,
"label": "28015",
"timestamp": 1727877232,
"tripId": "279623130",
"routeId": "32",
"startTime": null,
"position": {
"lat": 45.56762,
"lon": -73.52324
},
"bearing": 318,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "32",
"routeLongName": "Lacordaire",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:00:17",
"meta": {},
"updatedAt": "2024-10-02 09:55:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3182,
"ref": "28016",
"isActive": false,
"label": "28016",
"timestamp": 1749734700,
"tripId": "285009873",
"routeId": "218",
"startTime": "09:07:00",
"position": {
"lat": 45.46663,
"lon": -73.82841
},
"bearing": 145,
"speed": 23,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 27,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285009873",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "218",
"routeLongName": "Antoine-Faucon",
"shapeLink": "/storage/shapes/stm/2180053.json",
"shapeId": "2180053",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-30 11:42:07",
"meta": {},
"updatedAt": "2025-06-12 09:36:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2405,
"ref": "28017",
"isActive": false,
"label": "28017",
"timestamp": 1749704026,
"tripId": "285009985",
"routeId": "202",
"startTime": "00:00:00",
"position": {
"lat": 45.50692,
"lon": -73.67358
},
"bearing": 44,
"speed": 16,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 67,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285009985",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "202",
"routeLongName": "Dawson",
"shapeLink": "/storage/shapes/stm/2020187.json",
"shapeId": "2020187",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 21:14:13",
"meta": {},
"updatedAt": "2025-06-12 00:55:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 120,
"ref": "28018",
"isActive": false,
"label": "28018",
"timestamp": 1729253634,
"tripId": "279028023",
"routeId": "215",
"startTime": "07:24:00",
"position": {
"lat": 45.46635,
"lon": -73.83175
},
"bearing": 144,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 51,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "215",
"routeLongName": "Henri-Bourassa",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-10-18 08:25:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 121,
"ref": "28019",
"isActive": false,
"label": "28019",
"timestamp": 1729770393,
"tripId": "279026649",
"routeId": "201",
"startTime": "06:34:00",
"position": {
"lat": 45.46594,
"lon": -73.83228
},
"bearing": 56,
"speed": 17,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 67,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "201",
"routeLongName": "Saint-Charles / Saint-Jean",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-10-24 07:57:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1247,
"ref": "28020",
"isActive": false,
"label": "28020",
"timestamp": 1749124554,
"tripId": "285010275",
"routeId": "468",
"startTime": "06:55:00",
"position": {
"lat": 45.46561,
"lon": -73.89018
},
"bearing": 233,
"speed": 26,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 49,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285010275",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "468",
"routeLongName": "Express Pierrefonds / Gouin",
"shapeLink": "/storage/shapes/stm/4680086.json",
"shapeId": "4680086",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:15:04",
"meta": {},
"updatedAt": "2025-06-05 08:07:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 122,
"ref": "28021",
"isActive": false,
"label": "28021",
"timestamp": 1749558062,
"tripId": "284738288",
"routeId": "171",
"startTime": "07:02:00",
"position": {
"lat": 45.53157,
"lon": -73.72532
},
"bearing": 266,
"speed": 3,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "284738288",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "171",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/1710232.json",
"shapeId": "1710232",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-10 08:32:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1881,
"ref": "28022",
"isActive": false,
"label": "28022",
"timestamp": 1749732697,
"tripId": "284728131",
"routeId": "197",
"startTime": "08:12:00",
"position": {
"lat": 45.53201,
"lon": -73.59759
},
"bearing": 213,
"speed": 25,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 38,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "284728131",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "197",
"routeLongName": "Rosemont",
"shapeLink": "/storage/shapes/stm/1970141.json",
"shapeId": "1970141",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:50:15",
"meta": {},
"updatedAt": "2025-06-12 08:59:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2650,
"ref": "28023",
"isActive": false,
"label": "28023",
"timestamp": 1681904827,
"tripId": "264074663",
"routeId": "64",
"startTime": "07:26:00",
"position": {
"lat": 45.513973236084,
"lon": -73.683944702148
},
"bearing": 37,
"speed": 12,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 20,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "64",
"routeLongName": "Grenet",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-26 11:18:07",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 123,
"ref": "28024",
"isActive": false,
"label": "28024",
"timestamp": 1749674384,
"tripId": "285007518",
"routeId": "164",
"startTime": "16:05:00",
"position": {
"lat": 45.5081,
"lon": -73.737
},
"bearing": 224,
"speed": 37,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 47,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285007518",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "164",
"routeLongName": "Dudemaine",
"shapeLink": "/storage/shapes/stm/1640159.json",
"shapeId": "1640159",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-11 16:41:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 124,
"ref": "28025",
"isActive": false,
"label": "28025",
"timestamp": 1726582746,
"tripId": "279632292",
"routeId": "139",
"startTime": "09:30:00",
"position": {
"lat": 45.54796,
"lon": -73.53417
},
"bearing": 116,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 43,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "139",
"routeLongName": "Pie-IX",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-17 10:30:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1737,
"ref": "28026",
"isActive": false,
"label": "28026",
"timestamp": 1749704131,
"tripId": "285008279",
"routeId": "202",
"startTime": "00:00:00",
"position": {
"lat": 45.46717,
"lon": -73.83018
},
"bearing": 235,
"speed": 44,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 69,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008279",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "202",
"routeLongName": "Dawson",
"shapeLink": "/storage/shapes/stm/2020185.json",
"shapeId": "2020185",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:30:08",
"meta": {},
"updatedAt": "2025-06-12 00:57:05",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1267,
"ref": "28027",
"isActive": false,
"label": "28027",
"timestamp": 1594327393,
"tripId": "219805916",
"routeId": "174",
"startTime": "16:39:00",
"position": {
"lat": 45.47518,
"lon": -73.72916
},
"bearing": 41,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 7,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "174",
"routeLongName": "Côte-Vertu-Ouest",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:20:02",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 125,
"ref": "28028",
"isActive": false,
"label": "28028",
"timestamp": 1721045519,
"tripId": "276292764",
"routeId": "72",
"startTime": "07:38:00",
"position": {
"lat": 45.47374,
"lon": -73.78659
},
"bearing": 235,
"speed": 16,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-07-15 08:22:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1739,
"ref": "28029",
"isActive": false,
"label": "28029",
"timestamp": 1721658041,
"tripId": "276293342",
"routeId": "68",
"startTime": "09:21:00",
"position": {
"lat": 45.45549,
"lon": -73.93454
},
"bearing": 202,
"speed": 26,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 79,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "68",
"routeLongName": "Pierrefonds",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:30:08",
"meta": {},
"updatedAt": "2024-07-22 10:22:05",
"agencyName": "Société de transport de Montréal"
},
{
"id": 126,
"ref": "28030",
"isActive": true,
"label": "28030",
"timestamp": 1749738646,
"tripId": "284739513",
"routeId": "45",
"startTime": "10:29:00",
"position": {
"lat": 45.52313,
"lon": -73.55353
},
"bearing": 296,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "284739513",
"headsign": "Nord",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "45",
"routeLongName": "Papineau",
"shapeLink": "/storage/shapes/stm/450176.json",
"shapeId": "450176",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-12 10:31:05",
"agencyName": "Société de transport de Montréal"
},
{
"id": 127,
"ref": "28031",
"isActive": false,
"label": "28031",
"timestamp": 1749732590,
"tripId": "284727577",
"routeId": "129",
"startTime": "07:46:00",
"position": {
"lat": 45.50822,
"lon": -73.55627
},
"bearing": 29,
"speed": 32,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 42,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "284727577",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "129",
"routeLongName": "Côte-Sainte-Catherine",
"shapeLink": "/storage/shapes/stm/1290221.json",
"shapeId": "1290221",
"serviceId": "25M-H55M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-12 09:00:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 6811,
"ref": "28032",
"isActive": false,
"label": "28032",
"timestamp": 1594327398,
"tripId": "219804176",
"routeId": "209",
"startTime": "16:26:00",
"position": {
"lat": 45.43971,
"lon": -73.74969
},
"bearing": 259,
"speed": 19,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 8,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "209",
"routeLongName": "Des Sources",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-03-09 15:08:03",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 128,
"ref": "28033",
"isActive": true,
"label": "28033",
"timestamp": 1749738640,
"tripId": "285007658",
"routeId": "170",
"startTime": "10:10:00",
"position": {
"lat": 45.51781,
"lon": -73.68829
},
"bearing": 132,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 26,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285007658",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "170",
"routeLongName": "Keller",
"shapeLink": "/storage/shapes/stm/1700177.json",
"shapeId": "1700177",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-12 10:31:05",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2539,
"ref": "28034",
"isActive": false,
"label": "28034",
"timestamp": 1722461980,
"tripId": "276295224",
"routeId": "202",
"startTime": "17:12:00",
"position": {
"lat": 45.50809,
"lon": -73.67269
},
"bearing": 298,
"speed": 25,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "202",
"routeLongName": "Dawson",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-25 10:56:04",
"meta": {},
"updatedAt": "2024-07-31 17:50:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1454,
"ref": "28035",
"isActive": false,
"label": "28035",
"timestamp": 1706792399,
"tripId": "270704136",
"routeId": "72",
"startTime": "07:27:00",
"position": {
"lat": 45.47253,
"lon": -73.78906
},
"bearing": 236,
"speed": 23,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:50:03",
"meta": {},
"updatedAt": "2024-02-01 08:11:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 7254,
"ref": "28036",
"isActive": false,
"label": "28036",
"timestamp": 1594327398,
"tripId": "219805290",
"routeId": "409",
"startTime": "15:57:00",
"position": {
"lat": 45.50624,
"lon": -73.66939
},
"bearing": 306,
"speed": 24,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 46,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "409",
"routeLongName": "Express Des Sources",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-05-16 22:53:03",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2068,
"ref": "28037",
"isActive": false,
"label": "28037",
"timestamp": 1727263414,
"tripId": "279027880",
"routeId": "209",
"startTime": "06:39:00",
"position": {
"lat": 45.45469,
"lon": -73.75305
},
"bearing": 8,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 41,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "209",
"routeLongName": "Des Sources",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:20:22",
"meta": {},
"updatedAt": "2024-09-25 07:34:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1330,
"ref": "28038",
"isActive": false,
"label": "28038",
"timestamp": 1721218003,
"tripId": "276293490",
"routeId": "200",
"startTime": "07:27:00",
"position": {
"lat": 45.40409,
"lon": -73.9388
},
"bearing": 245,
"speed": 34,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 45,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "200",
"routeLongName": "Sainte-Anne-de-Bellevue",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:30:03",
"meta": {},
"updatedAt": "2024-07-17 08:17:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1331,
"ref": "28039",
"isActive": false,
"label": "28039",
"timestamp": 1718119642,
"tripId": "274241455",
"routeId": "202",
"startTime": "10:42:00",
"position": {
"lat": 45.44864,
"lon": -73.74368
},
"bearing": 269,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 34,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "202",
"routeLongName": "Dawson",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:30:03",
"meta": {},
"updatedAt": "2024-06-11 11:29:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 129,
"ref": "28040",
"isActive": false,
"label": "28040",
"timestamp": 1749729986,
"tripId": "285007779",
"routeId": "171",
"startTime": "07:19:00",
"position": {
"lat": 45.50232,
"lon": -73.70763
},
"bearing": 142,
"speed": 17,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285007779",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "171",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/1710232.json",
"shapeId": "1710232",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-12 08:15:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 7429,
"ref": "28041",
"isActive": false,
"label": "28041",
"timestamp": 1749737299,
"tripId": "285007435",
"routeId": "164",
"startTime": "09:28:00",
"position": {
"lat": 45.50366,
"lon": -73.73418
},
"bearing": 225,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 46,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285007435",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "164",
"routeLongName": "Dudemaine",
"shapeLink": "/storage/shapes/stm/1640159.json",
"shapeId": "1640159",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-08-13 06:25:03",
"meta": {},
"updatedAt": "2025-06-12 10:12:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1711,
"ref": "28042",
"isActive": false,
"label": "28042",
"timestamp": 1749733965,
"tripId": "285010449",
"routeId": "968",
"startTime": "08:50:00",
"position": {
"lat": 45.51362,
"lon": -73.68377
},
"bearing": 335,
"speed": 14,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285010449",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "968",
"routeLongName": "Trainbus Roxboro / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/9680032.json",
"shapeId": "9680032",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:25:07",
"meta": {},
"updatedAt": "2025-06-12 09:23:05",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1740,
"ref": "28043",
"isActive": false,
"label": "28043",
"timestamp": 1749732478,
"tripId": "287648408",
"routeId": "174",
"startTime": "08:22:00",
"position": {
"lat": 45.47256,
"lon": -73.73528
},
"bearing": 222,
"speed": 15,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 13,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "174",
"routeLongName": "Côte-Vertu-Ouest",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:30:09",
"meta": {},
"updatedAt": "2025-06-12 08:59:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 130,
"ref": "28044",
"isActive": false,
"label": "28044",
"timestamp": 1749730346,
"tripId": "285008204",
"routeId": "196",
"startTime": "07:16:00",
"position": {
"lat": 45.43977,
"lon": -73.69164
},
"bearing": 269,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 60,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008204",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "196",
"routeLongName": "Parc-Industriel-Lachine",
"shapeLink": "/storage/shapes/stm/1960210.json",
"shapeId": "1960210",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-12 08:23:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 131,
"ref": "28045",
"isActive": false,
"label": "28045",
"timestamp": 1718973140,
"tripId": "276295466",
"routeId": "968",
"startTime": "08:10:00",
"position": {
"lat": 45.51292,
"lon": -73.68433
},
"bearing": 42,
"speed": 1,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "968",
"routeLongName": "Trainbus Roxboro / Côte-Vertu",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-06-21 08:36:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3043,
"ref": "28046",
"isActive": false,
"label": "28046",
"timestamp": 1749731554,
"tripId": "286571482",
"routeId": "12",
"startTime": "07:55:00",
"position": {
"lat": 45.46263,
"lon": -73.5634
},
"bearing": 257,
"speed": 21,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 30,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286571482",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "12",
"routeLongName": "Île-des-Soeurs",
"shapeLink": "/storage/shapes/stm/120115.json",
"shapeId": "120115",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-12-12 21:30:13",
"meta": {},
"updatedAt": "2025-06-12 08:43:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 132,
"ref": "28047",
"isActive": false,
"label": "28047",
"timestamp": 1749731577,
"tripId": "284737783",
"routeId": "460",
"startTime": "07:01:00",
"position": {
"lat": 45.44974,
"lon": -73.74491
},
"bearing": 86,
"speed": 24,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 39,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "284737783",
"headsign": "Ouest destination Gare Dorval Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "460",
"routeLongName": "Express Métropolitaine",
"shapeLink": "/storage/shapes/stm/4600354.json",
"shapeId": "4600354",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-12 08:44:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 133,
"ref": "28048",
"isActive": true,
"label": "28048",
"timestamp": 1749738632,
"tripId": "286570763",
"routeId": "71",
"startTime": "10:11:00",
"position": {
"lat": 45.47974,
"lon": -73.55314
},
"bearing": 181,
"speed": 7,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 16,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286570763",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "71",
"routeLongName": "Pointe-Saint-Charles",
"shapeLink": "/storage/shapes/stm/710084.json",
"shapeId": "710084",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-12 10:31:05",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1638,
"ref": "28049",
"isActive": false,
"label": "28049",
"timestamp": 1594327398,
"tripId": "218428120",
"routeId": "58",
"startTime": "15:53:00",
"position": {
"lat": 45.43682,
"lon": -73.59048
},
"bearing": 195,
"speed": 19,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 23,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:15:08",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1456,
"ref": "28050",
"isActive": false,
"label": "28050",
"timestamp": 1594327398,
"tripId": "218426887",
"routeId": "425",
"startTime": "16:42:00",
"position": {
"lat": 45.48369,
"lon": -73.57974
},
"bearing": 47,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "425",
"routeLongName": "Express Anse-à-l'Orme",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:50:04",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 134,
"ref": "28051",
"isActive": false,
"label": "28051",
"timestamp": 1732075290,
"tripId": "280421033",
"routeId": "107",
"startTime": "23:12:00",
"position": {
"lat": 45.42649,
"lon": -73.61176
},
"bearing": 303,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "107",
"routeLongName": "Verdun",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-11-19 23:08:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 135,
"ref": "28052",
"isActive": false,
"label": "28052",
"timestamp": 1749737474,
"tripId": "286573789",
"routeId": "101",
"startTime": "09:28:00",
"position": {
"lat": 45.47961,
"lon": -73.57774
},
"bearing": 26,
"speed": 1,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 45,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286573789",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "101",
"routeLongName": "Saint-Patrick",
"shapeLink": "/storage/shapes/stm/1010135.json",
"shapeId": "1010135",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-12 10:22:05",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2070,
"ref": "28053",
"isActive": false,
"label": "28053",
"timestamp": 1725565048,
"tripId": "280229512",
"routeId": "114",
"startTime": "15:41:00",
"position": {
"lat": 45.44202,
"lon": -73.63378
},
"bearing": 152,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "114",
"routeLongName": "Angrignon",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:20:23",
"meta": {},
"updatedAt": "2024-09-05 15:39:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1969,
"ref": "28054",
"isActive": false,
"label": "28054",
"timestamp": 1728067411,
"tripId": "279632372",
"routeId": "48",
"startTime": null,
"position": {
"lat": 45.66189,
"lon": -73.53839
},
"bearing": 235,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:00:20",
"meta": {},
"updatedAt": "2024-10-04 14:45:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2794,
"ref": "28055",
"isActive": false,
"label": "28055",
"timestamp": 1732287197,
"tripId": "280420889",
"routeId": "107",
"startTime": "09:09:00",
"position": {
"lat": 45.50122,
"lon": -73.56022
},
"bearing": 299,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 48,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "107",
"routeLongName": "Verdun",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-29 20:44:18",
"meta": {},
"updatedAt": "2024-11-22 09:56:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1248,
"ref": "28056",
"isActive": false,
"label": "28056",
"timestamp": 1730414417,
"tripId": "280423196",
"routeId": "425",
"startTime": "17:42:00",
"position": {
"lat": 45.43761,
"lon": -73.90102
},
"bearing": 276,
"speed": 25,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "425",
"routeLongName": "Express Anse-à-l'Orme",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:15:04",
"meta": {},
"updatedAt": "2024-10-31 18:51:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 136,
"ref": "28057",
"isActive": false,
"label": "28057",
"timestamp": 1749734099,
"tripId": "286573508",
"routeId": "198",
"startTime": "07:59:00",
"position": {
"lat": 45.44717,
"lon": -73.60447
},
"bearing": 254,
"speed": 16,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 56,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286573508",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "198",
"routeLongName": "Broadway",
"shapeLink": "/storage/shapes/stm/1980012.json",
"shapeId": "1980012",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-12 09:24:05",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3368,
"ref": "28058",
"isActive": false,
"label": "28058",
"timestamp": 1594327394,
"tripId": "218416516",
"routeId": "44",
"startTime": "16:12:00",
"position": {
"lat": 45.59614,
"lon": -73.55963
},
"bearing": 111,
"speed": 19,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "44",
"routeLongName": "Armand-Bombardier",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-02-19 17:17:03",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1713,
"ref": "28059",
"isActive": false,
"label": "28059",
"timestamp": 1731586871,
"tripId": "280240171",
"routeId": "460",
"startTime": "06:21:00",
"position": {
"lat": 45.55083,
"lon": -73.62944
},
"bearing": 276,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 15,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "460",
"routeLongName": "Express Métropolitaine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:25:08",
"meta": {},
"updatedAt": "2024-11-14 07:23:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1332,
"ref": "28060",
"isActive": false,
"label": "28060",
"timestamp": 1729721985,
"tripId": "282948814",
"routeId": "809",
"startTime": "18:02:00",
"position": {
"lat": 45.54597,
"lon": -73.65086
},
"bearing": 10,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:30:03",
"meta": {},
"updatedAt": "2024-10-23 18:21:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1883,
"ref": "28061",
"isActive": false,
"label": "28061",
"timestamp": 1749736877,
"tripId": "286574413",
"routeId": "57",
"startTime": "09:36:00",
"position": {
"lat": 45.48948,
"lon": -73.58488
},
"bearing": 123,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 23,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286574413",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "57",
"routeLongName": "Charlevoix",
"shapeLink": "/storage/shapes/stm/570103.json",
"shapeId": "570103",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 11:50:17",
"meta": {},
"updatedAt": "2025-06-12 10:12:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 137,
"ref": "28062",
"isActive": false,
"label": "28062",
"timestamp": 1749733839,
"tripId": "286571053",
"routeId": "90",
"startTime": "08:19:00",
"position": {
"lat": 45.48846,
"lon": -73.58552
},
"bearing": 40,
"speed": 31,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 53,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "286571053",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "90",
"routeLongName": "Saint-Jacques",
"shapeLink": "/storage/shapes/stm/900252.json",
"shapeId": "900252",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-12 09:13:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 138,
"ref": "28063",
"isActive": false,
"label": "28063",
"timestamp": 1594327399,
"tripId": "218428182",
"routeId": "61",
"startTime": "16:29:00",
"position": {
"lat": 45.4894,
"lon": -73.55714
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 13,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "61",
"routeLongName": "Wellington",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2047,
"ref": "28064",
"isActive": false,
"label": "28064",
"timestamp": 1719980161,
"tripId": "275639400",
"routeId": "113",
"startTime": "23:45:00",
"position": {
"lat": 45.42508,
"lon": -73.64851
},
"bearing": 14,
"speed": 6,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 36,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "113",
"routeLongName": "Lapierre",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:15:20",
"meta": {},
"updatedAt": "2024-07-03 00:22:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2202,
"ref": "28065",
"isActive": false,
"label": "28065",
"timestamp": 1745428425,
"tripId": "914606",
"routeId": "171",
"startTime": "12:07:00",
"position": {
"lat": 45.55573,
"lon": -73.6678
},
"bearing": 23,
"speed": 28,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "171",
"routeLongName": "Henri-Bourassa",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 18:05:06",
"meta": {},
"updatedAt": "2025-04-23 13:15:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2728,
"ref": "28066",
"isActive": false,
"label": "28066",
"timestamp": 1697084751,
"tripId": "271459320",
"routeId": "45",
"startTime": "23:49:00",
"position": {
"lat": 45.57355,
"lon": -73.65947
},
"bearing": 19,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 42,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "45",
"routeLongName": "Papineau",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-27 21:44:10",
"meta": {},
"updatedAt": "2023-10-12 00:37:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1970,
"ref": "28067",
"isActive": false,
"label": "28067",
"timestamp": 1728566764,
"tripId": "280229379",
"routeId": "35",
"startTime": "08:27:00",
"position": {
"lat": 45.50395,
"lon": -73.57139
},
"bearing": 305,
"speed": 16,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 45,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "35",
"routeLongName": "Griffintown",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:00:21",
"meta": {},
"updatedAt": "2024-10-10 09:37:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 822,
"ref": "28068",
"isActive": false,
"label": "28068",
"timestamp": 1594327400,
"tripId": "218429653",
"routeId": "107",
"startTime": "16:01:00",
"position": {
"lat": 45.46474,
"lon": -73.57117
},
"bearing": 183,
"speed": 2,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 30,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "107",
"routeLongName": "Verdun",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 01:13:09",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 139,
"ref": "28069",
"isActive": false,
"label": "28069",
"timestamp": 1749727255,
"tripId": "284737948",
"routeId": "10",
"startTime": "06:30:00",
"position": {
"lat": 45.52432,
"lon": -73.55279
},
"bearing": 195,
"speed": 8,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 32,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "284737948",
"headsign": "Sud",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "10",
"routeLongName": "De Lorimier",
"shapeLink": "/storage/shapes/stm/100075.json",
"shapeId": "100075",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-12 07:32:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 140,
"ref": "28070",
"isActive": false,
"label": "28070",
"timestamp": 1728340311,
"tripId": "279025829",
"routeId": "164",
"startTime": "17:30:00",
"position": {
"lat": 45.50425,
"lon": -73.73507
},
"bearing": 133,
"speed": 48,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 43,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "164",
"routeLongName": "Dudemaine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-10-07 18:33:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 141,
"ref": "28071",
"isActive": false,
"label": "28071",
"timestamp": 1730502512,
"tripId": "280473056",
"routeId": "72",
"startTime": "18:23:00",
"position": {
"lat": 45.5132,
"lon": -73.68271
},
"bearing": 252,
"speed": 16,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 37,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-11-01 19:19:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 142,
"ref": "28072",
"isActive": false,
"label": "28072",
"timestamp": 1749729706,
"tripId": "285008196",
"routeId": "196",
"startTime": "07:06:00",
"position": {
"lat": 45.43882,
"lon": -73.69212
},
"bearing": 354,
"speed": 37,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 57,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008196",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "196",
"routeLongName": "Parc-Industriel-Lachine",
"shapeLink": "/storage/shapes/stm/1960210.json",
"shapeId": "1960210",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-12 08:03:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 143,
"ref": "28073",
"isActive": false,
"label": "28073",
"timestamp": 1749729420,
"tripId": "285010280",
"routeId": "72",
"startTime": "07:15:00",
"position": {
"lat": 45.47265,
"lon": -73.78881
},
"bearing": 235,
"speed": 30,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285010280",
"headsign": "Ouest destination 2525 Avro",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": "/storage/shapes/stm/720174.json",
"shapeId": "720174",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-12 08:08:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1333,
"ref": "28074",
"isActive": false,
"label": "28074",
"timestamp": 1749506817,
"tripId": "285007368",
"routeId": "117",
"startTime": "17:44:00",
"position": {
"lat": 45.53565,
"lon": -73.71469
},
"bearing": 243,
"speed": 21,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285007368",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "117",
"routeLongName": "O'Brien",
"shapeLink": "/storage/shapes/stm/1170071.json",
"shapeId": "1170071",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:30:03",
"meta": {},
"updatedAt": "2025-06-09 18:18:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1971,
"ref": "28075",
"isActive": false,
"label": "28075",
"timestamp": 1594327396,
"tripId": "219807110",
"routeId": "196",
"startTime": "16:38:00",
"position": {
"lat": 45.44113,
"lon": -73.70519
},
"bearing": 289,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 7,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "196",
"routeLongName": "Parc-Industriel-Lachine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:00:21",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1673,
"ref": "28076",
"isActive": true,
"label": "28076",
"timestamp": 1749738090,
"tripId": "285009586",
"routeId": "215",
"startTime": "09:35:00",
"position": {
"lat": 45.46726,
"lon": -73.83
},
"bearing": 234,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 51,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285009586",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "215",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/2150155.json",
"shapeId": "2150155",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:20:09",
"meta": {},
"updatedAt": "2025-06-12 10:31:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 144,
"ref": "28077",
"isActive": false,
"label": "28077",
"timestamp": 1720701016,
"tripId": "276294499",
"routeId": "72",
"startTime": "07:54:00",
"position": {
"lat": 45.4726,
"lon": -73.78893
},
"bearing": 236,
"speed": 32,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-07-11 08:40:32",
"agencyName": "Société de transport de Montréal"
},
{
"id": 145,
"ref": "28078",
"isActive": false,
"label": "28078",
"timestamp": 1749733211,
"tripId": "285010484",
"routeId": "968",
"startTime": "08:30:00",
"position": {
"lat": 45.51271,
"lon": -73.68459
},
"bearing": 41,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285010484",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "968",
"routeLongName": "Trainbus Roxboro / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/9680032.json",
"shapeId": "9680032",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-12 09:11:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2476,
"ref": "28079",
"isActive": false,
"label": "28079",
"timestamp": 1732718467,
"tripId": "280422930",
"routeId": "405",
"startTime": "08:53:00",
"position": {
"lat": 45.48236,
"lon": -73.58186
},
"bearing": 55,
"speed": 36,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "405",
"routeLongName": "Express Bord-du-Lac",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-23 10:56:04",
"meta": {},
"updatedAt": "2024-11-27 09:52:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1639,
"ref": "28080",
"isActive": false,
"label": "28080",
"timestamp": 1741010382,
"tripId": "282604565",
"routeId": "72",
"startTime": "07:45:00",
"position": {
"lat": 45.48611,
"lon": -73.7398
},
"bearing": 242,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 7,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:15:09",
"meta": {},
"updatedAt": "2025-03-03 09:01:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1531,
"ref": "28081",
"isActive": false,
"label": "28081",
"timestamp": 1748596288,
"tripId": "286571972",
"routeId": "113",
"startTime": "04:45:00",
"position": {
"lat": 45.44675,
"lon": -73.60439
},
"bearing": 272,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286571972",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "113",
"routeLongName": "Lapierre",
"shapeLink": "/storage/shapes/stm/1130162.json",
"shapeId": "1130162",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 11:00:05",
"meta": {},
"updatedAt": "2025-05-30 05:13:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3301,
"ref": "28082",
"isActive": false,
"label": "28082",
"timestamp": 1726693611,
"tripId": "279633496",
"routeId": "193",
"startTime": "16:12:00",
"position": {
"lat": 45.60663,
"lon": -73.57185
},
"bearing": 55,
"speed": 9,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 48,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "193",
"routeLongName": "Jarry",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-01-28 10:12:04",
"meta": {},
"updatedAt": "2024-09-18 17:17:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1776,
"ref": "28083",
"isActive": false,
"label": "28083",
"timestamp": 1729031096,
"tripId": "279633476",
"routeId": "193",
"startTime": "17:36:00",
"position": {
"lat": 45.60639,
"lon": -73.57154
},
"bearing": 138,
"speed": 29,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 48,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
5
],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "193",
"routeLongName": "Jarry",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:35:09",
"meta": {},
"updatedAt": "2024-10-15 18:36:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2465,
"ref": "28084",
"isActive": false,
"label": "28084",
"timestamp": 1749737801,
"tripId": "286571200",
"routeId": "101",
"startTime": "09:29:00",
"position": {
"lat": 45.4274,
"lon": -73.66241
},
"bearing": 358,
"speed": 32,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 40,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286571200",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "101",
"routeLongName": "Saint-Patrick",
"shapeLink": "/storage/shapes/stm/1010134.json",
"shapeId": "1010134",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 22:32:16",
"meta": {},
"updatedAt": "2025-06-12 10:18:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1230,
"ref": "28085",
"isActive": false,
"label": "28085",
"timestamp": 1594327405,
"tripId": "218417815",
"routeId": "186",
"startTime": "16:28:00",
"position": {
"lat": 45.65539,
"lon": -73.50977
},
"bearing": 14,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 25,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "186",
"routeLongName": "Sherbrooke-Est",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:10:02",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1857,
"ref": "28086",
"isActive": false,
"label": "28086",
"timestamp": 1594327398,
"tripId": "218379539",
"routeId": "485",
"startTime": "16:46:00",
"position": {
"lat": 45.484,
"lon": -73.57922
},
"bearing": 54,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "485",
"routeLongName": "Express Antoine-Faucon",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:45:19",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1858,
"ref": "28087",
"isActive": false,
"label": "28087",
"timestamp": 1729118731,
"tripId": "279632683",
"routeId": "440",
"startTime": "18:16:00",
"position": {
"lat": 45.55096,
"lon": -73.65643
},
"bearing": 208,
"speed": 14,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 17,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "440",
"routeLongName": "Express Charleroi",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:45:19",
"meta": {},
"updatedAt": "2024-10-16 18:52:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 7106,
"ref": "28088",
"isActive": false,
"label": "28088",
"timestamp": 1745412601,
"tripId": "286573889",
"routeId": "112",
"startTime": "08:16:00",
"position": {
"lat": 45.45654,
"lon": -73.58137
},
"bearing": 194,
"speed": 28,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 41,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286573889",
"headsign": "Est",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "112",
"routeLongName": "Airlie",
"shapeLink": "/storage/shapes/stm/1120177.json",
"shapeId": "1120177",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2020-04-16 21:01:03",
"meta": {},
"updatedAt": "2025-04-23 09:00:12",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3320,
"ref": "28089",
"isActive": false,
"label": "28089",
"timestamp": 1723679653,
"tripId": "275640243",
"routeId": "191",
"startTime": "19:00:00",
"position": {
"lat": 45.446,
"lon": -73.7412
},
"bearing": 357,
"speed": 7,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 69,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": null,
"routeTextColor": null,
"routeShortName": null,
"routeLongName": null,
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-02-04 00:40:03",
"meta": {},
"updatedAt": "2024-08-14 20:05:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1153,
"ref": "28090",
"isActive": false,
"label": "28090",
"timestamp": 1594327395,
"tripId": "219804744",
"routeId": "68",
"startTime": "16:26:00",
"position": {
"lat": 45.46277,
"lon": -73.88445
},
"bearing": 55,
"speed": 16,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "68",
"routeLongName": "Pierrefonds",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 09:35:04",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 146,
"ref": "28091",
"isActive": false,
"label": "28091",
"timestamp": 1701473196,
"tripId": "271479112",
"routeId": "440",
"startTime": null,
"position": {
"lat": 45.6054,
"lon": -73.61931
},
"bearing": 232,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "440",
"routeLongName": "Express Charleroi",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-12-01 18:28:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 147,
"ref": "28092",
"isActive": false,
"label": "28092",
"timestamp": 1749728635,
"tripId": "285008459",
"routeId": "201",
"startTime": "06:34:00",
"position": {
"lat": 45.4654,
"lon": -73.83143
},
"bearing": 339,
"speed": 8,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 67,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008459",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "201",
"routeLongName": "Saint-Charles / Saint-Jean",
"shapeLink": "/storage/shapes/stm/2010213.json",
"shapeId": "2010213",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-12 07:47:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1497,
"ref": "28093",
"isActive": true,
"label": "28093",
"timestamp": 1749738629,
"tripId": "286573944",
"routeId": "425",
"startTime": "09:40:00",
"position": {
"lat": 45.48212,
"lon": -73.58485
},
"bearing": 124,
"speed": 5,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 33,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
4
],
"trip": {
"id": "286573944",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "425",
"routeLongName": "Express Anse-à-l'Orme",
"shapeLink": "/storage/shapes/stm/4250077.json",
"shapeId": "4250077",
"serviceId": "25M-H56M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 10:55:03",
"meta": {},
"updatedAt": "2025-06-12 10:31:05",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1674,
"ref": "28094",
"isActive": false,
"label": "28094",
"timestamp": 1730901397,
"tripId": "280418907",
"routeId": "35",
"startTime": "07:53:00",
"position": {
"lat": 45.44712,
"lon": -73.60403
},
"bearing": 269,
"speed": 15,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 44,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "35",
"routeLongName": "Griffintown",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:20:09",
"meta": {},
"updatedAt": "2024-11-06 09:05:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 148,
"ref": "28095",
"isActive": false,
"label": "28095",
"timestamp": 1728475785,
"tripId": "282910609",
"routeId": "121",
"startTime": "07:40:00",
"position": {
"lat": 45.49735,
"lon": -73.70881
},
"bearing": 312,
"speed": 36,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 25,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "121",
"routeLongName": "Sauvé / Côte-Vertu",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-10-09 08:20:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1823,
"ref": "28096",
"isActive": false,
"label": "28096",
"timestamp": 1725660579,
"tripId": "279028437",
"routeId": "401",
"startTime": "17:44:00",
"position": {
"lat": 45.4744,
"lon": -73.87203
},
"bearing": 13,
"speed": 43,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 30,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "401",
"routeLongName": "Express Saint-Charles",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:40:20",
"meta": {},
"updatedAt": "2024-09-06 18:11:05",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3299,
"ref": "28097",
"isActive": false,
"label": "28097",
"timestamp": 1594327405,
"tripId": "219804626",
"routeId": "468",
"startTime": "16:14:00",
"position": {
"lat": 45.50568,
"lon": -73.78976
},
"bearing": 106,
"speed": 47,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 24,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "468",
"routeLongName": "Express Pierrefonds / Gouin",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-01-27 21:29:04",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3206,
"ref": "28098",
"isActive": false,
"label": "28098",
"timestamp": 1731588156,
"tripId": "280471615",
"routeId": "475",
"startTime": "07:00:00",
"position": {
"lat": 45.51315,
"lon": -73.68277
},
"bearing": 41,
"speed": 15,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 6,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "475",
"routeLongName": "Express Dollard-des-Ormeaux",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-01-07 10:34:14",
"meta": {},
"updatedAt": "2024-11-14 07:50:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 149,
"ref": "28099",
"isActive": false,
"label": "28099",
"timestamp": 1749727809,
"tripId": "285009297",
"routeId": "200",
"startTime": "06:57:00",
"position": {
"lat": 45.40485,
"lon": -73.93672
},
"bearing": 238,
"speed": 43,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 45,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285009297",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "200",
"routeLongName": "Sainte-Anne-de-Bellevue",
"shapeLink": "/storage/shapes/stm/2000098.json",
"shapeId": "2000098",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-12 07:37:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1742,
"ref": "28100",
"isActive": false,
"label": "28100",
"timestamp": 1749734596,
"tripId": "285006733",
"routeId": "196",
"startTime": "08:30:00",
"position": {
"lat": 45.43977,
"lon": -73.69164
},
"bearing": 266,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 60,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285006733",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "196",
"routeLongName": "Parc-Industriel-Lachine",
"shapeLink": "/storage/shapes/stm/1960210.json",
"shapeId": "1960210",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:30:10",
"meta": {},
"updatedAt": "2025-06-12 09:34:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 150,
"ref": "28101",
"isActive": false,
"label": "28101",
"timestamp": 1749679225,
"tripId": "285007474",
"routeId": "164",
"startTime": "17:07:00",
"position": {
"lat": 45.50355,
"lon": -73.73402
},
"bearing": 240,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 46,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285007474",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "164",
"routeLongName": "Dudemaine",
"shapeLink": "/storage/shapes/stm/1640159.json",
"shapeId": "1640159",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-11 18:03:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 151,
"ref": "28102",
"isActive": false,
"label": "28102",
"timestamp": 1730460944,
"tripId": "280470761",
"routeId": "72",
"startTime": "06:55:00",
"position": {
"lat": 45.46088,
"lon": -73.81861
},
"bearing": 234,
"speed": 14,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 34,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-11-01 07:37:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 152,
"ref": "28103",
"isActive": false,
"label": "28103",
"timestamp": 1709072128,
"tripId": "270706117",
"routeId": "70",
"startTime": "16:48:00",
"position": {
"lat": 45.49227,
"lon": -73.73855
},
"bearing": 302,
"speed": 41,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 28,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "70",
"routeLongName": "Bois-Franc",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-02-27 17:20:37",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1382,
"ref": "28104",
"isActive": false,
"label": "28104",
"timestamp": 1594327388,
"tripId": "218379533",
"routeId": "485",
"startTime": "16:15:00",
"position": {
"lat": 45.44788,
"lon": -73.74619
},
"bearing": 278,
"speed": 49,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "485",
"routeLongName": "Express Antoine-Faucon",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:40:03",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1972,
"ref": "28105",
"isActive": false,
"label": "28105",
"timestamp": 1702943129,
"tripId": "271596342",
"routeId": "225",
"startTime": "18:16:00",
"position": {
"lat": 45.48163,
"lon": -73.7788
},
"bearing": 88,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 16,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "225",
"routeLongName": "Hymus",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:00:23",
"meta": {},
"updatedAt": "2023-12-18 18:47:05",
"agencyName": "Société de transport de Montréal"
},
{
"id": 153,
"ref": "28106",
"isActive": false,
"label": "28106",
"timestamp": 1749727669,
"tripId": "284738315",
"routeId": "54",
"startTime": "06:36:00",
"position": {
"lat": 45.57682,
"lon": -73.63851
},
"bearing": 208,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 43,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "284738315",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "54",
"routeLongName": "Charland / Chabanel",
"shapeLink": "/storage/shapes/stm/540154.json",
"shapeId": "540154",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-12 07:30:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 154,
"ref": "28107",
"isActive": true,
"label": "28107",
"timestamp": 1749738640,
"tripId": "284739316",
"routeId": "48",
"startTime": "09:51:00",
"position": {
"lat": 45.58415,
"lon": -73.65036
},
"bearing": 196,
"speed": 20,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 45,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "284739316",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": "/storage/shapes/stm/480411.json",
"shapeId": "480411",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-12 10:31:05",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2100,
"ref": "28108",
"isActive": false,
"label": "28108",
"timestamp": 1749729815,
"tripId": "287648415",
"routeId": "419",
"startTime": "07:40:00",
"position": {
"lat": 45.40783,
"lon": -73.94287
},
"bearing": 263,
"speed": 29,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "419",
"routeLongName": "Express John Abbott",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 12:30:26",
"meta": {},
"updatedAt": "2025-06-12 08:05:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 155,
"ref": "28109",
"isActive": false,
"label": "28109",
"timestamp": 1749073976,
"tripId": "285008313",
"routeId": "170",
"startTime": "17:24:00",
"position": {
"lat": 45.52636,
"lon": -73.73022
},
"bearing": 150,
"speed": 32,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 26,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008313",
"headsign": "Nord",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "170",
"routeLongName": "Keller",
"shapeLink": "/storage/shapes/stm/1700176.json",
"shapeId": "1700176",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-04 18:03:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3335,
"ref": "28110",
"isActive": false,
"label": "28110",
"timestamp": 1694775090,
"tripId": "268457755",
"routeId": "968",
"startTime": "06:30:00",
"position": {
"lat": 45.51302,
"lon": -73.68421
},
"bearing": 44,
"speed": 13,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "968",
"routeLongName": "Trainbus Roxboro / Côte-Vertu",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-02-07 16:40:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 156,
"ref": "28111",
"isActive": false,
"label": "28111",
"timestamp": 1728686483,
"tripId": "279028990",
"routeId": "968",
"startTime": "18:20:00",
"position": {
"lat": 45.51041,
"lon": -73.80437
},
"bearing": 299,
"speed": 35,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "968",
"routeLongName": "Trainbus Roxboro / Côte-Vertu",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-10-11 18:43:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 157,
"ref": "28112",
"isActive": false,
"label": "28112",
"timestamp": 1702387536,
"tripId": "271594785",
"routeId": "196",
"startTime": "07:45:00",
"position": {
"lat": 45.45224,
"lon": -73.7218
},
"bearing": 85,
"speed": 26,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 48,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "196",
"routeLongName": "Parc-Industriel-Lachine",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-12-12 08:27:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 158,
"ref": "28113",
"isActive": false,
"label": "28113",
"timestamp": 1749728411,
"tripId": "285008189",
"routeId": "196",
"startTime": "06:45:00",
"position": {
"lat": 45.43977,
"lon": -73.69151
},
"bearing": 268,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 60,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008189",
"headsign": "Sud",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "196",
"routeLongName": "Parc-Industriel-Lachine",
"shapeLink": "/storage/shapes/stm/1960210.json",
"shapeId": "1960210",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-12 07:51:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 159,
"ref": "28114",
"isActive": false,
"label": "28114",
"timestamp": 1594327404,
"tripId": "218376490",
"routeId": "105",
"startTime": "16:25:00",
"position": {
"lat": 45.4735,
"lon": -73.60494
},
"bearing": 38,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 19,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "105",
"routeLongName": "Sherbrooke",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2881,
"ref": "28115",
"isActive": false,
"label": "28115",
"timestamp": 1728513589,
"tripId": "279028444",
"routeId": "401",
"startTime": "18:04:00",
"position": {
"lat": 45.48308,
"lon": -73.86707
},
"bearing": 306,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 31,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "401",
"routeLongName": "Express Saint-Charles",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-03 22:50:14",
"meta": {},
"updatedAt": "2024-10-09 18:51:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2769,
"ref": "28116",
"isActive": false,
"label": "28116",
"timestamp": 1594327059,
"tripId": "218379764",
"routeId": "968",
"startTime": "16:35:00",
"position": {
"lat": 45.51292,
"lon": -73.68076
},
"bearing": 175,
"speed": 11,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 2,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "968",
"routeLongName": "Trainbus Roxboro / Côte-Vertu",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-28 22:28:12",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 160,
"ref": "28117",
"isActive": false,
"label": "28117",
"timestamp": 1749731208,
"tripId": "284738232",
"routeId": "469",
"startTime": "07:37:00",
"position": {
"lat": 45.55667,
"lon": -73.66747
},
"bearing": 213,
"speed": 7,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 18,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "284738232",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "469",
"routeLongName": "Express Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/4690081.json",
"shapeId": "4690081",
"serviceId": "25M-H58M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-12 08:37:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1885,
"ref": "28118",
"isActive": false,
"label": "28118",
"timestamp": 1749731048,
"tripId": "285009328",
"routeId": "208",
"startTime": "07:33:00",
"position": {
"lat": 45.46572,
"lon": -73.83126
},
"bearing": 159,
"speed": 12,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 52,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285009328",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "208",
"routeLongName": "Brunswick",
"shapeLink": "/storage/shapes/stm/2080106.json",
"shapeId": "2080106",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:50:20",
"meta": {},
"updatedAt": "2025-06-12 08:35:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2860,
"ref": "28119",
"isActive": false,
"label": "28119",
"timestamp": 1749728781,
"tripId": "285008351",
"routeId": "200",
"startTime": "07:07:00",
"position": {
"lat": 45.46592,
"lon": -73.83147
},
"bearing": 154,
"speed": 16,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 46,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008351",
"headsign": "Est",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "200",
"routeLongName": "Sainte-Anne-de-Bellevue",
"shapeLink": "/storage/shapes/stm/2000101.json",
"shapeId": "2000101",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-03 12:08:11",
"meta": {},
"updatedAt": "2025-06-12 07:57:12",
"agencyName": "Société de transport de Montréal"
},
{
"id": 161,
"ref": "28120",
"isActive": false,
"label": "28120",
"timestamp": 1594327399,
"tripId": "218379340",
"routeId": "470",
"startTime": "16:11:00",
"position": {
"lat": 45.46812,
"lon": -73.82964
},
"bearing": 322,
"speed": 39,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 5,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "470",
"routeLongName": "Express Pierrefonds",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 162,
"ref": "28121",
"isActive": false,
"label": "28121",
"timestamp": 1749732413,
"tripId": "285007451",
"routeId": "171",
"startTime": "07:55:00",
"position": {
"lat": 45.50215,
"lon": -73.70741
},
"bearing": 193,
"speed": 19,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285007451",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "171",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/1710232.json",
"shapeId": "1710232",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-12 08:54:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1154,
"ref": "28122",
"isActive": false,
"label": "28122",
"timestamp": 1594327399,
"tripId": "218417267",
"routeId": "141",
"startTime": "16:05:00",
"position": {
"lat": 45.612,
"lon": -73.55537
},
"bearing": 30,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 09:35:04",
"meta": {},
"updatedAt": "2024-09-09 22:57:03",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3189,
"ref": "28123",
"isActive": false,
"label": "28123",
"timestamp": 1730291806,
"tripId": "280422476",
"routeId": "112",
"startTime": "07:56:00",
"position": {
"lat": 45.4566,
"lon": -73.58223
},
"bearing": 11,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 41,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "112",
"routeLongName": "Airlie",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-01-01 17:14:05",
"meta": {},
"updatedAt": "2024-10-30 08:37:46",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1457,
"ref": "28124",
"isActive": false,
"label": "28124",
"timestamp": 1730209777,
"tripId": "280473125",
"routeId": "209",
"startTime": "09:05:00",
"position": {
"lat": 45.45486,
"lon": -73.75243
},
"bearing": 4,
"speed": 28,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 41,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "209",
"routeLongName": "Des Sources",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:50:04",
"meta": {},
"updatedAt": "2024-10-29 10:00:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 823,
"ref": "28125",
"isActive": false,
"label": "28125",
"timestamp": 1725051601,
"tripId": "279028932",
"routeId": "968",
"startTime": "16:30:00",
"position": {
"lat": 45.51006,
"lon": -73.81105
},
"bearing": 305,
"speed": 15,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "968",
"routeLongName": "Trainbus Roxboro / Côte-Vertu",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 01:13:10",
"meta": {},
"updatedAt": "2024-08-30 17:11:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 163,
"ref": "28126",
"isActive": false,
"label": "28126",
"timestamp": 1727385707,
"tripId": "279026646",
"routeId": "72",
"startTime": "16:14:00",
"position": {
"lat": 45.51415,
"lon": -73.68259
},
"bearing": 310,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 37,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-09-26 17:33:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2138,
"ref": "28127",
"isActive": false,
"label": "28127",
"timestamp": 1749729647,
"tripId": "285007938",
"routeId": "225",
"startTime": "07:16:00",
"position": {
"lat": 45.46569,
"lon": -73.83124
},
"bearing": 148,
"speed": 28,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 49,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285007938",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "225",
"routeLongName": "Hymus",
"shapeLink": "/storage/shapes/stm/2250139.json",
"shapeId": "2250139",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 12:45:27",
"meta": {},
"updatedAt": "2025-06-12 08:02:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 164,
"ref": "28128",
"isActive": false,
"label": "28128",
"timestamp": 1749729863,
"tripId": "285008456",
"routeId": "126",
"startTime": "07:52:00",
"position": {
"lat": 45.50727,
"lon": -73.70022
},
"bearing": 221,
"speed": 2,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 10,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [
8
],
"trip": {
"id": "285008456",
"headsign": "Ouest",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "126",
"routeLongName": "Thimens / Grenet",
"shapeLink": "/storage/shapes/stm/1260044.json",
"shapeId": "1260044",
"serviceId": "25M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2025-06-12 08:14:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 165,
"ref": "28129",
"isActive": false,
"label": "28129",
"timestamp": 1702043688,
"tripId": "271481290",
"routeId": "49",
"startTime": "08:01:00",
"position": {
"lat": 45.55659,
"lon": -73.66747
},
"bearing": 135,
"speed": 10,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 52,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "49",
"routeLongName": "Maurice-Duplessis",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-12-08 09:05:06",
"agencyName": "Société de transport de Montréal"
}
],
"links": {
"first": "https://api.transittracker.ca/v2/vehicles?page=1",
"last": "https://api.transittracker.ca/v2/vehicles?page=35",
"prev": null,
"next": "https://api.transittracker.ca/v2/vehicles?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 35,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "https://api.transittracker.ca/v2/vehicles?page=1",
"label": "1",
"active": true
},
{
"url": "https://api.transittracker.ca/v2/vehicles?page=2",
"label": "2",
"active": false
},
{
"url": "https://api.transittracker.ca/v2/vehicles?page=3",
"label": "3",
"active": false
},
{
"url": "https://api.transittracker.ca/v2/vehicles?page=4",
"label": "4",
"active": false
},
{
"url": "https://api.transittracker.ca/v2/vehicles?page=5",
"label": "5",
"active": false
},
{
"url": "https://api.transittracker.ca/v2/vehicles?page=6",
"label": "6",
"active": false
},
{
"url": "https://api.transittracker.ca/v2/vehicles?page=7",
"label": "7",
"active": false
},
{
"url": "https://api.transittracker.ca/v2/vehicles?page=8",
"label": "8",
"active": false
},
{
"url": "https://api.transittracker.ca/v2/vehicles?page=9",
"label": "9",
"active": false
},
{
"url": "https://api.transittracker.ca/v2/vehicles?page=10",
"label": "10",
"active": false
},
{
"url": null,
"label": "...",
"active": false
},
{
"url": "https://api.transittracker.ca/v2/vehicles?page=34",
"label": "34",
"active": false
},
{
"url": "https://api.transittracker.ca/v2/vehicles?page=35",
"label": "35",
"active": false
},
{
"url": "https://api.transittracker.ca/v2/vehicles?page=2",
"label": "Next »",
"active": false
}
],
"path": "https://api.transittracker.ca/v2/vehicles",
"per_page": 500,
"to": 500,
"total": 17460
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET v2/vehicles.geojson
Example request:
curl --request GET \
--get "https://api.transittracker.ca/v2/vehicles.geojson" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "Accept-Language: en"
$client = new \GuzzleHttp\Client();
$url = 'https://api.transittracker.ca/v2/vehicles.geojson';
$response = $client->get(
$url,
[
'headers' => [
'Content-Type' => 'application/json',
'Accept' => 'application/json',
'Accept-Language' => 'en',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://api.transittracker.ca/v2/vehicles.geojson'
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Accept-Language': 'en'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 30
x-ratelimit-remaining: 28
content-language: en
vary: Origin
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57852,
45.49535
]
},
"properties": {
"trip": {
"id": "286570790",
"shortName": null,
"headsign": "Nord",
"startTime": "09:55:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "710083"
},
"route": {
"id": "71",
"shortName": "71",
"longName": "Pointe-Saint-Charles",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "27520",
"label": "27520",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 302,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 111
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5818,
45.45704
]
},
"properties": {
"trip": {
"id": "286570902",
"shortName": null,
"headsign": "Est",
"startTime": "10:17:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "370158"
},
"route": {
"id": "37",
"shortName": "37",
"longName": "Jolicoeur",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "27534",
"label": "27534",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 93,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 15,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574409605,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 1110
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55353,
45.52313
]
},
"properties": {
"trip": {
"id": "284739513",
"shortName": null,
"headsign": "Nord",
"startTime": "10:29:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "450176"
},
"route": {
"id": "45",
"shortName": "45",
"longName": "Papineau",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "28030",
"label": "28030",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 296,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 126
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68829,
45.51781
]
},
"properties": {
"trip": {
"id": "285007658",
"shortName": null,
"headsign": "Sud",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1700177"
},
"route": {
"id": "170",
"shortName": "170",
"longName": "Keller",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "28033",
"label": "28033",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 132,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 26,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 128
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55314,
45.47974
]
},
"properties": {
"trip": {
"id": "286570763",
"shortName": null,
"headsign": "Sud",
"startTime": "10:11:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "710084"
},
"route": {
"id": "71",
"shortName": "71",
"longName": "Pointe-Saint-Charles",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "28048",
"label": "28048",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 181,
"odometer": 0,
"speed": 7
},
"agencyId": 1,
"currentStopSequence": 16,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 133
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83,
45.46726
]
},
"properties": {
"trip": {
"id": "285009586",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:35:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2150155"
},
"route": {
"id": "215",
"shortName": "215",
"longName": "Henri-Bourassa",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "28076",
"label": "28076",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 234,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 51,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574439609,
"lastSeenAt": 1749752490,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 1673
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58485,
45.48212
]
},
"properties": {
"trip": {
"id": "286573944",
"shortName": null,
"headsign": "Est",
"startTime": "09:40:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4250077"
},
"route": {
"id": "425",
"shortName": "425",
"longName": "Express Anse-à-l'Orme",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "28093",
"label": "28093",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 124,
"odometer": 0,
"speed": 5
},
"agencyId": 1,
"currentStopSequence": 33,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574438103,
"lastSeenAt": 1749753029,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 1497
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65036,
45.58415
]
},
"properties": {
"trip": {
"id": "284739316",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:51:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "480411"
},
"route": {
"id": "48",
"shortName": "48",
"longName": "Perras",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "28107",
"label": "28107",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 196,
"odometer": 0,
"speed": 20
},
"agencyId": 1,
"currentStopSequence": 45,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 154
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.78773,
45.46674
]
},
"properties": {
"trip": {
"id": "285009544",
"shortName": null,
"headsign": "Sud",
"startTime": "10:07:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2090098"
},
"route": {
"id": "209",
"shortName": "209",
"longName": "Des Sources",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "28131",
"label": "28131",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 144,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 166
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63349,
45.54859
]
},
"properties": {
"trip": {
"id": "284726605",
"shortName": null,
"headsign": "Sud",
"startTime": "10:21:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "300085"
},
"route": {
"id": "30",
"shortName": "30",
"longName": "Saint-Denis / Saint-Hubert",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29017",
"label": "29017",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 112,
"odometer": 0,
"speed": 1
},
"agencyId": 1,
"currentStopSequence": 13,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 172
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63209,
45.50096
]
},
"properties": {
"trip": {
"id": "284726864",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:08:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1610134"
},
"route": {
"id": "161",
"shortName": "161",
"longName": "Van Horne",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29018",
"label": "29018",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 219,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 18,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 173
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57789,
45.51159
]
},
"properties": {
"trip": {
"id": "284727873",
"shortName": null,
"headsign": "Nord",
"startTime": "10:15:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1290220"
},
"route": {
"id": "129",
"shortName": "129",
"longName": "Côte-Sainte-Catherine",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29021",
"label": "29021",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 303,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 11,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574440211,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 1745
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60719,
45.53162
]
},
"properties": {
"trip": {
"id": "284727855",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:37:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "180228"
},
"route": {
"id": "18",
"shortName": "18",
"longName": "Beaubien",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29023",
"label": "29023",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 216,
"odometer": 0,
"speed": 5
},
"agencyId": 1,
"currentStopSequence": 49,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574442926,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 2051
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64953,
45.46991
]
},
"properties": {
"trip": {
"id": "284726649",
"shortName": null,
"headsign": "Sud",
"startTime": "10:28:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "660103"
},
"route": {
"id": "66",
"shortName": "66",
"longName": "The Boulevard",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29024",
"label": "29024",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 292,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1579138590,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 3251
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62767,
45.49841
]
},
"properties": {
"trip": {
"id": "284726706",
"shortName": null,
"headsign": "Sud",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1290221"
},
"route": {
"id": "129",
"shortName": "129",
"longName": "Côte-Sainte-Catherine",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29036",
"label": "29036",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 38,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 3,
"occupancyStatus": 1,
"firstSeenAt": 1581574744,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 3353
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57521,
45.49352
]
},
"properties": {
"trip": {
"id": "284727669",
"shortName": null,
"headsign": "Sud",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "660103"
},
"route": {
"id": "66",
"shortName": "66",
"longName": "The Boulevard",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29037",
"label": "29037",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 33,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 36,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436906,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 1366
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65015,
45.47268
]
},
"properties": {
"trip": {
"id": "286573113",
"shortName": null,
"headsign": "Est",
"startTime": "10:17:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1380086"
},
"route": {
"id": "138",
"shortName": "138",
"longName": "Notre-Dame-de-Grâce",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29048",
"label": "29048",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 122,
"odometer": 0,
"speed": 38
},
"agencyId": 1,
"currentStopSequence": 13,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574439910,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 1715
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54543,
45.46798
]
},
"properties": {
"trip": {
"id": "286569740",
"shortName": null,
"headsign": "Nord",
"startTime": "10:17:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "120115"
},
"route": {
"id": "12",
"shortName": "12",
"longName": "Île-des-Soeurs",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29064",
"label": "29064",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 100,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 189
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65165,
45.4409
]
},
"properties": {
"trip": {
"id": "286573476",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:59:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1980009"
},
"route": {
"id": "198",
"shortName": "198",
"longName": "Broadway",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29067",
"label": "29067",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 274,
"odometer": 0,
"speed": 26
},
"agencyId": 1,
"currentStopSequence": 23,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574409309,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 1083
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.81498,
45.46266
]
},
"properties": {
"trip": {
"id": "285007191",
"shortName": null,
"headsign": "Est",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "720182"
},
"route": {
"id": "72",
"shortName": "72",
"longName": "Alfred-Nobel",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29070",
"label": "29070",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 54,
"odometer": 0,
"speed": 37
},
"agencyId": 1,
"currentStopSequence": 4,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 191
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60471,
45.44708
]
},
"properties": {
"trip": {
"id": "286570120",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:54:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "360157"
},
"route": {
"id": "36",
"shortName": "36",
"longName": "Monk",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29073",
"label": "29073",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 98,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574439910,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 1717
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59009,
45.438
]
},
"properties": {
"trip": {
"id": "286571982",
"shortName": null,
"headsign": "Est",
"startTime": "10:24:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1070142"
},
"route": {
"id": "107",
"shortName": "107",
"longName": "Verdun",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29079",
"label": "29079",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 14,
"odometer": 0,
"speed": 25
},
"agencyId": 1,
"currentStopSequence": 13,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574434202,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 1165
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73917,
45.44784
]
},
"properties": {
"trip": {
"id": "286573270",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:39:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1950177"
},
"route": {
"id": "195",
"shortName": "195",
"longName": "Dorval / Angrignon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29085",
"label": "29085",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 252,
"odometer": 0,
"speed": 16
},
"agencyId": 1,
"currentStopSequence": 53,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 200
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5637,
45.46285
]
},
"properties": {
"trip": {
"id": "286570463",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:03:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "610126"
},
"route": {
"id": "61",
"shortName": "61",
"longName": "Wellington",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29089",
"label": "29089",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 159,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 20,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574702174,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2583
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60476,
45.47366
]
},
"properties": {
"trip": {
"id": "286570965",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:16:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "900254"
},
"route": {
"id": "90",
"shortName": "90",
"longName": "Saint-Jacques",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29092",
"label": "29092",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 217,
"odometer": 0,
"speed": 28
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 205
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57415,
45.47625
]
},
"properties": {
"trip": {
"id": "286572448",
"shortName": null,
"headsign": "Est",
"startTime": "10:11:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1080081"
},
"route": {
"id": "108",
"shortName": "108",
"longName": "Bannantyne",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29093",
"label": "29093",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 321,
"odometer": 0,
"speed": 47
},
"agencyId": 1,
"currentStopSequence": 21,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575387123,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2850
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58393,
45.48168
]
},
"properties": {
"trip": {
"id": "286574629",
"shortName": null,
"headsign": "Est",
"startTime": "10:01:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4960097"
},
"route": {
"id": "496",
"shortName": "496",
"longName": "Express Victoria",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29095",
"label": "29095",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 124,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574438709,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 1578
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60773,
45.47032
]
},
"properties": {
"trip": {
"id": "286571262",
"shortName": null,
"headsign": "Est",
"startTime": "09:58:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "900252"
},
"route": {
"id": "90",
"shortName": "90",
"longName": "Saint-Jacques",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29096",
"label": "29096",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 46,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 42,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 3,
"firstSeenAt": 1577148851,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3158
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65754,
45.44792
]
},
"properties": {
"trip": {
"id": "286570637",
"shortName": null,
"headsign": "Est",
"startTime": "10:26:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1900003"
},
"route": {
"id": "190",
"shortName": "190",
"longName": "Norman",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29098",
"label": "29098",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 118,
"odometer": 0,
"speed": 10
},
"agencyId": 1,
"currentStopSequence": 10,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 207
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74097,
45.44656
]
},
"properties": {
"trip": {
"id": "286572125",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:29:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1980009"
},
"route": {
"id": "198",
"shortName": "198",
"longName": "Broadway",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29099",
"label": "29099",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 46,
"odometer": 0,
"speed": 33
},
"agencyId": 1,
"currentStopSequence": 55,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1579050624,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3244
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55779,
45.48486
]
},
"properties": {
"trip": {
"id": "286571927",
"shortName": null,
"headsign": "Est",
"startTime": "09:58:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1070142"
},
"route": {
"id": "107",
"shortName": "107",
"longName": "Verdun",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29100",
"label": "29100",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 8,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 41,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574413506,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 1134
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57574,
45.46237
]
},
"properties": {
"trip": {
"id": "286570716",
"shortName": null,
"headsign": "Nord",
"startTime": "10:25:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "710083"
},
"route": {
"id": "71",
"shortName": "71",
"longName": "Pointe-Saint-Charles",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29101",
"label": "29101",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 86,
"odometer": 0,
"speed": 17
},
"agencyId": 1,
"currentStopSequence": 3,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575152646,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2812
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65216,
45.44256
]
},
"properties": {
"trip": {
"id": "286572921",
"shortName": null,
"headsign": "Nord",
"startTime": "09:47:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1140009"
},
"route": {
"id": "114",
"shortName": "114",
"longName": "Angrignon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29109",
"label": "29109",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 298,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 39,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574437204,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 1384
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56744,
45.4774
]
},
"properties": {
"trip": {
"id": "286570824",
"shortName": null,
"headsign": "Nord",
"startTime": "10:21:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "570103"
},
"route": {
"id": "57",
"shortName": "57",
"longName": "Charlevoix",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29111",
"label": "29111",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 309,
"odometer": 0,
"speed": 33
},
"agencyId": 1,
"currentStopSequence": 13,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575685222,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2957
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63415,
45.48232
]
},
"properties": {
"trip": {
"id": "286570671",
"shortName": null,
"headsign": "Nord",
"startTime": "09:56:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "630364"
},
"route": {
"id": "63",
"shortName": "63",
"longName": "Girouard",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29115",
"label": "29115",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 302,
"odometer": 0,
"speed": 4
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1581112804,
"lastSeenAt": 1749752647,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3336
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.574,
45.50159
]
},
"properties": {
"trip": {
"id": "286574285",
"shortName": null,
"headsign": "Est",
"startTime": "09:36:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4200115"
},
"route": {
"id": "420",
"shortName": "420",
"longName": "Express Notre-Dame-de-Grâce",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29125",
"label": "29125",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 128,
"odometer": 0,
"speed": 17
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 213
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58526,
45.48866
]
},
"properties": {
"trip": {
"id": "286572416",
"shortName": null,
"headsign": "Est",
"startTime": "09:44:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "900252"
},
"route": {
"id": "90",
"shortName": "90",
"longName": "Saint-Jacques",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29137",
"label": "29137",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 41,
"odometer": 0,
"speed": 22
},
"agencyId": 1,
"currentStopSequence": 53,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575558123,
"lastSeenAt": 1749752906,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2912
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59868,
45.47699
]
},
"properties": {
"trip": {
"id": "286570296",
"shortName": null,
"headsign": "Nord",
"startTime": "10:01:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "380008"
},
"route": {
"id": "38",
"shortName": "38",
"longName": "De l'Église",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29138",
"label": "29138",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 218,
"odometer": 0,
"speed": 24
},
"agencyId": 1,
"currentStopSequence": 26,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 218
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56932,
45.50294
]
},
"properties": {
"trip": {
"id": "286572555",
"shortName": null,
"headsign": "Est",
"startTime": "09:37:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "350017"
},
"route": {
"id": "35",
"shortName": "35",
"longName": "Griffintown",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29139",
"label": "29139",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 305,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 44,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 219
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63377,
45.44515
]
},
"properties": {
"trip": {
"id": "286571224",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:59:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1010134"
},
"route": {
"id": "101",
"shortName": "101",
"longName": "Saint-Patrick",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29140",
"label": "29140",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 242,
"odometer": 0,
"speed": 7
},
"agencyId": 1,
"currentStopSequence": 25,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 220
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59846,
45.47164
]
},
"properties": {
"trip": {
"id": "286574308",
"shortName": null,
"headsign": "Est",
"startTime": "10:08:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4200115"
},
"route": {
"id": "420",
"shortName": "420",
"longName": "Express Notre-Dame-de-Grâce",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29147",
"label": "29147",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 236,
"odometer": 0,
"speed": 60
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 226
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59012,
45.51712
]
},
"properties": {
"trip": {
"id": "284776860",
"shortName": null,
"headsign": "Sud",
"startTime": "10:06:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "800107"
},
"route": {
"id": "80",
"shortName": "80",
"longName": "Avenue du Parc",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29816",
"label": "29816",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 125,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 20,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1584986523,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 7021
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70981,
45.49798
]
},
"properties": {
"trip": {
"id": "284739397",
"shortName": null,
"headsign": "Est",
"startTime": "10:40:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1210266"
},
"route": {
"id": "121",
"shortName": "121",
"longName": "Sauvé / Côte-Vertu",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29825",
"label": "29825",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 312,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 238
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5338,
45.54726
]
},
"properties": {
"trip": {
"id": "284741514",
"shortName": null,
"headsign": "Nord destination Cégep Marie-Victorin",
"startTime": "10:49:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4390256"
},
"route": {
"id": "439",
"shortName": "439",
"longName": "Express Pie-IX",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29829",
"label": "29829",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 226,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436304,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 1297
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5595,
45.55625
]
},
"properties": {
"trip": {
"id": "284741419",
"shortName": null,
"headsign": "Nord destination Cégep Marie-Victorin",
"startTime": "10:19:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4390256"
},
"route": {
"id": "439",
"shortName": "439",
"longName": "Express Pie-IX",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29831",
"label": "29831",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 294,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 9,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 242
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66975,
45.52756
]
},
"properties": {
"trip": {
"id": "284739717",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:01:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1210271"
},
"route": {
"id": "121",
"shortName": "121",
"longName": "Sauvé / Côte-Vertu",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29836",
"label": "29836",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 204,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 31,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574434804,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 1194
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58874,
45.56549
]
},
"properties": {
"trip": {
"id": "284741553",
"shortName": null,
"headsign": "Nord destination Cégep Marie-Victorin",
"startTime": "09:39:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4390256"
},
"route": {
"id": "439",
"shortName": "439",
"longName": "Express Pie-IX",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29838",
"label": "29838",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 300,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 14,
"currentStatus": 2,
"congestionLevel": 3,
"occupancyStatus": 1,
"firstSeenAt": 1574403193,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 829
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6198,
45.6068
]
},
"properties": {
"trip": {
"id": "284739346",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:22:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "690221"
},
"route": {
"id": "69",
"shortName": "69",
"longName": "Gouin",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "29846",
"label": "29846",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 246,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 9,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574445923,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 2180
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59965,
45.55986
]
},
"properties": {
"trip": {
"id": "285030524",
"shortName": null,
"headsign": "Est",
"startTime": "10:45:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1410585"
},
"route": {
"id": "141",
"shortName": "141",
"longName": "Jean-Talon Est",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30002",
"label": "30002",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 180,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1579225960,
"lastSeenAt": 1749753030,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 3256
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64458,
45.51842
]
},
"properties": {
"trip": {
"id": "284778184",
"shortName": null,
"headsign": "Nord",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1190075"
},
"route": {
"id": "119",
"shortName": "119",
"longName": "Rockland",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30007",
"label": "30007",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 158,
"odometer": 0,
"speed": 24
},
"agencyId": 1,
"currentStopSequence": 37,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749752969,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 260
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60299,
45.49523
]
},
"properties": {
"trip": {
"id": "284777460",
"shortName": null,
"headsign": "Nord",
"startTime": "10:20:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1660192"
},
"route": {
"id": "166",
"shortName": "166",
"longName": "Queen-Mary",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30008",
"label": "30008",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 249,
"odometer": 0,
"speed": 55
},
"agencyId": 1,
"currentStopSequence": 11,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436304,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1298
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58801,
45.46206
]
},
"properties": {
"trip": {
"id": "286569903",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:56:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "350019"
},
"route": {
"id": "35",
"shortName": "35",
"longName": "Griffintown",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30011",
"label": "30011",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 187,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 32,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1576547186,
"lastSeenAt": 1749753030,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3080
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66297,
45.43211
]
},
"properties": {
"trip": {
"id": "286571015",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:52:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1100210"
},
"route": {
"id": "110",
"shortName": "110",
"longName": "Centrale",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30013",
"label": "30013",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 239,
"odometer": 0,
"speed": 31
},
"agencyId": 1,
"currentStopSequence": 49,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575912261,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2980
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60311,
45.4793
]
},
"properties": {
"trip": {
"id": "286571529",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:19:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1040117"
},
"route": {
"id": "104",
"shortName": "104",
"longName": "Cavendish",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30023",
"label": "30023",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 220,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574414106,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 1137
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56869,
45.54187
]
},
"properties": {
"trip": {
"id": "285002320",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:15:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "970204"
},
"route": {
"id": "97",
"shortName": "97",
"longName": "Avenue-du-Mont-Royal",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30050",
"label": "30050",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 279,
"odometer": 0,
"speed": 24
},
"agencyId": 1,
"currentStopSequence": 37,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 267
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64564,
45.45863
]
},
"properties": {
"trip": {
"id": "285001622",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:45:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "510191"
},
"route": {
"id": "51",
"shortName": "51",
"longName": "Édouard-Montpetit",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30058",
"label": "30058",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 114,
"odometer": 0,
"speed": 24
},
"agencyId": 1,
"currentStopSequence": 49,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574692562,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 2521
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55484,
45.51655
]
},
"properties": {
"trip": {
"id": "285283792",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:22:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1500061"
},
"route": {
"id": "150",
"shortName": "150",
"longName": "René-Lévesque",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30060",
"label": "30060",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 214,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 7,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574435706,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 1251
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62998,
45.48273
]
},
"properties": {
"trip": {
"id": "285001653",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:56:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "510191"
},
"route": {
"id": "51",
"shortName": "51",
"longName": "Édouard-Montpetit",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30061",
"label": "30061",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 216,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 35,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1578499337,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 3214
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60771,
45.6209
]
},
"properties": {
"trip": {
"id": "285030544",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:11:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "430203"
},
"route": {
"id": "43",
"shortName": "43",
"longName": "Monselet",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30064",
"label": "30064",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 233,
"odometer": 0,
"speed": 43
},
"agencyId": 1,
"currentStopSequence": 23,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574438408,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 1541
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57451,
45.5395
]
},
"properties": {
"trip": {
"id": "285002240",
"shortName": null,
"headsign": "Est",
"startTime": "10:08:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "970203"
},
"route": {
"id": "97",
"shortName": "97",
"longName": "Avenue-du-Mont-Royal",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30067",
"label": "30067",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 126,
"odometer": 0,
"speed": 23
},
"agencyId": 1,
"currentStopSequence": 20,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575600260,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 2932
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51908,
45.59843
]
},
"properties": {
"trip": {
"id": "285030798",
"shortName": null,
"headsign": "Sud",
"startTime": "10:01:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "280921"
},
"route": {
"id": "28",
"shortName": "28",
"longName": "Honoré-Beaugrand",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30083",
"label": "30083",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 201,
"odometer": 0,
"speed": 31
},
"agencyId": 1,
"currentStopSequence": 38,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574409313,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 1098
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59098,
45.52288
]
},
"properties": {
"trip": {
"id": "285001936",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:56:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "970204"
},
"route": {
"id": "97",
"shortName": "97",
"longName": "Avenue-du-Mont-Royal",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30087",
"label": "30087",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 213,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 49,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574697007,
"lastSeenAt": 1749752686,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 2537
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58653,
45.52648
]
},
"properties": {
"trip": {
"id": "285001953",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:32:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "510191"
},
"route": {
"id": "51",
"shortName": "51",
"longName": "Édouard-Montpetit",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30090",
"label": "30090",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 131,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 278
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57761,
45.60284
]
},
"properties": {
"trip": {
"id": "285028538",
"shortName": null,
"headsign": "Sud",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "440168"
},
"route": {
"id": "44",
"shortName": "44",
"longName": "Armand-Bombardier",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30092",
"label": "30092",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 121,
"odometer": 0,
"speed": 33
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574475505,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 2411
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50935,
45.63243
]
},
"properties": {
"trip": {
"id": "285029123",
"shortName": null,
"headsign": "Est",
"startTime": "10:15:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "860188"
},
"route": {
"id": "86",
"shortName": "86",
"longName": "Pointe-aux-Trembles",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30108",
"label": "30108",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 104,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575682102,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2951
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58168,
45.55174
]
},
"properties": {
"trip": {
"id": "284727374",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1970141"
},
"route": {
"id": "197",
"shortName": "197",
"longName": "Rosemont",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30110",
"label": "30110",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 25,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574435403,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 1234
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53971,
45.58947
]
},
"properties": {
"trip": {
"id": "285030557",
"shortName": null,
"headsign": "Sud",
"startTime": "09:49:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "440168"
},
"route": {
"id": "44",
"shortName": "44",
"longName": "Armand-Bombardier",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30111",
"label": "30111",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 295,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 37,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749752756,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 285
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56798,
45.59034
]
},
"properties": {
"trip": {
"id": "285029510",
"shortName": null,
"headsign": "Sud",
"startTime": "09:46:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "330282"
},
"route": {
"id": "33",
"shortName": "33",
"longName": "Langelier",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30118",
"label": "30118",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 43,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 3,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 287
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58096,
45.61842
]
},
"properties": {
"trip": {
"id": "285030372",
"shortName": null,
"headsign": "Est",
"startTime": "09:48:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1920150"
},
"route": {
"id": "192",
"shortName": "192",
"longName": "Robert",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30129",
"label": "30129",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 48,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1583275026,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 3399
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64033,
45.55038
]
},
"properties": {
"trip": {
"id": "284741131",
"shortName": null,
"headsign": "Sud",
"startTime": "10:16:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "560031"
},
"route": {
"id": "56",
"shortName": "56",
"longName": "Saint-Hubert",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30132",
"label": "30132",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 15,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1576120947,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 3024
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6127,
45.62907
]
},
"properties": {
"trip": {
"id": "285029653",
"shortName": null,
"headsign": "Nord",
"startTime": "09:22:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "330287"
},
"route": {
"id": "33",
"shortName": "33",
"longName": "Langelier",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30136",
"label": "30136",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 60,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575680538,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2947
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53789,
45.60696
]
},
"properties": {
"trip": {
"id": "285029603",
"shortName": null,
"headsign": "Est",
"startTime": "09:52:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1410585"
},
"route": {
"id": "141",
"shortName": "141",
"longName": "Jean-Talon Est",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30138",
"label": "30138",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 122,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 45,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 293
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62185,
45.59901
]
},
"properties": {
"trip": {
"id": "285029089",
"shortName": null,
"headsign": "Est",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "430204"
},
"route": {
"id": "43",
"shortName": "43",
"longName": "Monselet",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30141",
"label": "30141",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 52,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 25,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 296
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53078,
45.6037
]
},
"properties": {
"trip": {
"id": "285028469",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:18:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "260107"
},
"route": {
"id": "26",
"shortName": "26",
"longName": "Mercier-Est",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30144",
"label": "30144",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 297
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57847,
45.50547
]
},
"properties": {
"trip": {
"id": "284727020",
"shortName": null,
"headsign": "Est",
"startTime": "10:23:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1440095"
},
"route": {
"id": "144",
"shortName": "144",
"longName": "Avenue des Pins",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30146",
"label": "30146",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 358,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 11,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1601373665,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 8911
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56958,
45.56543
]
},
"properties": {
"trip": {
"id": "284726948",
"shortName": null,
"headsign": "Est via de la Pépinière",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1970142"
},
"route": {
"id": "197",
"shortName": "197",
"longName": "Rosemont",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30149",
"label": "30149",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 33,
"odometer": 0,
"speed": 31
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 300
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60142,
45.532
]
},
"properties": {
"trip": {
"id": "284727956",
"shortName": null,
"headsign": "Est",
"startTime": "09:50:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "920105"
},
"route": {
"id": "92",
"shortName": "92",
"longName": "Jean-Talon Ouest",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30150",
"label": "30150",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 264,
"odometer": 0,
"speed": 15
},
"agencyId": 1,
"currentStopSequence": 30,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 301
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.79904,
45.47198
]
},
"properties": {
"trip": {
"id": "285007279",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:45:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "720183"
},
"route": {
"id": "72",
"shortName": "72",
"longName": "Alfred-Nobel",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30152",
"label": "30152",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 236,
"odometer": 0,
"speed": 46
},
"agencyId": 1,
"currentStopSequence": 28,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 302
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54575,
45.59611
]
},
"properties": {
"trip": {
"id": "284727222",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:26:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "180228"
},
"route": {
"id": "18",
"shortName": "18",
"longName": "Beaubien",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30155",
"label": "30155",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 298,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 4,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 304
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55286,
45.59766
]
},
"properties": {
"trip": {
"id": "284727500",
"shortName": null,
"headsign": "Est",
"startTime": "09:43:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "180220"
},
"route": {
"id": "18",
"shortName": "18",
"longName": "Beaubien",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30157",
"label": "30157",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 119,
"odometer": 0,
"speed": 40
},
"agencyId": 1,
"currentStopSequence": 47,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1576200505,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 3039
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64895,
45.58343
]
},
"properties": {
"trip": {
"id": "285030029",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:39:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "430203"
},
"route": {
"id": "43",
"shortName": "43",
"longName": "Monselet",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30159",
"label": "30159",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 207,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 56,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575910458,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2978
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58381,
45.55787
]
},
"properties": {
"trip": {
"id": "284726687",
"shortName": null,
"headsign": "Est",
"startTime": "10:05:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "180220"
},
"route": {
"id": "18",
"shortName": "18",
"longName": "Beaubien",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30164",
"label": "30164",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 32,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1576114346,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 3021
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.82232,
45.50926
]
},
"properties": {
"trip": {
"id": "285009491",
"shortName": null,
"headsign": "Est",
"startTime": "10:08:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2050112"
},
"route": {
"id": "205",
"shortName": "205",
"longName": "Gouin",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30174",
"label": "30174",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 151,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749752965,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 310
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68264,
45.51295
]
},
"properties": {
"trip": {
"id": "285006489",
"shortName": null,
"headsign": "Nord",
"startTime": "09:45:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "170094"
},
"route": {
"id": "17",
"shortName": "17",
"longName": "Décarie",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30175",
"label": "30175",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 223,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 38,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574444444,
"lastSeenAt": 1749752848,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 2131
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67268,
45.50779
]
},
"properties": {
"trip": {
"id": "285008912",
"shortName": null,
"headsign": "Est",
"startTime": "09:32:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2020187"
},
"route": {
"id": "202",
"shortName": "202",
"longName": "Dawson",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30179",
"label": "30179",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 32,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 67,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749752840,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 311
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60102,
45.53839
]
},
"properties": {
"trip": {
"id": "284726840",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:46:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "180228"
},
"route": {
"id": "18",
"shortName": "18",
"longName": "Beaubien",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30181",
"label": "30181",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 44,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1575992407,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 2996
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61919,
45.60604
]
},
"properties": {
"trip": {
"id": "285028502",
"shortName": null,
"headsign": "Nord",
"startTime": "09:50:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "320164"
},
"route": {
"id": "32",
"shortName": "32",
"longName": "Lacordaire",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30185",
"label": "30185",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 324,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 36,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 313
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55576,
45.61155
]
},
"properties": {
"trip": {
"id": "285029807",
"shortName": null,
"headsign": "Est",
"startTime": "10:01:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1410585"
},
"route": {
"id": "141",
"shortName": "141",
"longName": "Jean-Talon Est",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30193",
"label": "30193",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 38,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 315
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74559,
45.4904
]
},
"properties": {
"trip": {
"id": "285006879",
"shortName": null,
"headsign": "Sud via Davignon",
"startTime": "10:01:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4090095"
},
"route": {
"id": "409",
"shortName": "409",
"longName": "Express Des Sources",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30201",
"label": "30201",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 93,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 35,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 319
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57956,
45.48974
]
},
"properties": {
"trip": {
"id": "285283878",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:03:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1500061"
},
"route": {
"id": "150",
"shortName": "150",
"longName": "René-Lévesque",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30220",
"label": "30220",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 233,
"odometer": 0,
"speed": 54
},
"agencyId": 1,
"currentStopSequence": 25,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574439315,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1645
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57313,
45.51949
]
},
"properties": {
"trip": {
"id": "284727735",
"shortName": null,
"headsign": "Sud",
"startTime": "09:51:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "300085"
},
"route": {
"id": "30",
"shortName": "30",
"longName": "Saint-Denis / Saint-Hubert",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30224",
"label": "30224",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 124,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 37,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1576028427,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 3007
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73373,
45.50336
]
},
"properties": {
"trip": {
"id": "285007404",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:53:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1640159"
},
"route": {
"id": "164",
"shortName": "164",
"longName": "Dudemaine",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30232",
"label": "30232",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 40,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 325
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73937,
45.49271
]
},
"properties": {
"trip": {
"id": "285007121",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:03:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "700197"
},
"route": {
"id": "70",
"shortName": "70",
"longName": "Bois-Franc",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30234",
"label": "30234",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 306,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749752701,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 326
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83076,
45.47263
]
},
"properties": {
"trip": {
"id": "285009224",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:59:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2060110"
},
"route": {
"id": "206",
"shortName": "206",
"longName": "Roger-Pilon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30237",
"label": "30237",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 236,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574877993,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 2711
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.76888,
45.50762
]
},
"properties": {
"trip": {
"id": "285010246",
"shortName": null,
"headsign": "Est",
"startTime": "09:56:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4680091"
},
"route": {
"id": "468",
"shortName": "468",
"longName": "Express Pierrefonds / Gouin",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30248",
"label": "30248",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 89,
"odometer": 0,
"speed": 54
},
"agencyId": 1,
"currentStopSequence": 30,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 331
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57714,
45.57666
]
},
"properties": {
"trip": {
"id": "285284988",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "8110009"
},
"route": {
"id": "811",
"shortName": "811",
"longName": "Navette Services santé",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30251",
"label": "30251",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 32,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 11,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574702428,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 2584
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68414,
45.51518
]
},
"properties": {
"trip": {
"id": "285006630",
"shortName": null,
"headsign": "Sud",
"startTime": "10:12:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "640165"
},
"route": {
"id": "64",
"shortName": "64",
"longName": "Grenet",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30254",
"label": "30254",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 20,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749752834,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 334
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73296,
45.48754
]
},
"properties": {
"trip": {
"id": "285007164",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "720183"
},
"route": {
"id": "72",
"shortName": "72",
"longName": "Alfred-Nobel",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30255",
"label": "30255",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 295,
"odometer": 0,
"speed": 54
},
"agencyId": 1,
"currentStopSequence": 7,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 335
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61629,
45.57743
]
},
"properties": {
"trip": {
"id": "284741468",
"shortName": null,
"headsign": "Sud destination Pie-IX / Notre-Dame",
"startTime": "10:02:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4390255"
},
"route": {
"id": "439",
"shortName": "439",
"longName": "Express Pie-IX",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30813",
"label": "30813",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 121,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 21,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436909,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 1371
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68283,
45.51411
]
},
"properties": {
"trip": {
"id": "284739019",
"shortName": null,
"headsign": "Est",
"startTime": "10:17:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1210266"
},
"route": {
"id": "121",
"shortName": "121",
"longName": "Sauvé / Côte-Vertu",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30815",
"label": "30815",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 38,
"odometer": 0,
"speed": 22
},
"agencyId": 1,
"currentStopSequence": 15,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436304,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 1299
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66602,
45.53358
]
},
"properties": {
"trip": {
"id": "284738815",
"shortName": null,
"headsign": "Est",
"startTime": "10:05:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1210266"
},
"route": {
"id": "121",
"shortName": "121",
"longName": "Sauvé / Côte-Vertu",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30820",
"label": "30820",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 16,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 23,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575650303,
"lastSeenAt": 1749753031,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 2940
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65639,
45.55055
]
},
"properties": {
"trip": {
"id": "284737791",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:13:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1210271"
},
"route": {
"id": "121",
"shortName": "121",
"longName": "Sauvé / Côte-Vertu",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30827",
"label": "30827",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 222,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574443249,
"lastSeenAt": 1749753030,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 2082
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63491,
45.57537
]
},
"properties": {
"trip": {
"id": "284739006",
"shortName": null,
"headsign": "Nord",
"startTime": "09:54:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "670126"
},
"route": {
"id": "67",
"shortName": "67",
"longName": "Saint-Michel",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30847",
"label": "30847",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 300,
"odometer": 0,
"speed": 2
},
"agencyId": 1,
"currentStopSequence": 32,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 355
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60651,
45.61754
]
},
"properties": {
"trip": {
"id": "284737982",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:42:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "690221"
},
"route": {
"id": "69",
"shortName": "69",
"longName": "Gouin",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30852",
"label": "30852",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1576979772,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 3149
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59542,
45.55775
]
},
"properties": {
"trip": {
"id": "284738606",
"shortName": null,
"headsign": "Sud",
"startTime": "10:05:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "670125"
},
"route": {
"id": "67",
"shortName": "67",
"longName": "Saint-Michel",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30854",
"label": "30854",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 113,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 25,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1575078389,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 2795
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68723,
45.51079
]
},
"properties": {
"trip": {
"id": "284739881",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:49:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1210271"
},
"route": {
"id": "121",
"shortName": "121",
"longName": "Sauvé / Côte-Vertu",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30863",
"label": "30863",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 41,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574438411,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 1546
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65097,
45.5844
]
},
"properties": {
"trip": {
"id": "284738764",
"shortName": null,
"headsign": "Nord",
"startTime": "09:44:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "670126"
},
"route": {
"id": "67",
"shortName": "67",
"longName": "Saint-Michel",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30864",
"label": "30864",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 315,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 38,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436004,
"lastSeenAt": 1749752760,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 1274
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71853,
45.53178
]
},
"properties": {
"trip": {
"id": "284738636",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:32:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "690221"
},
"route": {
"id": "69",
"shortName": "69",
"longName": "Gouin",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30865",
"label": "30865",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 66,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574993554,
"lastSeenAt": 1749753005,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 2762
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5338,
45.54726
]
},
"properties": {
"trip": {
"id": "284741495",
"shortName": null,
"headsign": "Nord destination Cégep Marie-Victorin",
"startTime": "10:39:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4390256"
},
"route": {
"id": "439",
"shortName": "439",
"longName": "Express Pie-IX",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30872",
"label": "30872",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575393994,
"lastSeenAt": 1749753031,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 2861
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64526,
45.5688
]
},
"properties": {
"trip": {
"id": "284738561",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:25:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1210271"
},
"route": {
"id": "121",
"shortName": "121",
"longName": "Sauvé / Côte-Vertu",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30874",
"label": "30874",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 8,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 364
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64777,
45.58223
]
},
"properties": {
"trip": {
"id": "284739187",
"shortName": null,
"headsign": "Sud",
"startTime": "10:24:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4670078"
},
"route": {
"id": "467",
"shortName": "467",
"longName": "Express Saint-Michel",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30879",
"label": "30879",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 132,
"odometer": 0,
"speed": 54
},
"agencyId": 1,
"currentStopSequence": 3,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 367
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65305,
45.57885
]
},
"properties": {
"trip": {
"id": "284737803",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:02:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "690221"
},
"route": {
"id": "69",
"shortName": "69",
"longName": "Gouin",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "30881",
"label": "30881",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 207,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574437510,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 1438
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75158,
45.45734
]
},
"properties": {
"trip": {
"id": "284780654",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:37:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "7471239"
},
"route": {
"id": "747",
"shortName": "747",
"longName": "YUL Aéroport / Centre-Ville",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31003",
"label": "31003",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 183,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1576600341,
"lastSeenAt": 1749752999,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 3085
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49292,
45.64035
]
},
"properties": {
"trip": {
"id": "285030331",
"shortName": null,
"headsign": "Sud",
"startTime": "10:05:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "810020"
},
"route": {
"id": "81",
"shortName": "81",
"longName": "Saint-Jean-Baptiste",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31009",
"label": "31009",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 106,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1591293847,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 7297
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61517,
45.53993
]
},
"properties": {
"trip": {
"id": "284726813",
"shortName": null,
"headsign": "Est",
"startTime": "10:30:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "990063"
},
"route": {
"id": "99",
"shortName": "99",
"longName": "Villeray",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31012",
"label": "31012",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 291,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 372
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62733,
45.49878
]
},
"properties": {
"trip": {
"id": "284727443",
"shortName": null,
"headsign": "Nord",
"startTime": "09:44:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1290220"
},
"route": {
"id": "129",
"shortName": "129",
"longName": "Côte-Sainte-Catherine",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31013",
"label": "31013",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 30,
"currentStatus": 1,
"congestionLevel": 3,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 373
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51643,
45.63638
]
},
"properties": {
"trip": {
"id": "285028589",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1860252"
},
"route": {
"id": "186",
"shortName": "186",
"longName": "Sherbrooke-Est",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31015",
"label": "31015",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 27,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1575392548,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 2858
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59174,
45.48796
]
},
"properties": {
"trip": {
"id": "284728188",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:54:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "240184"
},
"route": {
"id": "24",
"shortName": "24",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31017",
"label": "31017",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574634489,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 2512
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59505,
45.56956
]
},
"properties": {
"trip": {
"id": "284727244",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:30:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "990065"
},
"route": {
"id": "99",
"shortName": "99",
"longName": "Villeray",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31019",
"label": "31019",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 375
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62506,
45.52148
]
},
"properties": {
"trip": {
"id": "284727143",
"shortName": null,
"headsign": "Nord",
"startTime": "10:30:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1790192"
},
"route": {
"id": "179",
"shortName": "179",
"longName": "De l'Acadie",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31020",
"label": "31020",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1581455403,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 3347
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6154,
45.51992
]
},
"properties": {
"trip": {
"id": "284727779",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:21:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1610134"
},
"route": {
"id": "161",
"shortName": "161",
"longName": "Van Horne",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31022",
"label": "31022",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 7,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1575428311,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 2879
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56728,
45.50646
]
},
"properties": {
"trip": {
"id": "284727194",
"shortName": null,
"headsign": "Sud",
"startTime": "09:40:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1290221"
},
"route": {
"id": "129",
"shortName": "129",
"longName": "Côte-Sainte-Catherine",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31024",
"label": "31024",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 38,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574479591,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 2463
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59769,
45.53173
]
},
"properties": {
"trip": {
"id": "284727122",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:50:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1970141"
},
"route": {
"id": "197",
"shortName": "197",
"longName": "Rosemont",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31025",
"label": "31025",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 141,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 38,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574436304,
"lastSeenAt": 1749752606,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 1300
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51329,
45.65914
]
},
"properties": {
"trip": {
"id": "285028232",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:02:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "860189"
},
"route": {
"id": "86",
"shortName": "86",
"longName": "Pointe-aux-Trembles",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31026",
"label": "31026",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 283,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 51,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575216845,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 2820
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66177,
45.47569
]
},
"properties": {
"trip": {
"id": "284727564",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:55:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1610134"
},
"route": {
"id": "161",
"shortName": "161",
"longName": "Van Horne",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31029",
"label": "31029",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1583715363,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 6789
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54697,
45.48975
]
},
"properties": {
"trip": {
"id": "285283221",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:17:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "7770041"
},
"route": {
"id": "777",
"shortName": "777",
"longName": "Jean-Drapeau / Casino / Bonaventure",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31032",
"label": "31032",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 280,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 7,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574434805,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1201
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53465,
45.5965
]
},
"properties": {
"trip": {
"id": "285030460",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:43:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1410586"
},
"route": {
"id": "141",
"shortName": "141",
"longName": "Jean-Talon Est",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31033",
"label": "31033",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436004,
"lastSeenAt": 1749753031,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 1276
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66449,
45.56198
]
},
"properties": {
"trip": {
"id": "284738737",
"shortName": null,
"headsign": "Ouest via Gouin / Ozias-Leduc",
"startTime": "09:39:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "480412"
},
"route": {
"id": "48",
"shortName": "48",
"longName": "Perras",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31036",
"label": "31036",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 50,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574443551,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 2093
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67303,
45.50823
]
},
"properties": {
"trip": {
"id": "285010111",
"shortName": null,
"headsign": "Sud via Davignon",
"startTime": "09:35:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4090095"
},
"route": {
"id": "409",
"shortName": "409",
"longName": "Express Des Sources",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31040",
"label": "31040",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 304,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 49,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749752567,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 380
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5501,
45.62434
]
},
"properties": {
"trip": {
"id": "285283107",
"shortName": null,
"headsign": "Est",
"startTime": "09:38:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "850202"
},
"route": {
"id": "85",
"shortName": "85",
"longName": "Hochelaga",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31042",
"label": "31042",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 59,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 381
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54437,
45.4594
]
},
"properties": {
"trip": {
"id": "285282963",
"shortName": null,
"headsign": "Nord",
"startTime": "10:19:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1680170"
},
"route": {
"id": "168",
"shortName": "168",
"longName": "Cité-du-Havre",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31047",
"label": "31047",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 316,
"odometer": 0,
"speed": 6
},
"agencyId": 1,
"currentStopSequence": 10,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1580261766,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 3306
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54971,
45.52768
]
},
"properties": {
"trip": {
"id": "285282802",
"shortName": null,
"headsign": "Sud",
"startTime": "09:58:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "100075"
},
"route": {
"id": "10",
"shortName": "10",
"longName": "De Lorimier",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31052",
"label": "31052",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 31,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 387
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57697,
45.52311
]
},
"properties": {
"trip": {
"id": "285283332",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:11:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "290083"
},
"route": {
"id": "29",
"shortName": "29",
"longName": "Rachel",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31055",
"label": "31055",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 20,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574442649,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 2027
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54692,
45.56121
]
},
"properties": {
"trip": {
"id": "285283828",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:34:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "340097"
},
"route": {
"id": "34",
"shortName": "34",
"longName": "Sainte-Catherine",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31058",
"label": "31058",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 388
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61625,
45.6031
]
},
"properties": {
"trip": {
"id": "285028879",
"shortName": null,
"headsign": "Sud",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "330282"
},
"route": {
"id": "33",
"shortName": "33",
"longName": "Langelier",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31061",
"label": "31061",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 23,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1575905165,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2972
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54662,
45.66577
]
},
"properties": {
"trip": {
"id": "285029258",
"shortName": null,
"headsign": "Est",
"startTime": "10:20:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1830089"
},
"route": {
"id": "183",
"shortName": "183",
"longName": "Gouin Est",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31065",
"label": "31065",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 334,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574403198,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 836
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61833,
45.55399
]
},
"properties": {
"trip": {
"id": "284738245",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1930135"
},
"route": {
"id": "193",
"shortName": "193",
"longName": "Jarry",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31067",
"label": "31067",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 212,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 33,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574403198,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 837
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58049,
45.65072
]
},
"properties": {
"trip": {
"id": "285030933",
"shortName": null,
"headsign": "Sud",
"startTime": "10:30:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "810020"
},
"route": {
"id": "81",
"shortName": "81",
"longName": "Saint-Jean-Baptiste",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31068",
"label": "31068",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 236,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574439918,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 1721
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63857,
45.52778
]
},
"properties": {
"trip": {
"id": "284727594",
"shortName": null,
"headsign": "Sud",
"startTime": "10:11:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1790193"
},
"route": {
"id": "179",
"shortName": "179",
"longName": "De l'Acadie",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31076",
"label": "31076",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 113,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574445359,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 2170
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6193,
45.47903
]
},
"properties": {
"trip": {
"id": "285282304",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:28:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "240184"
},
"route": {
"id": "24",
"shortName": "24",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31080",
"label": "31080",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 47,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436605,
"lastSeenAt": 1749752728,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1339
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65421,
45.49339
]
},
"properties": {
"trip": {
"id": "284726628",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:57:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "920108"
},
"route": {
"id": "92",
"shortName": "92",
"longName": "Jean-Talon Ouest",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31086",
"label": "31086",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 28,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575075862,
"lastSeenAt": 1749752491,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 2790
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61007,
45.53917
]
},
"properties": {
"trip": {
"id": "284727100",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:59:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "950102"
},
"route": {
"id": "95",
"shortName": "95",
"longName": "Bélanger",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31096",
"label": "31096",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 213,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 41,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 398
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63626,
45.60113
]
},
"properties": {
"trip": {
"id": "284738702",
"shortName": null,
"headsign": "Est via Gouin / Ozias-Leduc",
"startTime": "10:12:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "480413"
},
"route": {
"id": "48",
"shortName": "48",
"longName": "Perras",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31117",
"label": "31117",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 65,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 8,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 405
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63937,
45.55034
]
},
"properties": {
"trip": {
"id": "284727056",
"shortName": null,
"headsign": "Nord",
"startTime": "09:52:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "300087"
},
"route": {
"id": "30",
"shortName": "30",
"longName": "Saint-Denis / Saint-Hubert",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31122",
"label": "31122",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 292,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 36,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574696289,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 2535
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65361,
45.55439
]
},
"properties": {
"trip": {
"id": "284738961",
"shortName": null,
"headsign": "Est",
"startTime": "10:27:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "410323"
},
"route": {
"id": "41",
"shortName": "41",
"longName": "Quartier Saint-Michel / Ahuntsic",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31133",
"label": "31133",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 4,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575905404,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 2973
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63235,
45.59082
]
},
"properties": {
"trip": {
"id": "284738056",
"shortName": null,
"headsign": "Est",
"startTime": "10:02:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1400133"
},
"route": {
"id": "140",
"shortName": "140",
"longName": "Fleury",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31134",
"label": "31134",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 33,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574965714,
"lastSeenAt": 1749753029,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 2751
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6075,
45.56248
]
},
"properties": {
"trip": {
"id": "284739097",
"shortName": null,
"headsign": "Est",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "410323"
},
"route": {
"id": "41",
"shortName": "41",
"longName": "Quartier Saint-Michel / Ahuntsic",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31137",
"label": "31137",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 31,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574412016,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 1128
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64136,
45.54247
]
},
"properties": {
"trip": {
"id": "284740984",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:28:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "190036"
},
"route": {
"id": "19",
"shortName": "19",
"longName": "Chabanel / Marché Central",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31138",
"label": "31138",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 203,
"odometer": 0,
"speed": 6
},
"agencyId": 1,
"currentStopSequence": 4,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574441143,
"lastSeenAt": 1749753025,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 1869
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56591,
45.57923
]
},
"properties": {
"trip": {
"id": "284726578",
"shortName": null,
"headsign": "Est",
"startTime": "09:54:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "180220"
},
"route": {
"id": "18",
"shortName": "18",
"longName": "Beaubien",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31139",
"label": "31139",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 24,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 37,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 413
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65085,
45.53852
]
},
"properties": {
"trip": {
"id": "284739893",
"shortName": null,
"headsign": "Est destination Georges-Baril / Henri-Bourassa",
"startTime": "10:25:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1460139"
},
"route": {
"id": "146",
"shortName": "146",
"longName": "Christophe-Colomb / Meilleur",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31141",
"label": "31141",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 20,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 10,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753029,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 414
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56511,
45.51083
]
},
"properties": {
"trip": {
"id": "285282850",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:51:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1250191"
},
"route": {
"id": "125",
"shortName": "125",
"longName": "Ontario",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31146",
"label": "31146",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 37,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 417
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57414,
45.5129
]
},
"properties": {
"trip": {
"id": "284739215",
"shortName": null,
"headsign": "Sud",
"startTime": "09:44:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "550145"
},
"route": {
"id": "55",
"shortName": "55",
"longName": "Boulevard Saint-Laurent",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31150",
"label": "31150",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 123,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 40,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574437511,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1441
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57339,
45.50507
]
},
"properties": {
"trip": {
"id": "285284193",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:03:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "240184"
},
"route": {
"id": "24",
"shortName": "24",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31151",
"label": "31151",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 420
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6199,
45.47937
]
},
"properties": {
"trip": {
"id": "285283192",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:37:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "240184"
},
"route": {
"id": "24",
"shortName": "24",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31156",
"label": "31156",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 314,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 47,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575652474,
"lastSeenAt": 1749752808,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 2943
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49561,
45.65036
]
},
"properties": {
"trip": {
"id": "285029704",
"shortName": null,
"headsign": "Est",
"startTime": "09:47:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "860188"
},
"route": {
"id": "86",
"shortName": "86",
"longName": "Pointe-aux-Trembles",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31157",
"label": "31157",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 105,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 61,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399675,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 423
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58796,
45.49121
]
},
"properties": {
"trip": {
"id": "285282777",
"shortName": null,
"headsign": "Est",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "240185"
},
"route": {
"id": "24",
"shortName": "24",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31161",
"label": "31161",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 36,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 425
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50961,
45.59533
]
},
"properties": {
"trip": {
"id": "285284081",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:45:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1850127"
},
"route": {
"id": "185",
"shortName": "185",
"longName": "Sherbrooke",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31162",
"label": "31162",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 426
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55431,
45.56004
]
},
"properties": {
"trip": {
"id": "285283941",
"shortName": null,
"headsign": "Est",
"startTime": "10:16:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1850126"
},
"route": {
"id": "185",
"shortName": "185",
"longName": "Sherbrooke",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31169",
"label": "31169",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 357,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 16,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1586020863,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 7076
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59694,
45.58722
]
},
"properties": {
"trip": {
"id": "285030230",
"shortName": null,
"headsign": "Sud via Perras / Lacordaire",
"startTime": "10:03:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4320137"
},
"route": {
"id": "432",
"shortName": "432",
"longName": "Express Lacordaire",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31170",
"label": "31170",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 153,
"odometer": 0,
"speed": 38
},
"agencyId": 1,
"currentStopSequence": 28,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 429
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58031,
45.50695
]
},
"properties": {
"trip": {
"id": "285284794",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:56:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "500003"
},
"route": {
"id": "50",
"shortName": "50",
"longName": "Vieux-Montréal / Vieux-Port",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31174",
"label": "31174",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 291,
"odometer": 0,
"speed": 22
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749752959,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 432
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54978,
45.53256
]
},
"properties": {
"trip": {
"id": "285282370",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:46:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1850127"
},
"route": {
"id": "185",
"shortName": "185",
"longName": "Sherbrooke",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31176",
"label": "31176",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 120,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 49,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574704359,
"lastSeenAt": 1749752827,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 2592
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53783,
45.55556
]
},
"properties": {
"trip": {
"id": "285283132",
"shortName": null,
"headsign": "Est",
"startTime": "09:53:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1250192"
},
"route": {
"id": "125",
"shortName": "125",
"longName": "Ontario",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31181",
"label": "31181",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 27,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574440844,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1839
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55287,
45.49889
]
},
"properties": {
"trip": {
"id": "285284833",
"shortName": null,
"headsign": "Est",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "500006"
},
"route": {
"id": "50",
"shortName": "50",
"longName": "Vieux-Montréal / Vieux-Port",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31182",
"label": "31182",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 357,
"odometer": 0,
"speed": 33
},
"agencyId": 1,
"currentStopSequence": 14,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1600691827,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 8860
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61114,
45.55765
]
},
"properties": {
"trip": {
"id": "285282870",
"shortName": null,
"headsign": "Nord",
"startTime": "10:07:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "940090"
},
"route": {
"id": "94",
"shortName": "94",
"longName": "D'Iberville",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31184",
"label": "31184",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 304,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 27,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574441145,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1871
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55052,
45.44958
]
},
"properties": {
"trip": {
"id": "285282254",
"shortName": null,
"headsign": "Sud",
"startTime": "10:03:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1680169"
},
"route": {
"id": "168",
"shortName": "168",
"longName": "Cité-du-Havre",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31186",
"label": "31186",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 213,
"odometer": 0,
"speed": 31
},
"agencyId": 1,
"currentStopSequence": 26,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574438112,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1513
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5937,
45.59992
]
},
"properties": {
"trip": {
"id": "285029491",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:20:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1920151"
},
"route": {
"id": "192",
"shortName": "192",
"longName": "Robert",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31187",
"label": "31187",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 185,
"odometer": 0,
"speed": 19
},
"agencyId": 1,
"currentStopSequence": 14,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 436
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75429,
45.49531
]
},
"properties": {
"trip": {
"id": "285006595",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:02:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2150155"
},
"route": {
"id": "215",
"shortName": "215",
"longName": "Henri-Bourassa",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31189",
"label": "31189",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 223,
"odometer": 0,
"speed": 44
},
"agencyId": 1,
"currentStopSequence": 28,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436306,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 1306
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54344,
45.60495
]
},
"properties": {
"trip": {
"id": "285030824",
"shortName": null,
"headsign": "Nord",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "280922"
},
"route": {
"id": "28",
"shortName": "28",
"longName": "Honoré-Beaugrand",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31193",
"label": "31193",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 186,
"odometer": 0,
"speed": 32
},
"agencyId": 1,
"currentStopSequence": 21,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574439622,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 1688
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.86995,
45.46267
]
},
"properties": {
"trip": {
"id": "285010364",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:46:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4680086"
},
"route": {
"id": "468",
"shortName": "468",
"longName": "Express Pierrefonds / Gouin",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31195",
"label": "31195",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 123,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 46,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574438718,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 1596
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60755,
45.53122
]
},
"properties": {
"trip": {
"id": "284727473",
"shortName": null,
"headsign": "Est",
"startTime": "10:29:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "180220"
},
"route": {
"id": "18",
"shortName": "18",
"longName": "Beaubien",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31204",
"label": "31204",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 29,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 4,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 442
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58531,
45.54609
]
},
"properties": {
"trip": {
"id": "285001221",
"shortName": null,
"headsign": "Sud",
"startTime": "10:24:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "250055"
},
"route": {
"id": "25",
"shortName": "25",
"longName": "Angus",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31216",
"label": "31216",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 126,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575835210,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 2968
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58105,
45.56103
]
},
"properties": {
"trip": {
"id": "284728073",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:04:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "180228"
},
"route": {
"id": "18",
"shortName": "18",
"longName": "Beaubien",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31222",
"label": "31222",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 209,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 448
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54677,
45.56916
]
},
"properties": {
"trip": {
"id": "285283273",
"shortName": null,
"headsign": "Nord destination Antonio-Dagenais / Lespinay",
"startTime": "10:33:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1310099"
},
"route": {
"id": "131",
"shortName": "131",
"longName": "De l'Assomption",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31224",
"label": "31224",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 298,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 449
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59522,
45.5507
]
},
"properties": {
"trip": {
"id": "285283174",
"shortName": null,
"headsign": "Sud",
"startTime": "10:22:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "940089"
},
"route": {
"id": "94",
"shortName": "94",
"longName": "D'Iberville",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31225",
"label": "31225",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 125,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 10,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 450
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55475,
45.56538
]
},
"properties": {
"trip": {
"id": "285284013",
"shortName": null,
"headsign": "Sud",
"startTime": "10:01:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1360112"
},
"route": {
"id": "136",
"shortName": "136",
"longName": "Viau",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31228",
"label": "31228",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 115,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 27,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 452
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63886,
45.5764
]
},
"properties": {
"trip": {
"id": "284739229",
"shortName": null,
"headsign": "Est",
"startTime": "09:37:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1210266"
},
"route": {
"id": "121",
"shortName": "121",
"longName": "Sauvé / Côte-Vertu",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31807",
"label": "31807",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 29,
"odometer": 0,
"speed": 14
},
"agencyId": 1,
"currentStopSequence": 48,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1576687957,
"lastSeenAt": 1749752889,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 3106
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5714,
45.55991
]
},
"properties": {
"trip": {
"id": "284741297",
"shortName": null,
"headsign": "Sud destination Pie-IX / Notre-Dame",
"startTime": "09:51:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4390255"
},
"route": {
"id": "439",
"shortName": "439",
"longName": "Express Pie-IX",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31808",
"label": "31808",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 115,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 28,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574694966,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2528
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64304,
45.51484
]
},
"properties": {
"trip": {
"id": "284779147",
"shortName": null,
"headsign": "Nord",
"startTime": "09:56:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1650126"
},
"route": {
"id": "165",
"shortName": "165",
"longName": "Côte-des-Neiges",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31814",
"label": "31814",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 21,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 32,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575919820,
"lastSeenAt": 1749752820,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2983
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.87239,
45.47345
]
},
"properties": {
"trip": {
"id": "284780221",
"shortName": null,
"headsign": "Est",
"startTime": "10:24:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4700247"
},
"route": {
"id": "470",
"shortName": "470",
"longName": "Express Pierrefonds",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31815",
"label": "31815",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 14,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 8,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 462
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64593,
45.53431
]
},
"properties": {
"trip": {
"id": "284776938",
"shortName": null,
"headsign": "Nord",
"startTime": "09:53:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "800106"
},
"route": {
"id": "80",
"shortName": "80",
"longName": "Avenue du Parc",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31816",
"label": "31816",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 36,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 28,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 463
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57912,
45.49564
]
},
"properties": {
"trip": {
"id": "284779114",
"shortName": null,
"headsign": "Nord",
"startTime": "10:41:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1650126"
},
"route": {
"id": "165",
"shortName": "165",
"longName": "Côte-des-Neiges",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31820",
"label": "31820",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574439923,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1726
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59522,
45.55781
]
},
"properties": {
"trip": {
"id": "284739417",
"shortName": null,
"headsign": "Nord",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "670126"
},
"route": {
"id": "67",
"shortName": "67",
"longName": "Saint-Michel",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31826",
"label": "31826",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 288,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 18,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 467
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64278,
45.57174
]
},
"properties": {
"trip": {
"id": "284739428",
"shortName": null,
"headsign": "Est",
"startTime": "09:45:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1210266"
},
"route": {
"id": "121",
"shortName": "121",
"longName": "Sauvé / Côte-Vertu",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31832",
"label": "31832",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 33,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 45,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575270370,
"lastSeenAt": 1749753031,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 2824
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55235,
45.54897
]
},
"properties": {
"trip": {
"id": "284739365",
"shortName": null,
"headsign": "Sud",
"startTime": "09:53:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4670078"
},
"route": {
"id": "467",
"shortName": "467",
"longName": "Express Saint-Michel",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31834",
"label": "31834",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 114,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 18,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 471
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64207,
45.59629
]
},
"properties": {
"trip": {
"id": "284741453",
"shortName": null,
"headsign": "Nord destination Cégep Marie-Victorin",
"startTime": "09:49:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4390256"
},
"route": {
"id": "439",
"shortName": "439",
"longName": "Express Pie-IX",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31835",
"label": "31835",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 28,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 23,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 472
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61245,
45.56514
]
},
"properties": {
"trip": {
"id": "284739500",
"shortName": null,
"headsign": "Nord",
"startTime": "10:04:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "670126"
},
"route": {
"id": "67",
"shortName": "67",
"longName": "Saint-Michel",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31836",
"label": "31836",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 295,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 25,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574437210,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 1402
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63238,
45.60243
]
},
"properties": {
"trip": {
"id": "284738979",
"shortName": null,
"headsign": "Est",
"startTime": "09:44:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "690225"
},
"route": {
"id": "69",
"shortName": "69",
"longName": "Gouin",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31840",
"label": "31840",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 57,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 474
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6562,
45.55051
]
},
"properties": {
"trip": {
"id": "284739549",
"shortName": null,
"headsign": "Est",
"startTime": "09:55:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1210266"
},
"route": {
"id": "121",
"shortName": "121",
"longName": "Sauvé / Côte-Vertu",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31843",
"label": "31843",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 31,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 477
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.7188,
45.53158
]
},
"properties": {
"trip": {
"id": "284738573",
"shortName": null,
"headsign": "Est",
"startTime": "10:34:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "690225"
},
"route": {
"id": "69",
"shortName": "69",
"longName": "Gouin",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31844",
"label": "31844",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1580434568,
"lastSeenAt": 1749753030,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 3314
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61974,
45.57914
]
},
"properties": {
"trip": {
"id": "284741397",
"shortName": null,
"headsign": "Nord destination Laval",
"startTime": "09:59:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4390254"
},
"route": {
"id": "439",
"shortName": "439",
"longName": "Express Pie-IX",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31850",
"label": "31850",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 302,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 18,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574437813,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 1487
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65056,
45.58398
]
},
"properties": {
"trip": {
"id": "284739331",
"shortName": null,
"headsign": "Sud",
"startTime": "10:29:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "670125"
},
"route": {
"id": "67",
"shortName": "67",
"longName": "Saint-Michel",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31854",
"label": "31854",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 482
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55136,
45.54692
]
},
"properties": {
"trip": {
"id": "284739694",
"shortName": null,
"headsign": "Nord",
"startTime": "10:36:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "670126"
},
"route": {
"id": "67",
"shortName": "67",
"longName": "Saint-Michel",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31857",
"label": "31857",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 484
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56859,
45.54963
]
},
"properties": {
"trip": {
"id": "284738900",
"shortName": null,
"headsign": "Sud",
"startTime": "09:54:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "670125"
},
"route": {
"id": "67",
"shortName": "67",
"longName": "Saint-Michel",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31859",
"label": "31859",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574433305,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 1156
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62104,
45.60759
]
},
"properties": {
"trip": {
"id": "284741329",
"shortName": null,
"headsign": "Sud destination Pie-IX / Notre-Dame",
"startTime": "10:18:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4390255"
},
"route": {
"id": "439",
"shortName": "439",
"longName": "Express Pie-IX",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31861",
"label": "31861",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 11,
"currentStatus": 2,
"congestionLevel": 3,
"occupancyStatus": 1,
"firstSeenAt": 1579647397,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 3277
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60847,
45.61941
]
},
"properties": {
"trip": {
"id": "284741526",
"shortName": null,
"headsign": "Nord destination Cégep Marie-Victorin",
"startTime": "09:18:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4390256"
},
"route": {
"id": "439",
"shortName": "439",
"longName": "Express Pie-IX",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "31862",
"label": "31862",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 36,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574698822,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 2548
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58038,
45.61679
]
},
"properties": {
"trip": {
"id": "285028680",
"shortName": null,
"headsign": "Nord",
"startTime": "09:39:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "280922"
},
"route": {
"id": "28",
"shortName": "28",
"longName": "Honoré-Beaugrand",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "32001",
"label": "32001",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 26,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 47,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1577506115,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 3175
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59792,
45.53164
]
},
"properties": {
"trip": {
"id": "284727840",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:36:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1610134"
},
"route": {
"id": "161",
"shortName": "161",
"longName": "Van Horne",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "32006",
"label": "32006",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 488
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6685,
45.53542
]
},
"properties": {
"trip": {
"id": "284728052",
"shortName": null,
"headsign": "Nord",
"startTime": "10:05:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1790192"
},
"route": {
"id": "179",
"shortName": "179",
"longName": "De l'Acadie",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "32007",
"label": "32007",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 254,
"odometer": 0,
"speed": 3
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1575043216,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 2776
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58292,
45.51369
]
},
"properties": {
"trip": {
"id": "284727161",
"shortName": null,
"headsign": "Sud",
"startTime": "09:56:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1290221"
},
"route": {
"id": "129",
"shortName": "129",
"longName": "Côte-Sainte-Catherine",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "32013",
"label": "32013",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 123,
"odometer": 0,
"speed": 4
},
"agencyId": 1,
"currentStopSequence": 31,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574785231,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
7
]
},
"id": 2652
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57914,
45.64913
]
},
"properties": {
"trip": {
"id": "285029331",
"shortName": null,
"headsign": "Est",
"startTime": "09:38:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "430204"
},
"route": {
"id": "43",
"shortName": "43",
"longName": "Monselet",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "32015",
"label": "32015",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 38,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 56,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575683434,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2953
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60522,
45.58448
]
},
"properties": {
"trip": {
"id": "285282627",
"shortName": null,
"headsign": "Sud",
"startTime": "10:23:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1360112"
},
"route": {
"id": "136",
"shortName": "136",
"longName": "Viau",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "32017",
"label": "32017",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 120,
"odometer": 0,
"speed": 26
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575336270,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2842
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5753,
45.57882
]
},
"properties": {
"trip": {
"id": "285030084",
"shortName": null,
"headsign": "Est",
"startTime": "10:19:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1410585"
},
"route": {
"id": "141",
"shortName": "141",
"longName": "Jean-Talon Est",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "32020",
"label": "32020",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 25,
"odometer": 0,
"speed": 25
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574817270,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2677
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58812,
45.62073
]
},
"properties": {
"trip": {
"id": "285030167",
"shortName": null,
"headsign": "Nord",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "440174"
},
"route": {
"id": "44",
"shortName": "44",
"longName": "Armand-Bombardier",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "32023",
"label": "32023",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 53,
"odometer": 0,
"speed": 34
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 495
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49963,
45.64349
]
},
"properties": {
"trip": {
"id": "285030777",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1870218"
},
"route": {
"id": "187",
"shortName": "187",
"longName": "René-Lévesque",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "32025",
"label": "32025",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 193,
"odometer": 0,
"speed": 28
},
"agencyId": 1,
"currentStopSequence": 26,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 3,
"firstSeenAt": 1575085598,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2806
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68871,
45.53803
]
},
"properties": {
"trip": {
"id": "285007462",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:18:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1640159"
},
"route": {
"id": "164",
"shortName": "164",
"longName": "Dudemaine",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "32030",
"label": "32030",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 219,
"odometer": 0,
"speed": 22
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 498
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53585,
45.54782
]
},
"properties": {
"trip": {
"id": "284741366",
"shortName": null,
"headsign": "Nord destination Laval",
"startTime": "10:29:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4390254"
},
"route": {
"id": "439",
"shortName": "439",
"longName": "Express Pie-IX",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "32801",
"label": "32801",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 24,
"odometer": 0,
"speed": 4
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 499
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66756,
45.55614
]
},
"properties": {
"trip": {
"id": "284739461",
"shortName": null,
"headsign": "Est",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "690225"
},
"route": {
"id": "69",
"shortName": "69",
"longName": "Gouin",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "32805",
"label": "32805",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 24,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 501
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73875,
45.49029
]
},
"properties": {
"trip": {
"id": "284779191",
"shortName": null,
"headsign": "Est",
"startTime": "09:52:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4700247"
},
"route": {
"id": "470",
"shortName": "470",
"longName": "Express Pierrefonds",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "33804",
"label": "33804",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 95,
"odometer": 0,
"speed": 81
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 507
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60601,
45.56249
]
},
"properties": {
"trip": {
"id": "284738486",
"shortName": null,
"headsign": "Nord",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4670079"
},
"route": {
"id": "467",
"shortName": "467",
"longName": "Express Saint-Michel",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "33806",
"label": "33806",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 325,
"odometer": 0,
"speed": 11
},
"agencyId": 1,
"currentStopSequence": 10,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1578934250,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 3235
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83555,
45.47371
]
},
"properties": {
"trip": {
"id": "284780049",
"shortName": null,
"headsign": "Est",
"startTime": "10:08:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4700247"
},
"route": {
"id": "470",
"shortName": "470",
"longName": "Express Pierrefonds",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "33811",
"label": "33811",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1577121641,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 3155
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61941,
45.49504
]
},
"properties": {
"trip": {
"id": "284778954",
"shortName": null,
"headsign": "Sud",
"startTime": "10:11:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1650117"
},
"route": {
"id": "165",
"shortName": "165",
"longName": "Côte-des-Neiges",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "33817",
"label": "33817",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 119,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 511
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56715,
45.51048
]
},
"properties": {
"trip": {
"id": "284777023",
"shortName": null,
"headsign": "Sud",
"startTime": "09:49:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "800107"
},
"route": {
"id": "80",
"shortName": "80",
"longName": "Avenue du Parc",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "33819",
"label": "33819",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 200,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 30,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1579226460,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 3257
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.88374,
45.46316
]
},
"properties": {
"trip": {
"id": "284778991",
"shortName": null,
"headsign": "Ouest destination Usine de filtration",
"startTime": "09:46:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4700259"
},
"route": {
"id": "470",
"shortName": "470",
"longName": "Express Pierrefonds",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "33820",
"label": "33820",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 229,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1582756207,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 3380
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57176,
45.50859
]
},
"properties": {
"trip": {
"id": "284777002",
"shortName": null,
"headsign": "Nord",
"startTime": "10:28:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "800106"
},
"route": {
"id": "80",
"shortName": "80",
"longName": "Avenue du Parc",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "33825",
"label": "33825",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 303,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 3,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 512
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68372,
45.51342
]
},
"properties": {
"trip": {
"id": "284780026",
"shortName": null,
"headsign": "Est",
"startTime": "09:36:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4700247"
},
"route": {
"id": "470",
"shortName": "470",
"longName": "Express Pierrefonds",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "33838",
"label": "33838",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749752587,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 520
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63395,
45.50166
]
},
"properties": {
"trip": {
"id": "284778894",
"shortName": null,
"headsign": "Nord",
"startTime": "10:08:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1650126"
},
"route": {
"id": "165",
"shortName": "165",
"longName": "Côte-des-Neiges",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "33840",
"label": "33840",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 305,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1575569805,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2923
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57933,
45.49386
]
},
"properties": {
"trip": {
"id": "284779243",
"shortName": null,
"headsign": "Sud",
"startTime": "09:59:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1650117"
},
"route": {
"id": "165",
"shortName": "165",
"longName": "Côte-des-Neiges",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "33841",
"label": "33841",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 128,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 33,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1580794443,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 3319
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54871,
45.66846
]
},
"properties": {
"trip": {
"id": "285029014",
"shortName": null,
"headsign": "Sud",
"startTime": "10:25:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4490189"
},
"route": {
"id": "449",
"shortName": "449",
"longName": "Express Rivière-des-Prairies",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "36003",
"label": "36003",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 233,
"odometer": 0,
"speed": 30
},
"agencyId": 1,
"currentStopSequence": 9,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 522
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60599,
45.56779
]
},
"properties": {
"trip": {
"id": "285030712",
"shortName": null,
"headsign": "Est",
"startTime": "10:16:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1920150"
},
"route": {
"id": "192",
"shortName": "192",
"longName": "Robert",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "36008",
"label": "36008",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 37,
"odometer": 0,
"speed": 30
},
"agencyId": 1,
"currentStopSequence": 16,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 524
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55808,
45.60817
]
},
"properties": {
"trip": {
"id": "285028320",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:19:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1410586"
},
"route": {
"id": "141",
"shortName": "141",
"longName": "Jean-Talon Est",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "36013",
"label": "36013",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 196,
"odometer": 0,
"speed": 41
},
"agencyId": 1,
"currentStopSequence": 18,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574403550,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 1048
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56471,
45.61774
]
},
"properties": {
"trip": {
"id": "285029722",
"shortName": null,
"headsign": "Sud",
"startTime": "10:04:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4490189"
},
"route": {
"id": "449",
"shortName": "449",
"longName": "Express Rivière-des-Prairies",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "36016",
"label": "36016",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 122,
"odometer": 0,
"speed": 44
},
"agencyId": 1,
"currentStopSequence": 38,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574403204,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 848
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60044,
45.60342
]
},
"properties": {
"trip": {
"id": "285028565",
"shortName": null,
"headsign": "Nord",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "330287"
},
"route": {
"id": "33",
"shortName": "33",
"longName": "Langelier",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "36019",
"label": "36019",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 312,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 33,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574436007,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 1286
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66729,
45.55586
]
},
"properties": {
"trip": {
"id": "285028219",
"shortName": null,
"headsign": "Est",
"startTime": "10:31:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "490344"
},
"route": {
"id": "49",
"shortName": "49",
"longName": "Maurice-Duplessis",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "36022",
"label": "36022",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 22,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574445040,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2148
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57127,
45.6592
]
},
"properties": {
"trip": {
"id": "285029454",
"shortName": null,
"headsign": "Est",
"startTime": "10:44:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "860188"
},
"route": {
"id": "86",
"shortName": "86",
"longName": "Pointe-aux-Trembles",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "36024",
"label": "36024",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 324,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 530
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63733,
45.54746
]
},
"properties": {
"trip": {
"id": "285029671",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:50:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1920151"
},
"route": {
"id": "192",
"shortName": "192",
"longName": "Robert",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "36025",
"label": "36025",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 211,
"odometer": 0,
"speed": 41
},
"agencyId": 1,
"currentStopSequence": 49,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436307,
"lastSeenAt": 1749752974,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 1310
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49776,
45.68998
]
},
"properties": {
"trip": {
"id": "285030852",
"shortName": null,
"headsign": "Est",
"startTime": "10:02:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1860250"
},
"route": {
"id": "186",
"shortName": "186",
"longName": "Sherbrooke-Est",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "36035",
"label": "36035",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 17,
"odometer": 0,
"speed": 24
},
"agencyId": 1,
"currentStopSequence": 42,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574403205,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 849
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54693,
45.57639
]
},
"properties": {
"trip": {
"id": "285030424",
"shortName": null,
"headsign": "Sud via Perras / Lacordaire",
"startTime": "09:33:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4320137"
},
"route": {
"id": "432",
"shortName": "432",
"longName": "Express Lacordaire",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "36040",
"label": "36040",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 26,
"odometer": 0,
"speed": 19
},
"agencyId": 1,
"currentStopSequence": 31,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574737122,
"lastSeenAt": 1749752583,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2630
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.52,
45.62403
]
},
"properties": {
"trip": {
"id": "285030889",
"shortName": null,
"headsign": "Est",
"startTime": "10:22:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1870223"
},
"route": {
"id": "187",
"shortName": "187",
"longName": "René-Lévesque",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "36047",
"label": "36047",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 14,
"odometer": 0,
"speed": 55
},
"agencyId": 1,
"currentStopSequence": 8,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1575594268,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2926
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60574,
45.4729
]
},
"properties": {
"trip": {
"id": "284777896",
"shortName": null,
"headsign": "Est",
"startTime": "10:15:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1050151"
},
"route": {
"id": "105",
"shortName": "105",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37004",
"label": "37004",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 46,
"odometer": 0,
"speed": 29
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574695930,
"lastSeenAt": 1749753027,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2532
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73817,
45.44804
]
},
"properties": {
"trip": {
"id": "284780385",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:06:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4850087"
},
"route": {
"id": "485",
"shortName": "485",
"longName": "Express Antoine-Faucon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37005",
"label": "37005",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 264,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436912,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1377
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63895,
45.49495
]
},
"properties": {
"trip": {
"id": "284778244",
"shortName": null,
"headsign": "Nord",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1240125"
},
"route": {
"id": "124",
"shortName": "124",
"longName": "Victoria",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37007",
"label": "37007",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 304,
"odometer": 0,
"speed": 30
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1580796906,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 3321
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64452,
45.45818
]
},
"properties": {
"trip": {
"id": "284777848",
"shortName": null,
"headsign": "Est",
"startTime": "10:33:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1050151"
},
"route": {
"id": "105",
"shortName": "105",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37008",
"label": "37008",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 121,
"odometer": 0,
"speed": 30
},
"agencyId": 1,
"currentStopSequence": 4,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574435710,
"lastSeenAt": 1749753029,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1263
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63105,
45.46262
]
},
"properties": {
"trip": {
"id": "284777698",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:12:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1050147"
},
"route": {
"id": "105",
"shortName": "105",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37011",
"label": "37011",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 53,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 18,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 541
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.76596,
45.49833
]
},
"properties": {
"trip": {
"id": "284778572",
"shortName": null,
"headsign": "Est",
"startTime": "10:40:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1750105"
},
"route": {
"id": "175",
"shortName": "175",
"longName": "Griffith / Saint-François",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37013",
"label": "37013",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 141,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574434506,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1188
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66418,
45.50677
]
},
"properties": {
"trip": {
"id": "284776755",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:12:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "160088"
},
"route": {
"id": "16",
"shortName": "16",
"longName": "Graham",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37014",
"label": "37014",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 214,
"odometer": 0,
"speed": 51
},
"agencyId": 1,
"currentStopSequence": 23,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 542
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62921,
45.46358
]
},
"properties": {
"trip": {
"id": "284777653",
"shortName": null,
"headsign": "Est",
"startTime": "10:24:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1050151"
},
"route": {
"id": "105",
"shortName": "105",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37017",
"label": "37017",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 45,
"odometer": 0,
"speed": 20
},
"agencyId": 1,
"currentStopSequence": 10,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574439624,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1695
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66083,
45.47672
]
},
"properties": {
"trip": {
"id": "284778764",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:55:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1620099"
},
"route": {
"id": "162",
"shortName": "162",
"longName": "Westminster",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37018",
"label": "37018",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 28,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 36,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574403205,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 852
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60511,
45.47335
]
},
"properties": {
"trip": {
"id": "284777950",
"shortName": null,
"headsign": "Est",
"startTime": "10:05:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1050151"
},
"route": {
"id": "105",
"shortName": "105",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37019",
"label": "37019",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 35,
"odometer": 0,
"speed": 14
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1576118923,
"lastSeenAt": 1749752497,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 3023
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66229,
45.45927
]
},
"properties": {
"trip": {
"id": "284777801",
"shortName": null,
"headsign": "Est",
"startTime": "10:29:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1030154"
},
"route": {
"id": "103",
"shortName": "103",
"longName": "Monkland",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37027",
"label": "37027",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 58,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 3,
"occupancyStatus": 1,
"firstSeenAt": 1581371164,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 3344
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60424,
45.52826
]
},
"properties": {
"trip": {
"id": "284739783",
"shortName": null,
"headsign": "Nord",
"startTime": "10:04:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "550147"
},
"route": {
"id": "55",
"shortName": "55",
"longName": "Boulevard Saint-Laurent",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37028",
"label": "37028",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 303,
"odometer": 0,
"speed": 38
},
"agencyId": 1,
"currentStopSequence": 23,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 546
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61313,
45.54076
]
},
"properties": {
"trip": {
"id": "284777161",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:13:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "930087"
},
"route": {
"id": "93",
"shortName": "93",
"longName": "Jean-Talon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37030",
"label": "37030",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 199,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575594388,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2927
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62633,
45.47174
]
},
"properties": {
"trip": {
"id": "284778691",
"shortName": null,
"headsign": "Est",
"startTime": "10:08:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1620101"
},
"route": {
"id": "162",
"shortName": "162",
"longName": "Westminster",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37033",
"label": "37033",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 34,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 30,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574901627,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2712
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62862,
45.51027
]
},
"properties": {
"trip": {
"id": "284778468",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:07:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1600126"
},
"route": {
"id": "160",
"shortName": "160",
"longName": "Barclay",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37035",
"label": "37035",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 213,
"odometer": 0,
"speed": 25
},
"agencyId": 1,
"currentStopSequence": 23,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 548
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.90163,
45.43764
]
},
"properties": {
"trip": {
"id": "284777745",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:20:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "680415"
},
"route": {
"id": "68",
"shortName": "68",
"longName": "Pierrefonds",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37043",
"label": "37043",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 79,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749752877,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 553
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59844,
45.55872
]
},
"properties": {
"trip": {
"id": "284777134",
"shortName": null,
"headsign": "Est",
"startTime": "10:11:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "930090"
},
"route": {
"id": "93",
"shortName": "93",
"longName": "Jean-Talon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37048",
"label": "37048",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 31,
"odometer": 0,
"speed": 20
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574546654,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2488
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62357,
45.47476
]
},
"properties": {
"trip": {
"id": "284777087",
"shortName": null,
"headsign": "Est",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1030154"
},
"route": {
"id": "103",
"shortName": "103",
"longName": "Monkland",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37053",
"label": "37053",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 34,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574435107,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1224
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56168,
45.51559
]
},
"properties": {
"trip": {
"id": "284780634",
"shortName": null,
"headsign": "Est trajet 1 gare d’autocars de Montréal.",
"startTime": "09:50:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "7471231"
},
"route": {
"id": "747",
"shortName": "747",
"longName": "YUL Aéroport / Centre-Ville",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37056",
"label": "37056",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 14,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 557
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66194,
45.5003
]
},
"properties": {
"trip": {
"id": "284777335",
"shortName": null,
"headsign": "Est",
"startTime": "10:07:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1000244"
},
"route": {
"id": "100",
"shortName": "100",
"longName": "Crémazie",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37068",
"label": "37068",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 23,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1575562823,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2917
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.85016,
45.45893
]
},
"properties": {
"trip": {
"id": "284780369",
"shortName": null,
"headsign": "Est",
"startTime": "10:17:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4850088"
},
"route": {
"id": "485",
"shortName": "485",
"longName": "Express Antoine-Faucon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37069",
"label": "37069",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 325,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 561
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70094,
45.50649
]
},
"properties": {
"trip": {
"id": "284778433",
"shortName": null,
"headsign": "Nord",
"startTime": "10:03:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1280153"
},
"route": {
"id": "128",
"shortName": "128",
"longName": "Saint-Laurent",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37070",
"label": "37070",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 35,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574412320,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1131
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6221,
45.49826
]
},
"properties": {
"trip": {
"id": "284779376",
"shortName": null,
"headsign": "Nord",
"startTime": "10:29:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1190075"
},
"route": {
"id": "119",
"shortName": "119",
"longName": "Rockland",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37074",
"label": "37074",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 32,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574434506,
"lastSeenAt": 1749753031,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1189
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61337,
45.51493
]
},
"properties": {
"trip": {
"id": "284778204",
"shortName": null,
"headsign": "Sud",
"startTime": "10:07:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1190074"
},
"route": {
"id": "119",
"shortName": "119",
"longName": "Rockland",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37075",
"label": "37075",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 122,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 28,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574440226,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1762
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60564,
45.52356
]
},
"properties": {
"trip": {
"id": "284778507",
"shortName": null,
"headsign": "Est",
"startTime": "10:02:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1600123"
},
"route": {
"id": "160",
"shortName": "160",
"longName": "Barclay",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37081",
"label": "37081",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 33,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 568
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70069,
45.47514
]
},
"properties": {
"trip": {
"id": "284777237",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:57:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1000245"
},
"route": {
"id": "100",
"shortName": "100",
"longName": "Crémazie",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37082",
"label": "37082",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 313,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 569
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65079,
45.48899
]
},
"properties": {
"trip": {
"id": "284779468",
"shortName": null,
"headsign": "Sud",
"startTime": "10:36:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1660191"
},
"route": {
"id": "166",
"shortName": "166",
"longName": "Queen-Mary",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37083",
"label": "37083",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574437814,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1488
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70732,
45.44807
]
},
"properties": {
"trip": {
"id": "284780328",
"shortName": null,
"headsign": "Est",
"startTime": "09:46:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4850088"
},
"route": {
"id": "485",
"shortName": "485",
"longName": "Express Antoine-Faucon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37085",
"label": "37085",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 92,
"odometer": 0,
"speed": 81
},
"agencyId": 1,
"currentStopSequence": 26,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574477081,
"lastSeenAt": 1749753030,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2446
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67744,
45.51818
]
},
"properties": {
"trip": {
"id": "284779710",
"shortName": null,
"headsign": "Est",
"startTime": "10:11:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1710235"
},
"route": {
"id": "171",
"shortName": "171",
"longName": "Henri-Bourassa",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37087",
"label": "37087",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574439019,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1620
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67764,
45.50404
]
},
"properties": {
"trip": {
"id": "284779836",
"shortName": null,
"headsign": "Est",
"startTime": "10:04:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1750105"
},
"route": {
"id": "175",
"shortName": "175",
"longName": "Griffith / Saint-François",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37088",
"label": "37088",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 40,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574440850,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1844
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65249,
45.50488
]
},
"properties": {
"trip": {
"id": "284778277",
"shortName": null,
"headsign": "Sud",
"startTime": "10:16:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1240126"
},
"route": {
"id": "124",
"shortName": "124",
"longName": "Victoria",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37089",
"label": "37089",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 13,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574787998,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2661
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70144,
45.5063
]
},
"properties": {
"trip": {
"id": "284778418",
"shortName": null,
"headsign": "Sud",
"startTime": "09:49:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1280152"
},
"route": {
"id": "128",
"shortName": "128",
"longName": "Saint-Laurent",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37090",
"label": "37090",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 218,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 40,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 570
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70654,
45.52259
]
},
"properties": {
"trip": {
"id": "284778395",
"shortName": null,
"headsign": "Nord",
"startTime": "09:33:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1280153"
},
"route": {
"id": "128",
"shortName": "128",
"longName": "Saint-Laurent",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37092",
"label": "37092",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 63,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1578498021,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 3213
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71011,
45.52542
]
},
"properties": {
"trip": {
"id": "284779599",
"shortName": null,
"headsign": "Ouest destination Gare Bois-Franc",
"startTime": "09:31:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1710234"
},
"route": {
"id": "171",
"shortName": "171",
"longName": "Henri-Bourassa",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37095",
"label": "37095",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 45,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749752467,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 572
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62313,
45.47523
]
},
"properties": {
"trip": {
"id": "284777548",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:26:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1620099"
},
"route": {
"id": "162",
"shortName": "162",
"longName": "Westminster",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37097",
"label": "37097",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 4,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574439019,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1621
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68521,
45.52358
]
},
"properties": {
"trip": {
"id": "284778362",
"shortName": null,
"headsign": "Sud",
"startTime": "10:21:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1280152"
},
"route": {
"id": "128",
"shortName": "128",
"longName": "Saint-Laurent",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37098",
"label": "37098",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 9,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574784259,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2647
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67175,
45.52436
]
},
"properties": {
"trip": {
"id": "284779516",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1710232"
},
"route": {
"id": "171",
"shortName": "171",
"longName": "Henri-Bourassa",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37102",
"label": "37102",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 212,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 3,
"firstSeenAt": 1574426404,
"lastSeenAt": 1749753030,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1145
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71931,
45.48536
]
},
"properties": {
"trip": {
"id": "284779430",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:11:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1750104"
},
"route": {
"id": "175",
"shortName": "175",
"longName": "Griffith / Saint-François",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "37104",
"label": "37104",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574873674,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2703
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58588,
45.58118
]
},
"properties": {
"trip": {
"id": "285284097",
"shortName": null,
"headsign": "Nord destination Antonio-Dagenais / Lespinay",
"startTime": "10:05:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1310099"
},
"route": {
"id": "131",
"shortName": "131",
"longName": "De l'Assomption",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38006",
"label": "38006",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 122,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 15,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 576
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56676,
45.52176
]
},
"properties": {
"trip": {
"id": "285284035",
"shortName": null,
"headsign": "Est",
"startTime": "09:46:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "240185"
},
"route": {
"id": "24",
"shortName": "24",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38008",
"label": "38008",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 35,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 3,
"firstSeenAt": 1574445041,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 2151
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55535,
45.48707
]
},
"properties": {
"trip": {
"id": "285283464",
"shortName": null,
"headsign": "Sud via Wellington / Bridge",
"startTime": "10:20:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "740073"
},
"route": {
"id": "74",
"shortName": "74",
"longName": "Bridge",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38009",
"label": "38009",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 97,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 11,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574403205,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 857
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5488,
45.5319
]
},
"properties": {
"trip": {
"id": "285284046",
"shortName": null,
"headsign": "Sud",
"startTime": "08:36:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "550145"
},
"route": {
"id": "55",
"shortName": "55",
"longName": "Boulevard Saint-Laurent",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38023",
"label": "38023",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 46,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 582
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.597,
45.57753
]
},
"properties": {
"trip": {
"id": "285282824",
"shortName": null,
"headsign": "Nord",
"startTime": "10:13:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1360114"
},
"route": {
"id": "136",
"shortName": "136",
"longName": "Viau",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38025",
"label": "38025",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 301,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574737481,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 2632
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54174,
45.59849
]
},
"properties": {
"trip": {
"id": "285283713",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "850206"
},
"route": {
"id": "85",
"shortName": "85",
"longName": "Hochelaga",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38027",
"label": "38027",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 120,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 23,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 584
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53523,
45.46963
]
},
"properties": {
"trip": {
"id": "285283611",
"shortName": null,
"headsign": "Sud",
"startTime": "10:15:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1720009"
},
"route": {
"id": "172",
"shortName": "172",
"longName": "Du Golf",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38028",
"label": "38028",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 270,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574441758,
"lastSeenAt": 1749752891,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1948
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5528,
45.5243
]
},
"properties": {
"trip": {
"id": "285282993",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:04:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "340097"
},
"route": {
"id": "34",
"shortName": "34",
"longName": "Sainte-Catherine",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38029",
"label": "38029",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 27,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574731834,
"lastSeenAt": 1749753007,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 2613
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56234,
45.49902
]
},
"properties": {
"trip": {
"id": "285283550",
"shortName": null,
"headsign": "Nord",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "740072"
},
"route": {
"id": "74",
"shortName": "74",
"longName": "Bridge",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38031",
"label": "38031",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574439624,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1697
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62408,
45.55323
]
},
"properties": {
"trip": {
"id": "285282263",
"shortName": null,
"headsign": "Sud",
"startTime": "10:28:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "100075"
},
"route": {
"id": "10",
"shortName": "10",
"longName": "De Lorimier",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38033",
"label": "38033",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 3,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574438418,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1555
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53733,
45.58954
]
},
"properties": {
"trip": {
"id": "285284994",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:40:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "8110009"
},
"route": {
"id": "811",
"shortName": "811",
"longName": "Navette Services santé",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38034",
"label": "38034",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574441758,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1949
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69335,
45.44787
]
},
"properties": {
"trip": {
"id": "285008138",
"shortName": null,
"headsign": "Sud",
"startTime": "09:46:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1960210"
},
"route": {
"id": "196",
"shortName": "196",
"longName": "Parc-Industriel-Lachine",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38038",
"label": "38038",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 50,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 587
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72156,
45.53143
]
},
"properties": {
"trip": {
"id": "285010264",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:15:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4680086"
},
"route": {
"id": "468",
"shortName": "468",
"longName": "Express Pierrefonds / Gouin",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38041",
"label": "38041",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 5,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 3,
"firstSeenAt": 1574907402,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 2722
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73012,
45.52628
]
},
"properties": {
"trip": {
"id": "285007689",
"shortName": null,
"headsign": "Nord",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1700176"
},
"route": {
"id": "170",
"shortName": "170",
"longName": "Keller",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38042",
"label": "38042",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 26,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574612406,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 2501
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67638,
45.51029
]
},
"properties": {
"trip": {
"id": "285007251",
"shortName": null,
"headsign": "Est",
"startTime": "09:46:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "720182"
},
"route": {
"id": "72",
"shortName": "72",
"longName": "Alfred-Nobel",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38043",
"label": "38043",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 310,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 36,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574442060,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 1982
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6839,
45.51327
]
},
"properties": {
"trip": {
"id": "285007073",
"shortName": null,
"headsign": "Est",
"startTime": "10:02:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "700192"
},
"route": {
"id": "70",
"shortName": "70",
"longName": "Bois-Franc",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38046",
"label": "38046",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 43,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 3,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749752975,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 590
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.86952,
45.49183
]
},
"properties": {
"trip": {
"id": "285008930",
"shortName": null,
"headsign": "Nord",
"startTime": "10:04:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2070090"
},
"route": {
"id": "207",
"shortName": "207",
"longName": "Jacques-Bizard",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38047",
"label": "38047",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 227,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 41,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 591
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.8252,
45.43072
]
},
"properties": {
"trip": {
"id": "285008552",
"shortName": null,
"headsign": "Sud",
"startTime": "10:12:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2010212"
},
"route": {
"id": "201",
"shortName": "201",
"longName": "Saint-Charles / Saint-Jean",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38052",
"label": "38052",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 244,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 18,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 593
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.7514,
45.49733
]
},
"properties": {
"trip": {
"id": "285009820",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:55:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2170107"
},
"route": {
"id": "217",
"shortName": "217",
"longName": "Anse-à-l'Orme",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38054",
"label": "38054",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 44,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 30,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574437212,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 1408
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.84885,
45.48701
]
},
"properties": {
"trip": {
"id": "285008466",
"shortName": null,
"headsign": "Sud",
"startTime": "09:36:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2010212"
},
"route": {
"id": "201",
"shortName": "201",
"longName": "Saint-Charles / Saint-Jean",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38055",
"label": "38055",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 60,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 595
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6927,
45.50623
]
},
"properties": {
"trip": {
"id": "285008242",
"shortName": null,
"headsign": "Nord",
"startTime": "09:49:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1960208"
},
"route": {
"id": "196",
"shortName": "196",
"longName": "Parc-Industriel-Lachine",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38063",
"label": "38063",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 56,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574439020,
"lastSeenAt": 1749753029,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 1623
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68504,
45.51575
]
},
"properties": {
"trip": {
"id": "285008855",
"shortName": null,
"headsign": "Nord",
"startTime": "10:28:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1700176"
},
"route": {
"id": "170",
"shortName": "170",
"longName": "Keller",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38068",
"label": "38068",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574409323,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 1108
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71857,
45.53122
]
},
"properties": {
"trip": {
"id": "285009652",
"shortName": null,
"headsign": "Sud",
"startTime": "10:36:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "640165"
},
"route": {
"id": "64",
"shortName": "64",
"longName": "Grenet",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38072",
"label": "38072",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 602
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.81424,
45.51082
]
},
"properties": {
"trip": {
"id": "285009459",
"shortName": null,
"headsign": "Nord",
"startTime": "09:54:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2090097"
},
"route": {
"id": "209",
"shortName": "209",
"longName": "Des Sources",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38075",
"label": "38075",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 90,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 38,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574411421,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 1125
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69688,
45.46941
]
},
"properties": {
"trip": {
"id": "285008260",
"shortName": null,
"headsign": "Sud",
"startTime": "10:12:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1960210"
},
"route": {
"id": "196",
"shortName": "196",
"longName": "Parc-Industriel-Lachine",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38076",
"label": "38076",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 222,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 21,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 604
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.87389,
45.47746
]
},
"properties": {
"trip": {
"id": "285008568",
"shortName": null,
"headsign": "Nord",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2010213"
},
"route": {
"id": "201",
"shortName": "201",
"longName": "Saint-Charles / Saint-Jean",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38079",
"label": "38079",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 205,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 21,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574440227,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 1763
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.88466,
45.46268
]
},
"properties": {
"trip": {
"id": "285006920",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:48:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "680414"
},
"route": {
"id": "68",
"shortName": "68",
"longName": "Pierrefonds",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38081",
"label": "38081",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 235,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 63,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574471126,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 2323
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67307,
45.50825
]
},
"properties": {
"trip": {
"id": "285007348",
"shortName": null,
"headsign": "Nord",
"startTime": "10:29:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1170071"
},
"route": {
"id": "117",
"shortName": "117",
"longName": "O'Brien",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38082",
"label": "38082",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 310,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1576896516,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 3145
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70832,
45.52471
]
},
"properties": {
"trip": {
"id": "285006561",
"shortName": null,
"headsign": "Sud",
"startTime": "10:24:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "640165"
},
"route": {
"id": "64",
"shortName": "64",
"longName": "Grenet",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38083",
"label": "38083",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 132,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 9,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436309,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 1317
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83169,
45.46613
]
},
"properties": {
"trip": {
"id": "285009262",
"shortName": null,
"headsign": "Sud",
"startTime": "10:06:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2070089"
},
"route": {
"id": "207",
"shortName": "207",
"longName": "Jacques-Bizard",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38085",
"label": "38085",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 149,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749752765,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 606
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51265,
45.60275
]
},
"properties": {
"trip": {
"id": "285282309",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:27:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "220074"
},
"route": {
"id": "22",
"shortName": "22",
"longName": "Notre-Dame",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38089",
"label": "38089",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 179,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 7,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 609
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53103,
45.51162
]
},
"properties": {
"trip": {
"id": "285282461",
"shortName": null,
"headsign": "Est",
"startTime": "10:07:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "7770040"
},
"route": {
"id": "777",
"shortName": "777",
"longName": "Jean-Drapeau / Casino / Bonaventure",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38094",
"label": "38094",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 305,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 11,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749752775,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 613
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54875,
45.54372
]
},
"properties": {
"trip": {
"id": "285283958",
"shortName": null,
"headsign": "Est",
"startTime": "10:06:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "290081"
},
"route": {
"id": "29",
"shortName": "29",
"longName": "Rachel",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38098",
"label": "38098",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 117,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 30,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574436912,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1378
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55254,
45.44886
]
},
"properties": {
"trip": {
"id": "285282535",
"shortName": null,
"headsign": "Sud",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1760010"
},
"route": {
"id": "176",
"shortName": "176",
"longName": "Berlioz",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38099",
"label": "38099",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 266,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 14,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749752451,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 616
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60503,
45.47762
]
},
"properties": {
"trip": {
"id": "285283437",
"shortName": null,
"headsign": "Est",
"startTime": "10:22:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "240185"
},
"route": {
"id": "24",
"shortName": "24",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "38100",
"label": "38100",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 39,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 8,
"currentStatus": 2,
"congestionLevel": 3,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 617
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57997,
45.48465
]
},
"properties": {
"trip": {
"id": "284780684",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "7471239"
},
"route": {
"id": "747",
"shortName": "747",
"longName": "YUL Aéroport / Centre-Ville",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39006",
"label": "39006",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 335,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 3,
"firstSeenAt": 1574439020,
"lastSeenAt": 1749753031,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 1625
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66825,
45.44633
]
},
"properties": {
"trip": {
"id": "284780587",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:49:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "7471239"
},
"route": {
"id": "747",
"shortName": "747",
"longName": "YUL Aéroport / Centre-Ville",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39010",
"label": "39010",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 286,
"odometer": 0,
"speed": 54
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574698223,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 2544
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56026,
45.51492
]
},
"properties": {
"trip": {
"id": "284780563",
"shortName": null,
"headsign": "Est trajet 1 gare d’autocars de Montréal.",
"startTime": "09:33:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "7471231"
},
"route": {
"id": "747",
"shortName": "747",
"longName": "YUL Aéroport / Centre-Ville",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39011",
"label": "39011",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 622
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57448,
45.48687
]
},
"properties": {
"trip": {
"id": "284780469",
"shortName": null,
"headsign": "Est trajet 1 gare d’autocars de Montréal.",
"startTime": "10:06:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "7471231"
},
"route": {
"id": "747",
"shortName": "747",
"longName": "YUL Aéroport / Centre-Ville",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39015",
"label": "39015",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 51,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 3,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 3,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
9
]
},
"id": 624
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55148,
45.52534
]
},
"properties": {
"trip": {
"id": "285283732",
"shortName": null,
"headsign": "Est",
"startTime": "10:01:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1500060"
},
"route": {
"id": "150",
"shortName": "150",
"longName": "René-Lévesque",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39022",
"label": "39022",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 626
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5806,
45.53898
]
},
"properties": {
"trip": {
"id": "285284058",
"shortName": null,
"headsign": "Nord",
"startTime": "10:17:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "100073"
},
"route": {
"id": "10",
"shortName": "10",
"longName": "De Lorimier",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39024",
"label": "39024",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 298,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 14,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574403208,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 861
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60117,
45.48098
]
},
"properties": {
"trip": {
"id": "285284125",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:46:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "240184"
},
"route": {
"id": "24",
"shortName": "24",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39025",
"label": "39025",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 215,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 41,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574403208,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 862
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55247,
45.54509
]
},
"properties": {
"trip": {
"id": "285283572",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:37:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "850206"
},
"route": {
"id": "85",
"shortName": "85",
"longName": "Hochelaga",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39026",
"label": "39026",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 52,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574445043,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 2157
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.552,
45.51153
]
},
"properties": {
"trip": {
"id": "285284814",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:26:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "500003"
},
"route": {
"id": "50",
"shortName": "50",
"longName": "Vieux-Montréal / Vieux-Port",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39034",
"label": "39034",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 112,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574440528,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1806
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56009,
45.53922
]
},
"properties": {
"trip": {
"id": "285283769",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:42:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "240184"
},
"route": {
"id": "24",
"shortName": "24",
"longName": "Sherbrooke",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39039",
"label": "39039",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574409625,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 1114
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54123,
45.56366
]
},
"properties": {
"trip": {
"id": "285284156",
"shortName": null,
"headsign": "Est",
"startTime": "10:11:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "850202"
},
"route": {
"id": "85",
"shortName": "85",
"longName": "Hochelaga",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39040",
"label": "39040",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 18,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1577122007,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
3
]
},
"id": 3157
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59749,
45.62622
]
},
"properties": {
"trip": {
"id": "285030757",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:12:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "490345"
},
"route": {
"id": "49",
"shortName": "49",
"longName": "Maurice-Duplessis",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39042",
"label": "39042",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 230,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 26,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574445043,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2160
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49693,
45.63048
]
},
"properties": {
"trip": {
"id": "285029982",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1890204"
},
"route": {
"id": "189",
"shortName": "189",
"longName": "Notre-Dame",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39043",
"label": "39043",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 217,
"odometer": 0,
"speed": 5
},
"agencyId": 1,
"currentStopSequence": 39,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 635
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55947,
45.66116
]
},
"properties": {
"trip": {
"id": "285030146",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:28:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "490345"
},
"route": {
"id": "49",
"shortName": "49",
"longName": "Maurice-Duplessis",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39045",
"label": "39045",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 233,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 5,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 636
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53465,
45.5965
]
},
"properties": {
"trip": {
"id": "285029544",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:35:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1410586"
},
"route": {
"id": "141",
"shortName": "141",
"longName": "Jean-Talon Est",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39049",
"label": "39049",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 639
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5714,
45.53852
]
},
"properties": {
"trip": {
"id": "285002429",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:01:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4270111"
},
"route": {
"id": "427",
"shortName": "427",
"longName": "Express Saint-Joseph",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39061",
"label": "39061",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1576686510,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 3103
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5957,
45.58598
]
},
"properties": {
"trip": {
"id": "285030587",
"shortName": null,
"headsign": "Sud",
"startTime": "10:07:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "320170"
},
"route": {
"id": "32",
"shortName": "32",
"longName": "Lacordaire",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39062",
"label": "39062",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1575307964,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2835
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54982,
45.5779
]
},
"properties": {
"trip": {
"id": "285029829",
"shortName": null,
"headsign": "Sud",
"startTime": "09:54:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "320170"
},
"route": {
"id": "32",
"shortName": "32",
"longName": "Lacordaire",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39067",
"label": "39067",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 107,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 37,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 648
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51727,
45.57962
]
},
"properties": {
"trip": {
"id": "285028926",
"shortName": null,
"headsign": "Sud",
"startTime": "09:30:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "330282"
},
"route": {
"id": "33",
"shortName": "33",
"longName": "Langelier",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39075",
"label": "39075",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 114,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 60,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1575513169,
"lastSeenAt": 1749752649,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2905
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50509,
45.674
]
},
"properties": {
"trip": {
"id": "285030689",
"shortName": null,
"headsign": "Est",
"startTime": "09:37:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "400084"
},
"route": {
"id": "40",
"shortName": "40",
"longName": "Henri-Bourassa-Est",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39076",
"label": "39076",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 41,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574441762,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 1951
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63986,
45.5993
]
},
"properties": {
"trip": {
"id": "285030496",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:56:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "490345"
},
"route": {
"id": "49",
"shortName": "49",
"longName": "Maurice-Duplessis",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39087",
"label": "39087",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 46,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574437213,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 1410
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66048,
45.56655
]
},
"properties": {
"trip": {
"id": "285028799",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:41:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "490345"
},
"route": {
"id": "49",
"shortName": "49",
"longName": "Maurice-Duplessis",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39091",
"label": "39091",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 51,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574439626,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 1700
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59673,
45.63836
]
},
"properties": {
"trip": {
"id": "285028283",
"shortName": null,
"headsign": "Nord",
"startTime": "09:46:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "440174"
},
"route": {
"id": "44",
"shortName": "44",
"longName": "Armand-Bombardier",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39100",
"label": "39100",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 31,
"currentStatus": 1,
"congestionLevel": 3,
"occupancyStatus": 1,
"firstSeenAt": 1574445044,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2162
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56348,
45.65894
]
},
"properties": {
"trip": {
"id": "285029378",
"shortName": null,
"headsign": "Est",
"startTime": "09:37:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "490344"
},
"route": {
"id": "49",
"shortName": "49",
"longName": "Maurice-Duplessis",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39114",
"label": "39114",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 54,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 46,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574409325,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 1109
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64662,
45.59041
]
},
"properties": {
"trip": {
"id": "285028164",
"shortName": null,
"headsign": "Est",
"startTime": "10:37:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "430204"
},
"route": {
"id": "43",
"shortName": "43",
"longName": "Monselet",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39115",
"label": "39115",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 667
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57413,
45.58051
]
},
"properties": {
"trip": {
"id": "285029421",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:01:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1410586"
},
"route": {
"id": "141",
"shortName": "141",
"longName": "Jean-Talon Est",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39123",
"label": "39123",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 207,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1574399676,
"lastSeenAt": 1749753030,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 671
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53935,
45.65092
]
},
"properties": {
"trip": {
"id": "285029932",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:03:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "400083"
},
"route": {
"id": "40",
"shortName": "40",
"longName": "Henri-Bourassa-Est",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39126",
"label": "39126",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 236,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574701841,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2580
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57914,
45.64913
]
},
"properties": {
"trip": {
"id": "285028257",
"shortName": null,
"headsign": "Nord",
"startTime": "10:06:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4490191"
},
"route": {
"id": "449",
"shortName": "449",
"longName": "Express Rivière-des-Prairies",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39127",
"label": "39127",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 21,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574821484,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2683
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53499,
45.66468
]
},
"properties": {
"trip": {
"id": "285029284",
"shortName": null,
"headsign": "Nord",
"startTime": "10:18:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "810021"
},
"route": {
"id": "81",
"shortName": "81",
"longName": "Saint-Jean-Baptiste",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39128",
"label": "39128",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 332,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1574906803,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2718
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59351,
45.56811
]
},
"properties": {
"trip": {
"id": "285030627",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:52:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1410586"
},
"route": {
"id": "141",
"shortName": "141",
"longName": "Jean-Talon Est",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39142",
"label": "39142",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 213,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 44,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1576205329,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 3045
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61989,
45.61449
]
},
"properties": {
"trip": {
"id": "285030278",
"shortName": null,
"headsign": "Est",
"startTime": "10:04:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "490344"
},
"route": {
"id": "49",
"shortName": "49",
"longName": "Maurice-Duplessis",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39144",
"label": "39144",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 18,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1576204004,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 3042
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.52501,
45.59343
]
},
"properties": {
"trip": {
"id": "285030108",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:52:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1890204"
},
"route": {
"id": "189",
"shortName": "189",
"longName": "Notre-Dame",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "39148",
"label": "39148",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 59,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1575152296,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
2
]
},
"id": 2811
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66039,
45.4757
]
},
"properties": {
"trip": {
"id": "286573047",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:01:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1380088"
},
"route": {
"id": "138",
"shortName": "138",
"longName": "Notre-Dame-de-Grâce",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40002",
"label": "40002",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 301,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 38,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1579105004,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3249
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64692,
45.44224
]
},
"properties": {
"trip": {
"id": "286573019",
"shortName": null,
"headsign": "Nord",
"startTime": "10:12:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1230115"
},
"route": {
"id": "123",
"shortName": "123",
"longName": "Dollard / Shevchenko",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40008",
"label": "40008",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 344,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1576768086,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3117
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59068,
45.43624
]
},
"properties": {
"trip": {
"id": "286570430",
"shortName": null,
"headsign": "Est",
"startTime": "10:23:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "610123"
},
"route": {
"id": "61",
"shortName": "61",
"longName": "Wellington",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40009",
"label": "40009",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 15,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 12,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1578795281,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3231
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60833,
45.4291
]
},
"properties": {
"trip": {
"id": "286572223",
"shortName": null,
"headsign": "Est",
"startTime": "09:39:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1100211"
},
"route": {
"id": "110",
"shortName": "110",
"longName": "Centrale",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40011",
"label": "40011",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 59,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1576766286,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3115
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69213,
45.43756
]
},
"properties": {
"trip": {
"id": "286571400",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:54:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4910084"
},
"route": {
"id": "491",
"shortName": "491",
"longName": "Express Provost",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40012",
"label": "40012",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 173,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 10,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1579297610,
"lastSeenAt": 1749753031,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3262
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64885,
45.4432
]
},
"properties": {
"trip": {
"id": "286572641",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:45:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "900254"
},
"route": {
"id": "90",
"shortName": "90",
"longName": "Saint-Jacques",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40021",
"label": "40021",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 32,
"currentStatus": 2,
"congestionLevel": 3,
"occupancyStatus": 1,
"firstSeenAt": 1579287782,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3259
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60404,
45.4743
]
},
"properties": {
"trip": {
"id": "286571552",
"shortName": null,
"headsign": "Est",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1040114"
},
"route": {
"id": "104",
"shortName": "104",
"longName": "Cavendish",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40022",
"label": "40022",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 36,
"odometer": 0,
"speed": 19
},
"agencyId": 1,
"currentStopSequence": 30,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1581370324,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3342
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66811,
45.43177
]
},
"properties": {
"trip": {
"id": "286573328",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:07:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1950177"
},
"route": {
"id": "195",
"shortName": "195",
"longName": "Dorval / Angrignon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40027",
"label": "40027",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 257,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 26,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1579968303,
"lastSeenAt": 1749753030,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3290
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.7633,
45.44874
]
},
"properties": {
"trip": {
"id": "286571896",
"shortName": null,
"headsign": "Est",
"startTime": "10:04:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4250077"
},
"route": {
"id": "425",
"shortName": "425",
"longName": "Express Anse-à-l'Orme",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40030",
"label": "40030",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 95,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 25,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1576776289,
"lastSeenAt": 1749753031,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3124
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62212,
45.44967
]
},
"properties": {
"trip": {
"id": "286570049",
"shortName": null,
"headsign": "Est",
"startTime": "09:29:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "360158"
},
"route": {
"id": "36",
"shortName": "36",
"longName": "Monk",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40031",
"label": "40031",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 109,
"odometer": 0,
"speed": 54
},
"agencyId": 1,
"currentStopSequence": 36,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1577500121,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3172
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69254,
45.44178
]
},
"properties": {
"trip": {
"id": "286573600",
"shortName": null,
"headsign": "Est",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1980012"
},
"route": {
"id": "198",
"shortName": "198",
"longName": "Broadway",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40033",
"label": "40033",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 353,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1577241279,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3166
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56728,
45.48998
]
},
"properties": {
"trip": {
"id": "286569920",
"shortName": null,
"headsign": "Est",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "350017"
},
"route": {
"id": "35",
"shortName": "35",
"longName": "Griffintown",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40038",
"label": "40038",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1577502645,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3173
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57634,
45.45568
]
},
"properties": {
"trip": {
"id": "286572174",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:12:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1080082"
},
"route": {
"id": "108",
"shortName": "108",
"longName": "Bannantyne",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40042",
"label": "40042",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 184,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 21,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1579029181,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3242
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59161,
45.43453
]
},
"properties": {
"trip": {
"id": "286571852",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:55:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1070141"
},
"route": {
"id": "107",
"shortName": "107",
"longName": "Verdun",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40044",
"label": "40044",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 283,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 43,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1580937967,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3328
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62243,
45.43916
]
},
"properties": {
"trip": {
"id": "286571703",
"shortName": null,
"headsign": "Est",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1060134"
},
"route": {
"id": "106",
"shortName": "106",
"longName": "Newman",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40046",
"label": "40046",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 20,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1579018485,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3241
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64764,
45.47154
]
},
"properties": {
"trip": {
"id": "286571494",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:43:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1040117"
},
"route": {
"id": "104",
"shortName": "104",
"longName": "Cavendish",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40052",
"label": "40052",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 301,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 32,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1579103311,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3247
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57915,
45.48809
]
},
"properties": {
"trip": {
"id": "286573773",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:23:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2110143"
},
"route": {
"id": "211",
"shortName": "211",
"longName": "Bord-du-Lac",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40054",
"label": "40054",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 225,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1580179206,
"lastSeenAt": 1749753031,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3300
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63277,
45.42963
]
},
"properties": {
"trip": {
"id": "286573389",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1130161"
},
"route": {
"id": "113",
"shortName": "113",
"longName": "Lapierre",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40057",
"label": "40057",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 309,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1580231049,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3303
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63014,
45.43227
]
},
"properties": {
"trip": {
"id": "286572986",
"shortName": null,
"headsign": "Sud",
"startTime": "10:12:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1230114"
},
"route": {
"id": "123",
"shortName": "123",
"longName": "Dollard / Shevchenko",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40059",
"label": "40059",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 57,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1580146448,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3297
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65487,
45.46217
]
},
"properties": {
"trip": {
"id": "286571291",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:08:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1020074"
},
"route": {
"id": "102",
"shortName": "102",
"longName": "Somerled",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40060",
"label": "40060",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 286,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 26,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1580405049,
"lastSeenAt": 1749752978,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3313
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61088,
45.42615
]
},
"properties": {
"trip": {
"id": "286570411",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:32:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "610126"
},
"route": {
"id": "61",
"shortName": "61",
"longName": "Wellington",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40061",
"label": "40061",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 119,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 51,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1582004706,
"lastSeenAt": 1749752511,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 3363
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60488,
45.44706
]
},
"properties": {
"trip": {
"id": "286573286",
"shortName": null,
"headsign": "Est",
"startTime": "09:41:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1950182"
},
"route": {
"id": "195",
"shortName": "195",
"longName": "Dorval / Angrignon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40066",
"label": "40066",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 172,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 59,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1601415132,
"lastSeenAt": 1749752913,
"links": [
3,
3,
22
],
"tags": [
4
]
},
"id": 8913
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64001,
45.42898
]
},
"properties": {
"trip": {
"id": "286572747",
"shortName": null,
"headsign": "Est",
"startTime": "10:22:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1130162"
},
"route": {
"id": "113",
"shortName": "113",
"longName": "Lapierre",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40067",
"label": "40067",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 9,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1599565454,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 8765
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6348,
45.42158
]
},
"properties": {
"trip": {
"id": "286571632",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:03:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1120178"
},
"route": {
"id": "112",
"shortName": "112",
"longName": "Airlie",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40068",
"label": "40068",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 36,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1601026145,
"lastSeenAt": 1749753036,
"links": [
3,
3,
22
],
"tags": [
4
]
},
"id": 8897
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63353,
45.44188
]
},
"properties": {
"trip": {
"id": "286572856",
"shortName": null,
"headsign": "Nord",
"startTime": "09:17:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1140009"
},
"route": {
"id": "114",
"shortName": "114",
"longName": "Angrignon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40071",
"label": "40071",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 40,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1598896267,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 8634
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60329,
45.44673
]
},
"properties": {
"trip": {
"id": "286571655",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:34:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1130161"
},
"route": {
"id": "113",
"shortName": "113",
"longName": "Lapierre",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40074",
"label": "40074",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1598670786,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 8603
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.93906,
45.404
]
},
"properties": {
"trip": {
"id": "286574215",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:36:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4050078"
},
"route": {
"id": "405",
"shortName": "405",
"longName": "Express Bord-du-Lac",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40075",
"label": "40075",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 245,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 31,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1598669345,
"lastSeenAt": 1749752961,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 8602
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.688,
45.43473
]
},
"properties": {
"trip": {
"id": "286572317",
"shortName": null,
"headsign": "Est",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1950182"
},
"route": {
"id": "195",
"shortName": "195",
"longName": "Dorval / Angrignon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40079",
"label": "40079",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 86,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1600175355,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 8825
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.82346,
45.44069
]
},
"properties": {
"trip": {
"id": "286571176",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:56:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4050078"
},
"route": {
"id": "405",
"shortName": "405",
"longName": "Express Bord-du-Lac",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40081",
"label": "40081",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 252,
"odometer": 0,
"speed": 90
},
"agencyId": 1,
"currentStopSequence": 5,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1600548187,
"lastSeenAt": 1749753031,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 8851
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67149,
45.46217
]
},
"properties": {
"trip": {
"id": "285001824",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:43:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1610134"
},
"route": {
"id": "161",
"shortName": "161",
"longName": "Van Horne",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40092",
"label": "40092",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 32,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 48,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1601288285,
"lastSeenAt": 1749753046,
"links": [
3,
3,
22
],
"tags": [
6
]
},
"id": 8907
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58765,
45.52641
]
},
"properties": {
"trip": {
"id": "285001716",
"shortName": null,
"headsign": "Est",
"startTime": "09:33:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "510185"
},
"route": {
"id": "51",
"shortName": "51",
"longName": "Édouard-Montpetit",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40094",
"label": "40094",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 39,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 51,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1601461506,
"lastSeenAt": 1749752697,
"links": [
3,
3,
22
],
"tags": [
6
]
},
"id": 8915
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55287,
45.5182
]
},
"properties": {
"trip": {
"id": "285002447",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:33:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4300151"
},
"route": {
"id": "430",
"shortName": "430",
"longName": "Express Pointe-aux-Trembles",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40096",
"label": "40096",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 211,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 25,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1600542368,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 8849
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63542,
45.48168
]
},
"properties": {
"trip": {
"id": "285001672",
"shortName": null,
"headsign": "Est",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "510185"
},
"route": {
"id": "51",
"shortName": "51",
"longName": "Édouard-Montpetit",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40097",
"label": "40097",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 120,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 52,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1600427173,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 8843
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5832,
45.53122
]
},
"properties": {
"trip": {
"id": "285001109",
"shortName": null,
"headsign": "Nord",
"startTime": "09:58:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "140065"
},
"route": {
"id": "14",
"shortName": "14",
"longName": "Atateken",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40107",
"label": "40107",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 34,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1598468884,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 8505
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57207,
45.53877
]
},
"properties": {
"trip": {
"id": "285002217",
"shortName": null,
"headsign": "Est",
"startTime": "09:36:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "970203"
},
"route": {
"id": "97",
"shortName": "97",
"longName": "Avenue-du-Mont-Royal",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40108",
"label": "40108",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 186,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 35,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1600681985,
"lastSeenAt": 1749753030,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 8857
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59706,
45.51822
]
},
"properties": {
"trip": {
"id": "285001601",
"shortName": null,
"headsign": "Est",
"startTime": "09:49:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "510185"
},
"route": {
"id": "51",
"shortName": "51",
"longName": "Édouard-Montpetit",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40111",
"label": "40111",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 31,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 46,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1601465590,
"lastSeenAt": 1749753046,
"links": [
3,
3,
22
],
"tags": [
6
]
},
"id": 8917
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59224,
45.51337
]
},
"properties": {
"trip": {
"id": "285001027",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "110157"
},
"route": {
"id": "11",
"shortName": "11",
"longName": "Parc-du-Mont-Royal / Ridgewood",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40115",
"label": "40115",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 236,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 15,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1597442413,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 7839
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60789,
45.51495
]
},
"properties": {
"trip": {
"id": "285001742",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:15:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "510191"
},
"route": {
"id": "51",
"shortName": "51",
"longName": "Édouard-Montpetit",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40118",
"label": "40118",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 248,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 11,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1600770967,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 8867
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.82853,
45.4688
]
},
"properties": {
"trip": {
"id": "285008744",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:29:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2020185"
},
"route": {
"id": "202",
"shortName": "202",
"longName": "Dawson",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40125",
"label": "40125",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 135,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 69,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1606906325,
"lastSeenAt": 1749753035,
"links": [
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9257
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.78223,
45.44973
]
},
"properties": {
"trip": {
"id": "285009042",
"shortName": null,
"headsign": "Est",
"startTime": "10:02:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2030123"
},
"route": {
"id": "203",
"shortName": "203",
"longName": "Carson",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40126",
"label": "40126",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 164,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606827731,
"lastSeenAt": 1749753034,
"links": [
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9204
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.85609,
45.48832
]
},
"properties": {
"trip": {
"id": "285006856",
"shortName": null,
"headsign": "Est",
"startTime": "10:13:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "680412"
},
"route": {
"id": "68",
"shortName": "68",
"longName": "Pierrefonds",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40127",
"label": "40127",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 27,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1607118970,
"lastSeenAt": 1749753043,
"links": [
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9271
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.8467,
45.50962
]
},
"properties": {
"trip": {
"id": "285009518",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:21:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2050111"
},
"route": {
"id": "205",
"shortName": "205",
"longName": "Gouin",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40133",
"label": "40133",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 183,
"odometer": 0,
"speed": 4
},
"agencyId": 1,
"currentStopSequence": 15,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1602674533,
"lastSeenAt": 1749753044,
"links": [
3,
3,
22
],
"tags": [
8
]
},
"id": 9098
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.9243,
45.40535
]
},
"properties": {
"trip": {
"id": "285008418",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:58:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2000098"
},
"route": {
"id": "200",
"shortName": "200",
"longName": "Sainte-Anne-de-Bellevue",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40134",
"label": "40134",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 276,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 42,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606827732,
"lastSeenAt": 1749753030,
"links": [
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9208
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74842,
45.49518
]
},
"properties": {
"trip": {
"id": "285009183",
"shortName": null,
"headsign": "Est",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2060107"
},
"route": {
"id": "206",
"shortName": "206",
"longName": "Roger-Pilon",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40138",
"label": "40138",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 224,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606827732,
"lastSeenAt": 1749753046,
"links": [
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9211
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75182,
45.45527
]
},
"properties": {
"trip": {
"id": "285009394",
"shortName": null,
"headsign": "Est",
"startTime": "09:57:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2040212"
},
"route": {
"id": "204",
"shortName": "204",
"longName": "Cardinal",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40139",
"label": "40139",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1601927409,
"lastSeenAt": 1749753046,
"links": [
3,
3,
22
],
"tags": [
8
]
},
"id": 9051
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.81805,
45.44922
]
},
"properties": {
"trip": {
"id": "285008716",
"shortName": null,
"headsign": "Est",
"startTime": "10:20:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2020187"
},
"route": {
"id": "202",
"shortName": "202",
"longName": "Dawson",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40148",
"label": "40148",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 163,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 6,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606827732,
"lastSeenAt": 1749753031,
"links": [
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9216
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83175,
45.46627
]
},
"properties": {
"trip": {
"id": "285008364",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:40:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2250139"
},
"route": {
"id": "225",
"shortName": "225",
"longName": "Hymus",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40156",
"label": "40156",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 234,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 49,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1602267427,
"lastSeenAt": 1749752514,
"links": [
3,
3,
22
],
"tags": [
8
]
},
"id": 9080
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73646,
45.52383
]
},
"properties": {
"trip": {
"id": "285006813",
"shortName": null,
"headsign": "Est",
"startTime": "09:44:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "680412"
},
"route": {
"id": "68",
"shortName": "68",
"longName": "Pierrefonds",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40157",
"label": "40157",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 66,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1602270490,
"lastSeenAt": 1749753046,
"links": [
3,
3,
22
],
"tags": [
8
]
},
"id": 9082
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68363,
45.51349
]
},
"properties": {
"trip": {
"id": "285008690",
"shortName": null,
"headsign": "Est",
"startTime": "09:38:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2150156"
},
"route": {
"id": "215",
"shortName": "215",
"longName": "Henri-Bourassa",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40165",
"label": "40165",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 50,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1608118387,
"lastSeenAt": 1749752749,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 9302
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66859,
45.55439
]
},
"properties": {
"trip": {
"id": "285007552",
"shortName": null,
"headsign": "Est",
"startTime": "09:49:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1640160"
},
"route": {
"id": "164",
"shortName": "164",
"longName": "Dudemaine",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40167",
"label": "40167",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 47,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1608141907,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 9304
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.7247,
45.4921
]
},
"properties": {
"trip": {
"id": "285008048",
"shortName": null,
"headsign": "Est",
"startTime": "10:18:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1770139"
},
"route": {
"id": "177",
"shortName": "177",
"longName": "Thimens",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40170",
"label": "40170",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 195,
"odometer": 0,
"speed": 14
},
"agencyId": 1,
"currentStopSequence": 16,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1609016232,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 9325
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75921,
45.44194
]
},
"properties": {
"trip": {
"id": "285009305",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:54:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2020185"
},
"route": {
"id": "202",
"shortName": "202",
"longName": "Dawson",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40172",
"label": "40172",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 267,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 42,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606827732,
"lastSeenAt": 1749753045,
"links": [
3,
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9226
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.77731,
45.45006
]
},
"properties": {
"trip": {
"id": "285009093",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2040214"
},
"route": {
"id": "204",
"shortName": "204",
"longName": "Cardinal",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40173",
"label": "40173",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 272,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606827732,
"lastSeenAt": 1749753047,
"links": [
3,
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9227
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83588,
45.46134
]
},
"properties": {
"trip": {
"id": "285009794",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:28:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2170107"
},
"route": {
"id": "217",
"shortName": "217",
"longName": "Anse-à-l'Orme",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40174",
"label": "40174",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 144,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 3,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606927869,
"lastSeenAt": 1749753047,
"links": [
3,
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9262
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.80618,
45.49397
]
},
"properties": {
"trip": {
"id": "285009376",
"shortName": null,
"headsign": "Est",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2080107"
},
"route": {
"id": "208",
"shortName": "208",
"longName": "Brunswick",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40177",
"label": "40177",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 236,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 41,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606827732,
"lastSeenAt": 1749753046,
"links": [
3,
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9228
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73198,
45.45588
]
},
"properties": {
"trip": {
"id": "285008793",
"shortName": null,
"headsign": "Est",
"startTime": "09:56:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2020187"
},
"route": {
"id": "202",
"shortName": "202",
"longName": "Dawson",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40184",
"label": "40184",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 44,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 40,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1608116825,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 9301
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67213,
45.50834
]
},
"properties": {
"trip": {
"id": "285008077",
"shortName": null,
"headsign": "Sud",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1170074"
},
"route": {
"id": "117",
"shortName": "117",
"longName": "O'Brien",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40189",
"label": "40189",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 216,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1607548577,
"lastSeenAt": 1749752688,
"links": [
3,
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9285
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.78725,
45.50219
]
},
"properties": {
"trip": {
"id": "285008518",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2080106"
},
"route": {
"id": "208",
"shortName": "208",
"longName": "Brunswick",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40190",
"label": "40190",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 8,
"odometer": 0,
"speed": 5
},
"agencyId": 1,
"currentStopSequence": 20,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606828450,
"lastSeenAt": 1749753045,
"links": [
3,
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9247
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.85383,
45.44763
]
},
"properties": {
"trip": {
"id": "285008393",
"shortName": null,
"headsign": "Est",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2000101"
},
"route": {
"id": "200",
"shortName": "200",
"longName": "Sainte-Anne-de-Bellevue",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40194",
"label": "40194",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 31,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606831449,
"lastSeenAt": 1749753044,
"links": [
3,
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9248
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.80923,
45.45419
]
},
"properties": {
"trip": {
"id": "285008611",
"shortName": null,
"headsign": "Nord",
"startTime": "09:35:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2010213"
},
"route": {
"id": "201",
"shortName": "201",
"longName": "Saint-Charles / Saint-Jean",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40195",
"label": "40195",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 57,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1607774588,
"lastSeenAt": 1749753042,
"links": [
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9291
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68364,
45.51355
]
},
"properties": {
"trip": {
"id": "285007834",
"shortName": null,
"headsign": "Est",
"startTime": "10:12:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1740117"
},
"route": {
"id": "174",
"shortName": "174",
"longName": "Côte-Vertu-Ouest",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40196",
"label": "40196",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 302,
"odometer": 0,
"speed": 6
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606907347,
"lastSeenAt": 1749752993,
"links": [
3,
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9260
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74889,
45.49917
]
},
"properties": {
"trip": {
"id": "285009612",
"shortName": null,
"headsign": "Est",
"startTime": "10:06:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2150156"
},
"route": {
"id": "215",
"shortName": "215",
"longName": "Henri-Bourassa",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40200",
"label": "40200",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 27,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606827733,
"lastSeenAt": 1749753032,
"links": [
3,
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9239
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61235,
45.47269
]
},
"properties": {
"trip": {
"id": "285006468",
"shortName": null,
"headsign": "Sud",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "170097"
},
"route": {
"id": "17",
"shortName": "17",
"longName": "Décarie",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40209",
"label": "40209",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 30,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1608722769,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 9323
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.92599,
45.42583
]
},
"properties": {
"trip": {
"id": "285010184",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:15:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4190067"
},
"route": {
"id": "419",
"shortName": "419",
"longName": "Express John Abbott",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40213",
"label": "40213",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 247,
"odometer": 0,
"speed": 44
},
"agencyId": 1,
"currentStopSequence": 15,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606827733,
"lastSeenAt": 1749753040,
"links": [
3,
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9242
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83038,
45.46693
]
},
"properties": {
"trip": {
"id": "285007868",
"shortName": null,
"headsign": "Est",
"startTime": "10:30:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2080107"
},
"route": {
"id": "208",
"shortName": "208",
"longName": "Brunswick",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40214",
"label": "40214",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1607546355,
"lastSeenAt": 1749753039,
"links": [
3,
3,
3,
3,
22
],
"tags": [
8
]
},
"id": 9282
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74702,
45.50077
]
},
"properties": {
"trip": {
"id": "285008997",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:07:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2250139"
},
"route": {
"id": "225",
"shortName": "225",
"longName": "Hymus",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40216",
"label": "40216",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 225,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 26,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1608636126,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
8
]
},
"id": 9320
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63814,
45.44716
]
},
"properties": {
"trip": {
"id": "286572605",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1900002"
},
"route": {
"id": "190",
"shortName": "190",
"longName": "Norman",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40217",
"label": "40217",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 232,
"odometer": 0,
"speed": 63
},
"agencyId": 1,
"currentStopSequence": 16,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1606943355,
"lastSeenAt": 1749753040,
"links": [
3,
3,
3,
3,
22
],
"tags": [
4
]
},
"id": 9263
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64808,
45.42538
]
},
"properties": {
"trip": {
"id": "286572496",
"shortName": null,
"headsign": "Est",
"startTime": "10:31:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1120177"
},
"route": {
"id": "112",
"shortName": "112",
"longName": "Airlie",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40221",
"label": "40221",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1607032933,
"lastSeenAt": 1749753040,
"links": [
3,
3,
3,
3,
22
],
"tags": [
4
]
},
"id": 9267
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59497,
45.44574
]
},
"properties": {
"trip": {
"id": "286569896",
"shortName": null,
"headsign": "Est",
"startTime": "10:06:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1130162"
},
"route": {
"id": "113",
"shortName": "113",
"longName": "Lapierre",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40223",
"label": "40223",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 287,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 28,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1608004987,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 9296
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58389,
45.48983
]
},
"properties": {
"trip": {
"id": "286574121",
"shortName": null,
"headsign": "Nord",
"startTime": "09:57:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "570103"
},
"route": {
"id": "57",
"shortName": "57",
"longName": "Charlevoix",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40225",
"label": "40225",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 23,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1607180344,
"lastSeenAt": 1749752657,
"links": [
3,
3,
3,
3,
22
],
"tags": [
4
]
},
"id": 9272
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65933,
45.45917
]
},
"properties": {
"trip": {
"id": "286574292",
"shortName": null,
"headsign": "Est",
"startTime": "08:34:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4200115"
},
"route": {
"id": "420",
"shortName": "420",
"longName": "Express Notre-Dame-de-Grâce",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40226",
"label": "40226",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 20,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1607372415,
"lastSeenAt": 1749753048,
"links": [
3,
3,
3,
3,
22
],
"tags": [
4
]
},
"id": 9275
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59888,
45.42802
]
},
"properties": {
"trip": {
"id": "286572277",
"shortName": null,
"headsign": "Est",
"startTime": "10:11:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1120177"
},
"route": {
"id": "112",
"shortName": "112",
"longName": "Airlie",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40228",
"label": "40228",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 13,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1607766905,
"lastSeenAt": 1749753032,
"links": [
3,
3,
3,
22
],
"tags": [
4
]
},
"id": 9290
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55778,
45.48552
]
},
"properties": {
"trip": {
"id": "286570496",
"shortName": null,
"headsign": "Est",
"startTime": "09:53:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "610123"
},
"route": {
"id": "61",
"shortName": "61",
"longName": "Wellington",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40231",
"label": "40231",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 26,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 44,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1608372964,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 9317
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68871,
45.43736
]
},
"properties": {
"trip": {
"id": "286572767",
"shortName": null,
"headsign": "Est",
"startTime": "10:40:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1100211"
},
"route": {
"id": "110",
"shortName": "110",
"longName": "Centrale",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40233",
"label": "40233",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1610733850,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 9358
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.82563,
45.43504
]
},
"properties": {
"trip": {
"id": "286573752",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:52:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2110143"
},
"route": {
"id": "211",
"shortName": "211",
"longName": "Bord-du-Lac",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40236",
"label": "40236",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 166,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 13,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1608070755,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 9300
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60831,
45.45905
]
},
"properties": {
"trip": {
"id": "286570861",
"shortName": null,
"headsign": "Est",
"startTime": "09:58:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1010135"
},
"route": {
"id": "101",
"shortName": "101",
"longName": "Saint-Patrick",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40240",
"label": "40240",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 66,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 32,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1609624328,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 9336
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59538,
45.45679
]
},
"properties": {
"trip": {
"id": "286570079",
"shortName": null,
"headsign": "Est",
"startTime": "10:17:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "360158"
},
"route": {
"id": "36",
"shortName": "36",
"longName": "Monk",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40243",
"label": "40243",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 9,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1609270150,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 9329
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83572,
45.42847
]
},
"properties": {
"trip": {
"id": "286572242",
"shortName": null,
"headsign": "Est",
"startTime": "10:07:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2110142"
},
"route": {
"id": "211",
"shortName": "211",
"longName": "Bord-du-Lac",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40244",
"label": "40244",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 110,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1610574133,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 9352
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60532,
45.47319
]
},
"properties": {
"trip": {
"id": "286571351",
"shortName": null,
"headsign": "Est",
"startTime": "10:05:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1020075"
},
"route": {
"id": "102",
"shortName": "102",
"longName": "Somerled",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40246",
"label": "40246",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 38,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 25,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1612208048,
"lastSeenAt": 1749752764,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 9740
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58147,
45.48268
]
},
"properties": {
"trip": {
"id": "286574160",
"shortName": null,
"headsign": "Est",
"startTime": "09:57:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1900003"
},
"route": {
"id": "190",
"shortName": "190",
"longName": "Norman",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40247",
"label": "40247",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 49,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1609292286,
"lastSeenAt": 1749752968,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 9331
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6498,
45.42507
]
},
"properties": {
"trip": {
"id": "286572786",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:05:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1060135"
},
"route": {
"id": "106",
"shortName": "106",
"longName": "Newman",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "40251",
"label": "40251",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 20,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 26,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1610571675,
"lastSeenAt": 1749752774,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 9351
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61986,
45.49779
]
},
"properties": {
"trip": {
"id": "285001900",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:06:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "510191"
},
"route": {
"id": "51",
"shortName": "51",
"longName": "Édouard-Montpetit",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41003",
"label": "41003",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 121,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1625862964,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 10677
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58948,
45.51664
]
},
"properties": {
"trip": {
"id": "285001001",
"shortName": null,
"headsign": "Est",
"startTime": "10:14:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "110156"
},
"route": {
"id": "11",
"shortName": "11",
"longName": "Parc-du-Mont-Royal / Ridgewood",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41007",
"label": "41007",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 26,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1628157364,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 10753
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58523,
45.53785
]
},
"properties": {
"trip": {
"id": "285001459",
"shortName": null,
"headsign": "Est",
"startTime": "10:22:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "470115"
},
"route": {
"id": "47",
"shortName": "47",
"longName": "Masson",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41008",
"label": "41008",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 124,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 8,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1626257043,
"lastSeenAt": 1749753045,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 10689
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5662,
45.55679
]
},
"properties": {
"trip": {
"id": "285001328",
"shortName": null,
"headsign": "Est",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "270111"
},
"route": {
"id": "27",
"shortName": "27",
"longName": "Boulevard Saint-Joseph",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41010",
"label": "41010",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 293,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1626121924,
"lastSeenAt": 1749752795,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 10682
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61375,
45.5089
]
},
"properties": {
"trip": {
"id": "285001882",
"shortName": null,
"headsign": "Est",
"startTime": "09:57:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "510185"
},
"route": {
"id": "51",
"shortName": "51",
"longName": "Édouard-Montpetit",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41011",
"label": "41011",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 37,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1626468905,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 10696
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61929,
45.49469
]
},
"properties": {
"trip": {
"id": "285002299",
"shortName": null,
"headsign": "Est",
"startTime": "10:06:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "510185"
},
"route": {
"id": "51",
"shortName": "51",
"longName": "Édouard-Montpetit",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41014",
"label": "41014",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 33,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1625864464,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 10678
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56255,
45.54301
]
},
"properties": {
"trip": {
"id": "285001173",
"shortName": null,
"headsign": "Nord",
"startTime": "10:24:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "250054"
},
"route": {
"id": "25",
"shortName": "25",
"longName": "Angus",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41017",
"label": "41017",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 5,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1627413246,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 10728
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59592,
45.5195
]
},
"properties": {
"trip": {
"id": "285001969",
"shortName": null,
"headsign": "Est",
"startTime": "09:41:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "510185"
},
"route": {
"id": "51",
"shortName": "51",
"longName": "Édouard-Montpetit",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41018",
"label": "41018",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 29,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 46,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1627130644,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 10720
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57787,
45.54341
]
},
"properties": {
"trip": {
"id": "285001513",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:18:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "470114"
},
"route": {
"id": "47",
"shortName": "47",
"longName": "Masson",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41024",
"label": "41024",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 13,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1626234243,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 10688
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51164,
45.60783
]
},
"properties": {
"trip": {
"id": "285001694",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:05:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4300151"
},
"route": {
"id": "430",
"shortName": "430",
"longName": "Express Pointe-aux-Trembles",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41026",
"label": "41026",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 192,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 21,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1626987485,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 10710
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57734,
45.53761
]
},
"properties": {
"trip": {
"id": "285001300",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:09:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "270110"
},
"route": {
"id": "27",
"shortName": "27",
"longName": "Boulevard Saint-Joseph",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41029",
"label": "41029",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 14,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1629912965,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
6
]
},
"id": 10794
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72341,
45.5313
]
},
"properties": {
"trip": {
"id": "284739443",
"shortName": null,
"headsign": "Est",
"startTime": "10:32:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1800111"
},
"route": {
"id": "180",
"shortName": "180",
"longName": "De Salaberry",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41042",
"label": "41042",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1628027405,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 10748
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65995,
45.547
]
},
"properties": {
"trip": {
"id": "284737655",
"shortName": null,
"headsign": "Sud",
"startTime": "10:16:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "550145"
},
"route": {
"id": "55",
"shortName": "55",
"longName": "Boulevard Saint-Laurent",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41044",
"label": "41044",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 112,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 9,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1632337386,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 10896
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66709,
45.55657
]
},
"properties": {
"trip": {
"id": "284738672",
"shortName": null,
"headsign": "Est",
"startTime": "10:30:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4690080"
},
"route": {
"id": "469",
"shortName": "469",
"longName": "Express Henri-Bourassa",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41046",
"label": "41046",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1633430716,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 10923
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56693,
45.6479
]
},
"properties": {
"trip": {
"id": "284738922",
"shortName": null,
"headsign": "Est via Gouin / Ozias-Leduc",
"startTime": "09:42:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "480413"
},
"route": {
"id": "48",
"shortName": "48",
"longName": "Perras",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41049",
"label": "41049",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 52,
"odometer": 0,
"speed": 44
},
"agencyId": 1,
"currentStopSequence": 43,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1629921492,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 10795
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71104,
45.47136
]
},
"properties": {
"trip": {
"id": "284739924",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:19:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4600351"
},
"route": {
"id": "460",
"shortName": "460",
"longName": "Express Métropolitaine",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41052",
"label": "41052",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 224,
"odometer": 0,
"speed": 44
},
"agencyId": 1,
"currentStopSequence": 31,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1630609145,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 10813
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56965,
45.53062
]
},
"properties": {
"trip": {
"id": "284739808",
"shortName": null,
"headsign": "Sud",
"startTime": "09:50:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "450177"
},
"route": {
"id": "45",
"shortName": "45",
"longName": "Papineau",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41053",
"label": "41053",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 35,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1630527125,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 10807
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66711,
45.55622
]
},
"properties": {
"trip": {
"id": "284741161",
"shortName": null,
"headsign": "Sud",
"startTime": "10:33:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "560031"
},
"route": {
"id": "56",
"shortName": "56",
"longName": "Saint-Hubert",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41054",
"label": "41054",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1631097546,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 10855
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60197,
45.52556
]
},
"properties": {
"trip": {
"id": "284738459",
"shortName": null,
"headsign": "Sud",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "550145"
},
"route": {
"id": "55",
"shortName": "55",
"longName": "Boulevard Saint-Laurent",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41059",
"label": "41059",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 123,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 28,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1631698444,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 10876
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70268,
45.53574
]
},
"properties": {
"trip": {
"id": "284739746",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:03:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1800112"
},
"route": {
"id": "180",
"shortName": "180",
"longName": "De Salaberry",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41062",
"label": "41062",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 225,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 22,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 5,
"firstSeenAt": 1633029130,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 10910
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56876,
45.51223
]
},
"properties": {
"trip": {
"id": "284739030",
"shortName": null,
"headsign": "Sud",
"startTime": "09:30:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "550145"
},
"route": {
"id": "55",
"shortName": "55",
"longName": "Boulevard Saint-Laurent",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41063",
"label": "41063",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 46,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1631905863,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 10887
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66644,
45.56058
]
},
"properties": {
"trip": {
"id": "284739847",
"shortName": null,
"headsign": "Est destination Georges-Baril / Henri-Bourassa",
"startTime": "09:53:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1460139"
},
"route": {
"id": "146",
"shortName": "146",
"longName": "Christophe-Colomb / Meilleur",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41070",
"label": "41070",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 32,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1635284106,
"lastSeenAt": 1749752690,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 10944
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62495,
45.54782
]
},
"properties": {
"trip": {
"id": "284738719",
"shortName": null,
"headsign": "Est",
"startTime": "10:15:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1930136"
},
"route": {
"id": "193",
"shortName": "193",
"longName": "Jarry",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41077",
"label": "41077",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 13,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1644525605,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11084
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64882,
45.5452
]
},
"properties": {
"trip": {
"id": "284741067",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:06:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "190036"
},
"route": {
"id": "19",
"shortName": "19",
"longName": "Chabanel / Marché Central",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41078",
"label": "41078",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 15,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1643489584,
"lastSeenAt": 1749753020,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11065
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59673,
45.56899
]
},
"properties": {
"trip": {
"id": "284738868",
"shortName": null,
"headsign": "Nord",
"startTime": "10:03:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1394411"
},
"route": {
"id": "139",
"shortName": "139",
"longName": "Pie-IX",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41079",
"label": "41079",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 24,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1643403844,
"lastSeenAt": 1749753041,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11055
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58471,
45.58666
]
},
"properties": {
"trip": {
"id": "284739778",
"shortName": null,
"headsign": "Est via Jarry",
"startTime": "09:35:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4600343"
},
"route": {
"id": "460",
"shortName": "460",
"longName": "Express Métropolitaine",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41089",
"label": "41089",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 32,
"odometer": 0,
"speed": 54
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1644238749,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11076
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65731,
45.56127
]
},
"properties": {
"trip": {
"id": "284738780",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:41:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "410320"
},
"route": {
"id": "41",
"shortName": "41",
"longName": "Quartier Saint-Michel / Ahuntsic",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41090",
"label": "41090",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 48,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1649184484,
"lastSeenAt": 1749753040,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11162
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62241,
45.62323
]
},
"properties": {
"trip": {
"id": "284739079",
"shortName": null,
"headsign": "Ouest via Gouin / Ozias-Leduc",
"startTime": "10:03:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "480412"
},
"route": {
"id": "48",
"shortName": "48",
"longName": "Perras",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41095",
"label": "41095",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 30,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1643401924,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11054
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61524,
45.62706
]
},
"properties": {
"trip": {
"id": "284738142",
"shortName": null,
"headsign": "Est",
"startTime": "09:57:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "480414"
},
"route": {
"id": "48",
"shortName": "48",
"longName": "Perras",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41097",
"label": "41097",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 44,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 21,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1645089784,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11098
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6685,
45.55454
]
},
"properties": {
"trip": {
"id": "284738403",
"shortName": null,
"headsign": "Nord",
"startTime": "09:29:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "550147"
},
"route": {
"id": "55",
"shortName": "55",
"longName": "Boulevard Saint-Laurent",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41099",
"label": "41099",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 25,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 50,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1649071144,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11160
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65308,
45.5788
]
},
"properties": {
"trip": {
"id": "284739251",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:04:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4690081"
},
"route": {
"id": "469",
"shortName": "469",
"longName": "Express Henri-Bourassa",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41106",
"label": "41106",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 209,
"odometer": 0,
"speed": 36
},
"agencyId": 1,
"currentStopSequence": 18,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1643363763,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11048
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6329,
45.58777
]
},
"properties": {
"trip": {
"id": "284739167",
"shortName": null,
"headsign": "Est",
"startTime": "09:30:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "410323"
},
"route": {
"id": "41",
"shortName": "41",
"longName": "Quartier Saint-Michel / Ahuntsic",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41113",
"label": "41113",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 234,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 58,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1643364785,
"lastSeenAt": 1749752845,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11049
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.619,
45.61494
]
},
"properties": {
"trip": {
"id": "284739569",
"shortName": null,
"headsign": "Est",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4690080"
},
"route": {
"id": "469",
"shortName": "469",
"longName": "Express Henri-Bourassa",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41120",
"label": "41120",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 318,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 14,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1644239464,
"lastSeenAt": 1749753034,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11077
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67594,
45.54203
]
},
"properties": {
"trip": {
"id": "284739675",
"shortName": null,
"headsign": "Est",
"startTime": "10:02:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1800111"
},
"route": {
"id": "180",
"shortName": "180",
"longName": "De Salaberry",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41128",
"label": "41128",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 21,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1644487384,
"lastSeenAt": 1749753031,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11083
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64972,
45.5729
]
},
"properties": {
"trip": {
"id": "284737916",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:04:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1400134"
},
"route": {
"id": "140",
"shortName": "140",
"longName": "Fleury",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "41129",
"label": "41129",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 211,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 29,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1647984244,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 11145
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59741,
45.57748
]
},
"properties": {
"trip": {
"id": "284739704",
"shortName": null,
"headsign": "Est",
"startTime": "09:55:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1930136"
},
"route": {
"id": "193",
"shortName": "193",
"longName": "Jarry",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42003",
"label": "42003",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 31,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1661969045,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12442
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63931,
45.54129
]
},
"properties": {
"trip": {
"id": "284739128",
"shortName": null,
"headsign": "Nord",
"startTime": "09:46:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "550147"
},
"route": {
"id": "55",
"shortName": "55",
"longName": "Boulevard Saint-Laurent",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42007",
"label": "42007",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 35,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1664800086,
"lastSeenAt": 1749753048,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12621
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60787,
45.54831
]
},
"properties": {
"trip": {
"id": "284739830",
"shortName": null,
"headsign": "Nord",
"startTime": "09:59:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "450176"
},
"route": {
"id": "45",
"shortName": "45",
"longName": "Papineau",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42009",
"label": "42009",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 293,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 21,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1664910486,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12631
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59816,
45.55904
]
},
"properties": {
"trip": {
"id": "284739603",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:11:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "410320"
},
"route": {
"id": "41",
"shortName": "41",
"longName": "Quartier Saint-Michel / Ahuntsic",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42010",
"label": "42010",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 214,
"odometer": 0,
"speed": 6
},
"agencyId": 1,
"currentStopSequence": 21,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1664828047,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12625
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59872,
45.63763
]
},
"properties": {
"trip": {
"id": "284738217",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:16:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "480411"
},
"route": {
"id": "48",
"shortName": "48",
"longName": "Perras",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42013",
"label": "42013",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 228,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1664528044,
"lastSeenAt": 1749753030,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12615
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56962,
45.51207
]
},
"properties": {
"trip": {
"id": "284739648",
"shortName": null,
"headsign": "Nord",
"startTime": "10:21:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "550147"
},
"route": {
"id": "55",
"shortName": "55",
"longName": "Boulevard Saint-Laurent",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42017",
"label": "42017",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 197,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 51,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1666866365,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12708
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64095,
45.45564
]
},
"properties": {
"trip": {
"id": "285001786",
"shortName": null,
"headsign": "Est",
"startTime": "10:37:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "510185"
},
"route": {
"id": "51",
"shortName": "51",
"longName": "Édouard-Montpetit",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42021",
"label": "42021",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 2,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 3,
"firstSeenAt": 1665173828,
"lastSeenAt": 1749753039,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12651
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5342,
45.5964
]
},
"properties": {
"trip": {
"id": "285282365",
"shortName": null,
"headsign": "Sud",
"startTime": "09:08:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1360112"
},
"route": {
"id": "136",
"shortName": "136",
"longName": "Viau",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42032",
"label": "42032",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 3,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1664965384,
"lastSeenAt": 1749753030,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12637
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54874,
45.53215
]
},
"properties": {
"trip": {
"id": "284737950",
"shortName": null,
"headsign": "Nord",
"startTime": "07:28:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1394411"
},
"route": {
"id": "139",
"shortName": "139",
"longName": "Pie-IX",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42035",
"label": "42035",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 11,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1664997186,
"lastSeenAt": 1749753044,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12640
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63484,
45.56029
]
},
"properties": {
"trip": {
"id": "284739629",
"shortName": null,
"headsign": "Est",
"startTime": "09:58:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "540154"
},
"route": {
"id": "54",
"shortName": "54",
"longName": "Charland / Chabanel",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42040",
"label": "42040",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 302,
"odometer": 0,
"speed": 54
},
"agencyId": 1,
"currentStopSequence": 34,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1665430506,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12656
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65138,
45.5754
]
},
"properties": {
"trip": {
"id": "284737762",
"shortName": null,
"headsign": "Sud",
"startTime": "10:30:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "450177"
},
"route": {
"id": "45",
"shortName": "45",
"longName": "Papineau",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42043",
"label": "42043",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 120,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 3,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1665567784,
"lastSeenAt": 1749753032,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12661
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57623,
45.56144
]
},
"properties": {
"trip": {
"id": "284738323",
"shortName": null,
"headsign": "Sud",
"startTime": "10:00:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1394410"
},
"route": {
"id": "139",
"shortName": "139",
"longName": "Pie-IX",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42044",
"label": "42044",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 27,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1668511926,
"lastSeenAt": 1749753047,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12734
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63944,
45.5312
]
},
"properties": {
"trip": {
"id": "284739472",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:45:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1930135"
},
"route": {
"id": "193",
"shortName": "193",
"longName": "Jarry",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "42049",
"label": "42049",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 291,
"odometer": 0,
"speed": 27
},
"agencyId": 1,
"currentStopSequence": 49,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1668800763,
"lastSeenAt": 1749753031,
"links": [
3,
22
],
"tags": [
5
]
},
"id": 12744
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.81499,
45.44118
]
},
"properties": {
"trip": {
"id": "286574189",
"shortName": null,
"headsign": "Est",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4050077"
},
"route": {
"id": "405",
"shortName": "405",
"longName": "Express Bord-du-Lac",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44003",
"label": "44003",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 27,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1734987007,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2928839
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56499,
45.50074
]
},
"properties": {
"trip": {
"id": "286570105",
"shortName": null,
"headsign": "Est",
"startTime": "09:52:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "360158"
},
"route": {
"id": "36",
"shortName": "36",
"longName": "Monk",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44004",
"label": "44004",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 38,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1734646086,
"lastSeenAt": 1749753042,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2928821
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.93988,
45.40375
]
},
"properties": {
"trip": {
"id": "286574138",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:25:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2110143"
},
"route": {
"id": "211",
"shortName": "211",
"longName": "Bord-du-Lac",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44005",
"label": "44005",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 235,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 47,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1740085566,
"lastSeenAt": 1749753008,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2928982
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59566,
45.47477
]
},
"properties": {
"trip": {
"id": "286573322",
"shortName": null,
"headsign": "Est",
"startTime": "09:35:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "2110142"
},
"route": {
"id": "211",
"shortName": "211",
"longName": "Bord-du-Lac",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44007",
"label": "44007",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 17,
"odometer": 0,
"speed": 72
},
"agencyId": 1,
"currentStopSequence": 47,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1741279566,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2929024
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55561,
45.49658
]
},
"properties": {
"trip": {
"id": "286572001",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:25:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1070141"
},
"route": {
"id": "107",
"shortName": "107",
"longName": "Verdun",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44009",
"label": "44009",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 7,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1734558366,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2928814
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58546,
45.48851
]
},
"properties": {
"trip": {
"id": "286571040",
"shortName": null,
"headsign": "Est",
"startTime": "09:33:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "900252"
},
"route": {
"id": "90",
"shortName": "90",
"longName": "Saint-Jacques",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44010",
"label": "44010",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 53,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 2,
"firstSeenAt": 1737722405,
"lastSeenAt": 1749752641,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2928928
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56338,
45.46174
]
},
"properties": {
"trip": {
"id": "286571727",
"shortName": null,
"headsign": "Sud",
"startTime": "10:07:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "380009"
},
"route": {
"id": "38",
"shortName": "38",
"longName": "De l'Église",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44011",
"label": "44011",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 19,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1734577208,
"lastSeenAt": 1749753043,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2928815
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63388,
45.43085
]
},
"properties": {
"trip": {
"id": "286571828",
"shortName": null,
"headsign": "Est",
"startTime": "10:20:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1060134"
},
"route": {
"id": "106",
"shortName": "106",
"longName": "Newman",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44013",
"label": "44013",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 62,
"odometer": 0,
"speed": 9
},
"agencyId": 1,
"currentStopSequence": 15,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1737664807,
"lastSeenAt": 1749753038,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2928926
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58486,
45.45714
]
},
"properties": {
"trip": {
"id": "286573635",
"shortName": null,
"headsign": "Ouest",
"startTime": "10:12:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "370159"
},
"route": {
"id": "37",
"shortName": "37",
"longName": "Jolicoeur",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44016",
"label": "44016",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 274,
"odometer": 0,
"speed": 12
},
"agencyId": 1,
"currentStopSequence": 15,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1737757625,
"lastSeenAt": 1749753036,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2928930
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65063,
45.4411
]
},
"properties": {
"trip": {
"id": "286574521",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:58:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4960099"
},
"route": {
"id": "496",
"shortName": "496",
"longName": "Express Victoria",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44017",
"label": "44017",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 251,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 3,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 3,
"firstSeenAt": 1737579964,
"lastSeenAt": 1749753037,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2928924
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64837,
45.42506
]
},
"properties": {
"trip": {
"id": "286573371",
"shortName": null,
"headsign": "Ouest",
"startTime": "09:54:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1130161"
},
"route": {
"id": "113",
"shortName": "113",
"longName": "Lapierre",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44022",
"label": "44022",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 28,
"odometer": 0,
"speed": 18
},
"agencyId": 1,
"currentStopSequence": 28,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1744881486,
"lastSeenAt": 1749752516,
"links": [
3,
22
],
"tags": []
},
"id": 2929157
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58101,
45.48294
]
},
"properties": {
"trip": {
"id": "286574095",
"shortName": null,
"headsign": "Est",
"startTime": "10:07:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4910081"
},
"route": {
"id": "491",
"shortName": "491",
"longName": "Express Provost",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44025",
"label": "44025",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 8,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1742240587,
"lastSeenAt": 1749752900,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2929051
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67262,
45.43824
]
},
"properties": {
"trip": {
"id": "286572363",
"shortName": null,
"headsign": "Est",
"startTime": "10:10:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "1100211"
},
"route": {
"id": "110",
"shortName": "110",
"longName": "Centrale",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44026",
"label": "44026",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 181,
"odometer": 0,
"speed": 45
},
"agencyId": 1,
"currentStopSequence": 17,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1740082265,
"lastSeenAt": 1749753035,
"links": [
3,
22
],
"tags": [
4
]
},
"id": 2928981
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68033,
45.44303
]
},
"properties": {
"trip": {
"id": "910754",
"shortName": null,
"headsign": null,
"startTime": "10:32:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": null
},
"route": {
"id": "90",
"shortName": "90",
"longName": "Saint-Jacques",
"color": "#781B7D",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44029",
"label": "44029",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 0,
"odometer": 0,
"speed": 0
},
"agencyId": 1,
"currentStopSequence": 1,
"currentStatus": 1,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1746092767,
"lastSeenAt": 1749753046,
"links": [
3,
22
],
"tags": []
},
"id": 2929190
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59692,
45.47209
]
},
"properties": {
"trip": {
"id": "286572350",
"shortName": null,
"headsign": "Est",
"startTime": "09:50:00",
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "4050077"
},
"route": {
"id": "405",
"shortName": "405",
"longName": "Express Bord-du-Lac",
"color": "#009EE0",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "44032",
"label": "44032",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 17,
"odometer": 0,
"speed": 72
},
"agencyId": 1,
"currentStopSequence": 31,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1744807988,
"lastSeenAt": 1749753033,
"links": [
3,
22
],
"tags": []
},
"id": 2929150
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.86671,
45.67284
]
},
"properties": {
"trip": {
"id": "4084028-TRAIN-H25-TRKPI-Semaine-10",
"shortName": "173",
"headsign": "Saint-Jérôme",
"startTime": null,
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "40082"
},
"route": {
"id": "4",
"shortName": "SJ",
"longName": "12 - Saint-Jérôme",
"color": "#FBD06C",
"textColor": "#000000"
},
"vehicle": {
"id": "2003",
"label": "2003",
"licensePlate": null,
"type": 2
},
"position": {
"bearing": 315.4,
"odometer": 0,
"speed": 5
},
"agencyId": 2,
"currentStopSequence": 10,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 1,
"firstSeenAt": 1598263984,
"lastSeenAt": 1749753057,
"links": [
52
],
"tags": []
},
"id": 8053
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5153,
45.36071
]
},
"properties": {
"trip": {
"id": "4084038-TRAIN-H25-TRKPI-Semaine-10",
"shortName": "84",
"headsign": "Lucien-L'Allier",
"startTime": null,
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "50077"
},
"route": {
"id": "5",
"shortName": "CA",
"longName": "14 - Candiac",
"color": "#5AB6B2",
"textColor": "#000000"
},
"vehicle": {
"id": "3003",
"label": "3003",
"licensePlate": null,
"type": 2
},
"position": {
"bearing": 289,
"odometer": 0,
"speed": 21
},
"agencyId": 2,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 0,
"firstSeenAt": 1583312583,
"lastSeenAt": 1749753054,
"links": [
52
],
"tags": []
},
"id": 3403
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.8215,
45.44197
]
},
"properties": {
"trip": {
"id": "4083546-TRAIN-H25-TRKPI-Semaine-10",
"shortName": "13",
"headsign": "Vaudreuil",
"startTime": null,
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "10423"
},
"route": {
"id": "1",
"shortName": "VH",
"longName": "11 - Vaudreuil/Hudson",
"color": "#F16179",
"textColor": "#000000"
},
"vehicle": {
"id": "3020",
"label": "3020",
"licensePlate": null,
"type": 2
},
"position": {
"bearing": 248.9,
"odometer": 0,
"speed": 27
},
"agencyId": 2,
"currentStopSequence": 10,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 0,
"firstSeenAt": 1576258564,
"lastSeenAt": 1749753057,
"links": [
52
],
"tags": []
},
"id": 3056
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51727,
45.3612
]
},
"properties": {
"trip": {
"id": "4084038-TRAIN-H25-TRKPI-Semaine-10",
"shortName": "84",
"headsign": "Lucien-L'Allier",
"startTime": null,
"scheduleRelationship": 0,
"blockId": null,
"serviceId": null,
"shapeId": "50077"
},
"route": {
"id": "5",
"shortName": "CA",
"longName": "14 - Candiac",
"color": "#5AB6B2",
"textColor": "#000000"
},
"vehicle": {
"id": "AMT1320",
"label": "AMT1320",
"licensePlate": null,
"type": 2
},
"position": {
"bearing": 289,
"odometer": 0,
"speed": 26
},
"agencyId": 2,
"currentStopSequence": 2,
"currentStatus": 2,
"congestionLevel": 0,
"occupancyStatus": 0,
"firstSeenAt": 1579660565,
"lastSeenAt": 1749753059,
"links": [
52
],
"tags": []
},
"id": 3279
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.80281,
45.57965
]
},
"properties": {
"trip": {
"id": "MARS2576O1D12015510531",
"shortName": null,
"headsign": "Station Sainte-Dorothée",
"startTime": null,
"scheduleRelationship": null,
"blockId": null,
"serviceId": null,
"shapeId": "MARS2576O1"
},
"route": {
"id": "MARS2576O",
"shortName": "76",
"longName": "Station Sainte-Dorothée",
"color": "#151f6d",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "0603",
"label": "0603",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 274,
"odometer": null,
"speed": 14
},
"agencyId": 3,
"currentStopSequence": null,
"currentStatus": null,
"congestionLevel": null,
"occupancyStatus": null,
"firstSeenAt": 1682968396,
"lastSeenAt": 1749753043,
"links": [],
"tags": []
},
"id": 2924596
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74951,
45.63599
]
},
"properties": {
"trip": {
"id": "MARS2574O2D1012030512",
"shortName": null,
"headsign": "Métro Cartier",
"startTime": null,
"scheduleRelationship": null,
"blockId": null,
"serviceId": null,
"shapeId": "MARS2574O2"
},
"route": {
"id": "MARS2574O",
"shortName": "74",
"longName": "Métro Cartier",
"color": "#151f6d",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "0605",
"label": "0605",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 168,
"odometer": null,
"speed": 0
},
"agencyId": 3,
"currentStopSequence": null,
"currentStatus": null,
"congestionLevel": null,
"occupancyStatus": null,
"firstSeenAt": 1682973751,
"lastSeenAt": 1749753058,
"links": [],
"tags": []
},
"id": 2924739
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.78751,
45.5767
]
},
"properties": {
"trip": {
"id": "MARS25151N2D11520060543",
"shortName": null,
"headsign": "Sainte-Rose",
"startTime": null,
"scheduleRelationship": null,
"blockId": null,
"serviceId": null,
"shapeId": "MARS25151N2"
},
"route": {
"id": "MARS25151N",
"shortName": "151",
"longName": "Sainte-Rose",
"color": "#151f6d",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "0606",
"label": "0606",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 344,
"odometer": null,
"speed": 0
},
"agencyId": 3,
"currentStopSequence": null,
"currentStatus": null,
"congestionLevel": null,
"occupancyStatus": null,
"firstSeenAt": 1682958976,
"lastSeenAt": 1749753023,
"links": [],
"tags": []
},
"id": 2910692
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72326,
45.56163
]
},
"properties": {
"trip": {
"id": "MARS2561S2D11416180520",
"shortName": null,
"headsign": "Métro Montmorency",
"startTime": null,
"scheduleRelationship": null,
"blockId": null,
"serviceId": null,
"shapeId": "MARS2561S2"
},
"route": {
"id": "MARS2561S",
"shortName": "61",
"longName": "Métro Montmorency",
"color": "#151f6d",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "0608",
"label": "0608",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 68,
"odometer": null,
"speed": 21
},
"agencyId": 3,
"currentStopSequence": null,
"currentStatus": null,
"congestionLevel": null,
"occupancyStatus": null,
"firstSeenAt": 1682968396,
"lastSeenAt": 1749753048,
"links": [],
"tags": []
},
"id": 2924594
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74854,
45.56821
]
},
"properties": {
"trip": {
"id": "MARS2542E1D10016060547",
"shortName": null,
"headsign": "Saint-François",
"startTime": null,
"scheduleRelationship": null,
"blockId": null,
"serviceId": null,
"shapeId": "MARS2542E1"
},
"route": {
"id": "MARS2542E",
"shortName": "42",
"longName": "Saint-François",
"color": "#151f6d",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "0704",
"label": "0704",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 215,
"odometer": null,
"speed": 0
},
"agencyId": 3,
"currentStopSequence": null,
"currentStatus": null,
"congestionLevel": null,
"occupancyStatus": null,
"firstSeenAt": 1682973751,
"lastSeenAt": 1749752959,
"links": [],
"tags": []
},
"id": 2924726
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65962,
45.59665
]
},
"properties": {
"trip": {
"id": "MARS2542E1D10016060547",
"shortName": null,
"headsign": "Saint-François",
"startTime": null,
"scheduleRelationship": null,
"blockId": null,
"serviceId": null,
"shapeId": "MARS2542E1"
},
"route": {
"id": "MARS2542E",
"shortName": "42",
"longName": "Saint-François",
"color": "#151f6d",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "0705",
"label": "0705",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 38,
"odometer": null,
"speed": 11
},
"agencyId": 3,
"currentStopSequence": null,
"currentStatus": null,
"congestionLevel": null,
"occupancyStatus": null,
"firstSeenAt": 1682968396,
"lastSeenAt": 1749753038,
"links": [],
"tags": []
},
"id": 2924580
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.77737,
45.55294
]
},
"properties": {
"trip": {
"id": "MARS2556O2D10114080523",
"shortName": null,
"headsign": "Sainte-Dorothée",
"startTime": null,
"scheduleRelationship": null,
"blockId": null,
"serviceId": null,
"shapeId": "MARS2556O2"
},
"route": {
"id": "MARS2556O",
"shortName": "56",
"longName": "Sainte-Dorothée",
"color": "#151f6d",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "0812",
"label": "0812",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 197,
"odometer": null,
"speed": 0
},
"agencyId": 3,
"currentStopSequence": null,
"currentStatus": null,
"congestionLevel": null,
"occupancyStatus": null,
"firstSeenAt": 1682968396,
"lastSeenAt": 1749753043,
"links": [],
"tags": []
},
"id": 2924575
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.78276,
45.62859
]
},
"properties": {
"trip": {
"id": "MARS25151S1D11521080546",
"shortName": null,
"headsign": "Métro Côte-Vertu",
"startTime": null,
"scheduleRelationship": null,
"blockId": null,
"serviceId": null,
"shapeId": "MARS25151S1"
},
"route": {
"id": "MARS25151S",
"shortName": "151",
"longName": "Métro Côte-Vertu",
"color": "#151f6d",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "0813",
"label": "0813",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 215,
"odometer": null,
"speed": 0
},
"agencyId": 3,
"currentStopSequence": null,
"currentStatus": null,
"congestionLevel": null,
"occupancyStatus": null,
"firstSeenAt": 1682966891,
"lastSeenAt": 1749752959,
"links": [],
"tags": []
},
"id": 2921811
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.78273,
45.61634
]
},
"properties": {
"trip": {
"id": "MARS2565N2D10514500515",
"shortName": null,
"headsign": "Gare Sainte-Rose",
"startTime": null,
"scheduleRelationship": null,
"blockId": null,
"serviceId": null,
"shapeId": "MARS2565N2"
},
"route": {
"id": "MARS2565N",
"shortName": "65",
"longName": "Gare Sainte-Rose",
"color": "#151f6d",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "0913",
"label": "0913",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 348,
"odometer": null,
"speed": 14
},
"agencyId": 3,
"currentStopSequence": null,
"currentStatus": null,
"congestionLevel": null,
"occupancyStatus": null,
"firstSeenAt": 1682726591,
"lastSeenAt": 1749753053,
"links": [],
"tags": []
},
"id": 2677064
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75271,
45.63079
]
},
"properties": {
"trip": {
"id": "MARS2531S2D10715580564",
"shortName": null,
"headsign": "Métro Henri-Bourassa",
"startTime": null,
"scheduleRelationship": null,
"blockId": null,
"serviceId": null,
"shapeId": "MARS2531S2"
},
"route": {
"id": "MARS2531S",
"shortName": "31",
"longName": "Métro Henri-Bourassa",
"color": "#151f6d",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "1002",
"label": "1002",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 164,
"odometer": null,
"speed": 0
},
"agencyId": 3,
"currentStopSequence": null,
"currentStatus": null,
"congestionLevel": null,
"occupancyStatus": null,
"firstSeenAt": 1682973751,
"lastSeenAt": 1749752988,
"links": [],
"tags": []
},
"id": 2924678
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68238,
45.51344
]
},
"properties": {
"trip": {
"id": "MARS25151S1D11521080546",
"shortName": null,
"headsign": "Métro Côte-Vertu",
"startTime": null,
"scheduleRelationship": null,
"blockId": null,
"serviceId": null,
"shapeId": "MARS25151S1"
},
"route": {
"id": "MARS25151S",
"shortName": "151",
"longName": "Métro Côte-Vertu",
"color": "#151f6d",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "1004",
"label": "1004",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 224,
"odometer": null,
"speed": 5
},
"agencyId": 3,
"currentStopSequence": null,
"currentStatus": null,
"congestionLevel": null,
"occupancyStatus": null,
"firstSeenAt": 1682973751,
"lastSeenAt": 1749753023,
"links": [],
"tags": []
},
"id": 2924677
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73407,
45.60834
]
},
"properties": {
"trip": {
"id": "MARS2573N1D12720320583",
"shortName": null,
"headsign": "Fabreville",
"startTime": null,
"scheduleRelationship": null,
"blockId": null,
"serviceId": null,
"shapeId": "MARS2573N1"
},
"route": {
"id": "MARS2573N",
"shortName": "73",
"longName": "Fabreville",
"color": "#151f6d",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "1008",
"label": "1008",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 338,
"odometer": null,
"speed": 0
},
"agencyId": 3,
"currentStopSequence": null,
"currentStatus": null,
"congestionLevel": null,
"occupancyStatus": null,
"firstSeenAt": 1682965645,
"lastSeenAt": 1749753053,
"links": [],
"tags": []
},
"id": 2919835
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.76929,
45.58651
]
},
"properties": {
"trip": {
"id": "MARS2563S2D110120506",
"shortName": null,
"headsign": "Métro Cartier",
"startTime": null,
"scheduleRelationship": null,
"blockId": null,
"serviceId": null,
"shapeId": "MARS2563S2"
},
"route": {
"id": "MARS2563S",
"shortName": "63",
"longName": "Métro Cartier",
"color": "#151f6d",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "1012",
"label": "1012",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 148,
"odometer": null,
"speed": 18
},
"agencyId": 3,
"currentStopSequence": null,
"currentStatus": null,
"congestionLevel": null,
"occupancyStatus": null,
"firstSeenAt": 1682953215,
"lastSeenAt": 1749753048,
"links": [],
"tags": []
},
"id": 2902755
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.805,
45.58883
]
},
"properties": {
"trip": {
"id": "MARS2561N1D11415270515",
"shortName": null,
"headsign": "Fabreville",
"startTime": null,
"scheduleRelationship": null,
"blockId": null,
"serviceId": null,
"shapeId": "MARS2561N1"
},
"route": {
"id": "MARS2561N",
"shortName": "61",
"longName": "Fabreville",
"color": "#151f6d",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "1109",
"label": "1109",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 256,
"odometer": null,
"speed": 10
},
"agencyId": 3,
"currentStopSequence": null,
"currentStatus": null,
"congestionLevel": null,
"occupancyStatus": null,
"firstSeenAt": 1574470503,
"lastSeenAt": 1749753058,
"links": [
53,
80
],
"tags": []
},
"id": 2286
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.76609,
45.54944
]
},
"properties": {
"trip": {
"id": "MARS2546N2D12019220525",
"shortName": null,
"headsign": "Laval-Ouest",
"startTime": null,
"scheduleRelationship": null,
"blockId": null,
"serviceId": null,
"shapeId": "MARS2546N2"
},
"route": {
"id": "MARS2546N",
"shortName": "46",
"longName": "Laval-Ouest",
"color": "#151f6d",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "1110",
"label": "1110",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 248,
"odometer": null,
"speed": 0
},
"agencyId": 3,
"currentStopSequence": null,
"currentStatus": null,
"congestionLevel": null,
"occupancyStatus": null,
"firstSeenAt": 1682968396,
"lastSeenAt": 1749753058,
"links": [],
"tags": []
},
"id": 2924522
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.82652,
45.56592
]
},
"properties": {
"trip": {
"id": "MARS25903S1D10117020518",
"shortName": null,
"headsign": "Métro Montmorency",
"startTime": null,
"scheduleRelationship": null,
"blockId": null,
"serviceId": null,
"shapeId": "MARS25903S1"
},
"route": {
"id": "MARS25903S",
"shortName": "903",
"longName": "Métro Montmorency",
"color": "#151f6d",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "1120",
"label": "1120",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 35,
"odometer": null,
"speed": 0
},
"agencyId": 3,
"currentStopSequence": null,
"currentStatus": null,
"congestionLevel": null,
"occupancyStatus": null,
"firstSeenAt": 1682973751,
"lastSeenAt": 1749752988,
"links": [],
"tags": []
},
"id": 2924664
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72274,
45.52934
]
},
"properties": {
"trip": {
"id": "MARS25144E2D106260502",
"shortName": null,
"headsign": "Métro Côte-Vertu",
"startTime": null,
"scheduleRelationship": null,
"blockId": null,
"serviceId": null,
"shapeId": "MARS25144E2"
},
"route": {
"id": "MARS25144E",
"shortName": "144",
"longName": "Métro Côte-Vertu",
"color": "#151f6d",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "1202",
"label": "1202",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 132,
"odometer": null,
"speed": 0
},
"agencyId": 3,
"currentStopSequence": null,
"currentStatus": null,
"congestionLevel": null,
"occupancyStatus": null,
"firstSeenAt": 1682690232,
"lastSeenAt": 1749753048,
"links": [],
"tags": []
},
"id": 2390977
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.79237,
45.57886
]
},
"properties": {
"trip": {
"id": "MARS2576E2D10615450536",
"shortName": null,
"headsign": "Métro Montmorency",
"startTime": null,
"scheduleRelationship": null,
"blockId": null,
"serviceId": null,
"shapeId": "MARS2576E2"
},
"route": {
"id": "MARS2576E",
"shortName": "76",
"longName": "Métro Montmorency",
"color": "#151f6d",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "1209",
"label": "1209",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 87,
"odometer": null,
"speed": 0
},
"agencyId": 3,
"currentStopSequence": null,
"currentStatus": null,
"congestionLevel": null,
"occupancyStatus": null,
"firstSeenAt": 1682949430,
"lastSeenAt": 1749753048,
"links": [],
"tags": []
},
"id": 2897500
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70881,
45.56173
]
},
"properties": {
"trip": {
"id": "MARS2533N2D10422100521",
"shortName": null,
"headsign": "Métro Montmorency",
"startTime": null,
"scheduleRelationship": null,
"blockId": null,
"serviceId": null,
"shapeId": "MARS2533N2"
},
"route": {
"id": "MARS2533N",
"shortName": "33",
"longName": "Métro Montmorency",
"color": "#151f6d",
"textColor": "#FFFFFF"
},
"vehicle": {
"id": "1217",
"label": "1217",
"licensePlate": null,
"type": 3
},
"position": {
"bearing": 152,
"odometer": null,
"speed": 10
},
"agencyId": 3,
"currentStopSequence": null,
"currentStatus": null,
"congestionLevel": null,
"occupancyStatus": null,
"firstSeenAt": 1682944279,
"lastSeenAt": 1749753053,
"links": [],
"tags": []
},
"id": 2888504
}
],
"links": {
"first": "https://api.transittracker.ca/v2/vehicles.geojson?page=1",
"last": "https://api.transittracker.ca/v2/vehicles.geojson?page=8",
"prev": null,
"next": "https://api.transittracker.ca/v2/vehicles.geojson?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 8,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "https://api.transittracker.ca/v2/vehicles.geojson?page=1",
"label": "1",
"active": true
},
{
"url": "https://api.transittracker.ca/v2/vehicles.geojson?page=2",
"label": "2",
"active": false
},
{
"url": "https://api.transittracker.ca/v2/vehicles.geojson?page=3",
"label": "3",
"active": false
},
{
"url": "https://api.transittracker.ca/v2/vehicles.geojson?page=4",
"label": "4",
"active": false
},
{
"url": "https://api.transittracker.ca/v2/vehicles.geojson?page=5",
"label": "5",
"active": false
},
{
"url": "https://api.transittracker.ca/v2/vehicles.geojson?page=6",
"label": "6",
"active": false
},
{
"url": "https://api.transittracker.ca/v2/vehicles.geojson?page=7",
"label": "7",
"active": false
},
{
"url": "https://api.transittracker.ca/v2/vehicles.geojson?page=8",
"label": "8",
"active": false
},
{
"url": "https://api.transittracker.ca/v2/vehicles.geojson?page=2",
"label": "Next »",
"active": false
}
],
"path": "https://api.transittracker.ca/v2/vehicles.geojson",
"per_page": 500,
"to": 500,
"total": 3553
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET v2/vehicles/{vehicle_id}
Example request:
curl --request GET \
--get "https://api.transittracker.ca/v2/vehicles/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "Accept-Language: en"
$client = new \GuzzleHttp\Client();
$url = 'https://api.transittracker.ca/v2/vehicles/1';
$response = $client->get(
$url,
[
'headers' => [
'Content-Type' => 'application/json',
'Accept' => 'application/json',
'Accept-Language' => 'en',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://api.transittracker.ca/v2/vehicles/1'
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Accept-Language': 'en'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 30
x-ratelimit-remaining: 27
content-language: en
vary: Origin
{
"data": {
"id": 1,
"ref": "22215",
"isActive": false,
"label": "22215",
"timestamp": null,
"tripId": "217809243",
"routeId": "162",
"startTime": "07:43:00",
"position": {
"lat": 45.52127,
"lon": -73.66717
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "162",
"routeLongName": "Westminster",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.