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: 135
x-ratelimit-remaining: 134
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": "#A80532",
"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": 5,
"isArchived": false,
"name": "exo Laurentides",
"shortName": "Laurentides",
"slug": "la",
"cities": [
"Bois-des-Filion",
"Deux-Montagnes",
"Sainte-Anne-des-Plaines",
"Sainte-Thérèse",
"Saint-Jérôme"
],
"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": [
"Otterburn Park",
"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": [
"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"
],
"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": false,
"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": "#DBE9D0",
"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": [
"Île Perrot",
"Pincourt",
"Rigaud",
"St-Lazare",
"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",
"Contrecoeur",
"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": [
"Pickering",
"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": [
"Aurora",
"East Gwillimbury",
"Newmarket",
"Richmond Hill",
"Vaughan"
],
"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": [
"Niagara Falls",
"Kitchener",
"Barrie",
"Richmond Hill",
"Stouffville"
],
"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": [
"Val-Morin",
"Piedmont",
"Saint-Sauveur",
"Prévost",
"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": [],
"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": [],
"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": [],
"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": [],
"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": {}
}
]
}
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: 135
x-ratelimit-remaining: 133
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: 5
x-ratelimit-remaining: 4
content-language: en
vary: Origin
{
"data": [
{
"id": 53,
"title": "Transcollines: temporary deactivation",
"subtitle": "The agency has discontinued its stream indefinitely",
"body": "<p>Transcollines is in the process of migrating providers for its real-time data. During this migration, the data is not accessible. This pause is in effect for an indefinite period.</p>",
"color": "error-container",
"icon": "M13,13H11V7H13M13,17H11V15H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z",
"action": null,
"actionParameters": [],
"image": "0oRXQAfZQZym0wDF7OVu3lU2VwcOKG-metaZXJyb3IgKDEpLnBuZw==-.png",
"canBeClosed": true
},
{
"id": 59,
"title": "Hamilton Street Railway not updated",
"subtitle": "Ongoing Cybersecurity Incident at the City of Hamilton",
"body": "<p>The realtime feeds of Hamilton Street Railway are currently unavailable because of a cybersecurity incident.</p><p>Read more here: <a href=\"https://www.hamilton.ca/cyberincident\">https://www.hamilton.ca/cyberincident</a></p>",
"color": "error",
"icon": "M13,19H14A1,1 0 0,1 15,20H15.73L13,17.27V19M22,20V21.18L20.82,20H22M21,22.72L19.73,24L17.73,22H15A1,1 0 0,1 14,23H10A1,1 0 0,1 9,22H2V20H9A1,1 0 0,1 10,19H11V17H4A1,1 0 0,1 3,16V12A1,1 0 0,1 4,11H6.73L4.73,9H4A1,1 0 0,1 3,8V7.27L1,5.27L2.28,4L21,22.72M4,3H20A1,1 0 0,1 21,4V8A1,1 0 0,1 20,9H9.82L7,6.18V5H5.82L3.84,3C3.89,3 3.94,3 4,3M20,11A1,1 0 0,1 21,12V16A1,1 0 0,1 20,17H17.82L11.82,11H20M9,7H10V5H9V7M9,15H10V14.27L9,13.27V15M5,13V15H7V13H5Z",
"action": null,
"actionParameters": [],
"image": "",
"canBeClosed": false
},
{
"id": 61,
"title": "Saint-Hyacinthe is now available",
"subtitle": "MRC Haut-Saint-Laurent is now back",
"body": "<p>Transit Tracker now has a new agency: City of Saint-Hyacinthe! Located southeast of Montreal, this city offers local bus service.<br><br><strong>Concerning the vehicle identifier: </strong>this is not the vehicle fleet number. They might not even be tied to a single vehicle (like Zenbus, behavior is unknown). You can always suggest a new vehicle ID using the report form.<br><br>This also applies to the MRC du Haut-Saint-Laurent, which uses the same data provider.</p><p>Photo by Sébastien Maltais - GNU Free Documentation.</p>",
"color": "default",
"icon": "M12 2C7.58 2 4 2.5 4 6V16A3 3 0 0 0 5 18.22V20A1 1 0 0 0 6 21H7A1 1 0 0 0 8 20V19H14A8 8 0 0 1 13 15.5A5.55 5.55 0 0 1 15.38 11H6V6H18V10A4.07 4.07 0 0 1 18.5 10A5.34 5.34 0 0 1 20 10.22V6C20 2.5 16.42 2 12 2M7.5 14A1.5 1.5 0 1 1 6 15.5A1.5 1.5 0 0 1 7.5 14M18.5 12A3.54 3.54 0 0 0 15 15.5C15 18.1 18.5 22 18.5 22S22 18.1 22 15.5A3.54 3.54 0 0 0 18.5 12M18.5 16.8A1.2 1.2 0 1 1 18.5 14.4A1.29 1.29 0 0 1 19.7 15.6A1.15 1.15 0 0 1 18.5 16.8Z",
"action": "newAgencies",
"actionParameters": {
"agencies": "vsh,mrchsl"
},
"image": "01HT0466BNYWHAC8SHJ32CWX99.png",
"canBeClosed": true
}
]
}
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 (403):
Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 5
x-ratelimit-remaining: 3
content-language: en
vary: Origin
{
"message": "Alert is inactive or expired."
}
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
laravel-responsecache: Wed, 27 Mar 2024 10:14:52 -0400
x-ratelimit-limit: 12
x-ratelimit-remaining: 9
content-language: en
vary: Origin
{
"data": [
{
"id": 61,
"title": "Saint-Hyacinthe is now available",
"subtitle": "MRC Haut-Saint-Laurent is now back",
"body": "<p>Transit Tracker now has a new agency: City of Saint-Hyacinthe! Located southeast of Montreal, this city offers local bus service.<br><br><strong>Concerning the vehicle identifier: </strong>this is not the vehicle fleet number. They might not even be tied to a single vehicle (like Zenbus, behavior is unknown). You can always suggest a new vehicle ID using the report form.<br><br>This also applies to the MRC du Haut-Saint-Laurent, which uses the same data provider.</p><p>Photo by Sébastien Maltais - GNU Free Documentation.</p>",
"color": "default",
"icon": "M12 2C7.58 2 4 2.5 4 6V16A3 3 0 0 0 5 18.22V20A1 1 0 0 0 6 21H7A1 1 0 0 0 8 20V19H14A8 8 0 0 1 13 15.5A5.55 5.55 0 0 1 15.38 11H6V6H18V10A4.07 4.07 0 0 1 18.5 10A5.34 5.34 0 0 1 20 10.22V6C20 2.5 16.42 2 12 2M7.5 14A1.5 1.5 0 1 1 6 15.5A1.5 1.5 0 0 1 7.5 14M18.5 12A3.54 3.54 0 0 0 15 15.5C15 18.1 18.5 22 18.5 22S22 18.1 22 15.5A3.54 3.54 0 0 0 18.5 12M18.5 16.8A1.2 1.2 0 1 1 18.5 14.4A1.29 1.29 0 0 1 19.7 15.6A1.15 1.15 0 0 1 18.5 16.8Z",
"action": "newAgencies",
"actionParameters": {
"agencies": "vsh,mrchsl"
},
"image": "01HT0466BNYWHAC8SHJ32CWX99.png",
"canBeClosed": true
}
]
}
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/labore/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/labore/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/labore/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/ea" \
--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/ea';
$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/ea'
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
laravel-responsecache: Thu, 28 Mar 2024 11:02:15 -0400
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": 887,
"cities": [
"Montréal",
"Saint-Jérôme",
"Laval",
"Longueuil",
"Deux-Montagnes",
"McMasterville",
"La Prairie",
"L'Assomption",
"Sainte-Julie",
"Beauharnois",
"Très-Saint-Sacrement",
"Vaudreuil-Dorion",
"Saint-Constant",
"Saint-Joseph-de-Sorel",
"Mascouche",
"Richelieu",
"Sorel-Tracy",
"Sainte-Barbe",
"Terrebonne",
"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": 2342,
"cities": [
"Toronto",
"Brampton",
"Burlington",
"Scugog",
"Hamilton",
"Newmarket",
"Elmira",
"Guelph",
"Barrie",
"Borden",
"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": 24,
"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": 172,
"cities": [
"Saint-Lambert-de-Lauzon",
"Saint-Augustin-de-Desmaures"
],
"range": 5
},
"geometry": {
"type": "Point",
"coordinates": [
"-71.3005",
"46.7456"
]
}
},
{
"type": "Feature",
"properties": {
"slug": "outaouais",
"name": "Outaouais",
"agencies": 1,
"vehicles": 85,
"cities": [
"Gatineau"
],
"range": 5
},
"geometry": {
"type": "Point",
"coordinates": [
"-75.7386",
"45.5388"
]
}
},
{
"type": "Feature",
"properties": {
"slug": "laurentides",
"name": "Laurentides",
"agencies": 3,
"vehicles": 41,
"cities": [
"Mont-Tremblant",
"Saint-Sauveur",
"Blainville"
],
"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
laravel-responsecache: Thu, 28 Mar 2024 11:02:15 -0400
x-ratelimit-limit: 5
x-ratelimit-remaining: 3
content-language: en
vary: Origin
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55807,
45.57769
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68267,
45.44601
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55967,
45.50104
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.84724,
45.49513
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.8994,
45.41346
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67802,
45.44197
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59282,
45.46497
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72838,
45.4461
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83165,
45.46564
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72602,
45.46029
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.85326,
45.44997
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69571,
45.47076
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57787,
45.49505
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65591,
45.49318
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61315,
45.46642
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62678,
45.43174
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5813,
45.4826
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62614,
45.42634
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56843,
45.48852
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5797,
45.48186
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.8143,
45.4432
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68366,
45.43576
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.87406,
45.43876
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63211,
45.46512
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60545,
45.45234
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64906,
45.4423
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67999,
45.51638
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62946,
45.60355
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6494,
45.56248
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58708,
45.62943
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51189,
45.61169
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5724,
45.64439
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57997,
45.50295
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53419,
45.5965
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65932,
45.56886
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59361,
45.60001
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49261,
45.63911
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58077,
45.64775
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63905,
45.49278
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58633,
45.54169
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83196,
45.4661
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67378,
45.53421
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57513,
45.59188
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53653,
45.67574
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62936,
45.61564
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49996,
45.68395
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61388,
45.53894
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56027,
45.58844
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55734,
45.49343
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.8726,
45.4915
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.90317,
45.46037
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.84077,
45.51198
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74596,
45.48844
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5741,
45.55127
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5414,
45.5503
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63786,
45.57648
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67532,
45.55068
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59875,
45.56997
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62166,
45.56907
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53773,
45.54913
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69524,
45.50449
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6245,
45.60508
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66805,
45.55692
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56887,
45.51904
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56477,
45.50061
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55588,
45.50874
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55489,
45.46262
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56553,
45.51504
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62386,
45.54105
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63981,
45.54379
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59121,
45.54079
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60167,
45.53768
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56886,
45.5137
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56009,
45.53922
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83127,
45.46572
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69531,
45.54053
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53838,
45.66137
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64554,
45.54767
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6374,
45.54738
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65976,
45.55706
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62114,
45.55418
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53732,
45.58955
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62764,
45.54494
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57535,
45.54186
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53815,
45.5914
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51511,
45.57738
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57132,
45.50829
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50961,
45.59533
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56584,
45.57557
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54714,
45.56086
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54692,
45.56121
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5605,
45.5099
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55039,
45.5328
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63913,
45.57607
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54083,
45.59824
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54256,
45.4679
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56081,
45.53646
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55495,
45.44799
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6375,
45.60081
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61507,
45.57709
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.562,
45.55706
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61394,
45.61766
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57613,
45.55187
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55136,
45.54692
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63596,
45.57514
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57521,
45.49352
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66145,
45.47586
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56512,
45.51049
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68829,
45.50979
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63644,
45.50278
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61051,
45.49567
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.85018,
45.48902
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58406,
45.4964
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63216,
45.50084
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63076,
45.50023
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55267,
45.6134
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60021,
45.6248
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60434,
45.47374
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67771,
45.49421
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67307,
45.50825
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61351,
45.54011
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70451,
45.47856
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65079,
45.48899
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69512,
45.50219
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61703,
45.50528
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70617,
45.44805
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.52533,
45.50616
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55437,
45.62045
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55479,
45.52216
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56009,
45.53922
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.85918,
45.48876
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.80523,
45.43713
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83118,
45.46513
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.78729,
45.45585
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68416,
45.51435
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67442,
45.54442
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.8314,
45.46654
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.79638,
45.44742
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83761,
45.46333
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56744,
45.5019
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55661,
45.53839
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57191,
45.52799
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58205,
45.57911
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49485,
45.63234
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58224,
45.6465
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58513,
45.64465
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58878,
45.58234
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57734,
45.64767
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58357,
45.61782
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64897,
45.5834
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54796,
45.59641
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63251,
45.54837
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74404,
45.44828
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63283,
45.58649
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.79097,
45.47169
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64996,
45.58376
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55408,
45.64357
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50933,
45.65852
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68451,
45.489
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66752,
45.50933
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67562,
45.54258
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63081,
45.46679
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60476,
45.58438
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54437,
45.57145
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54233,
45.56153
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83125,
45.46641
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47963,
45.49353
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.48158,
45.4952
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.42805,
45.60582
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.519,
45.51648
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58179,
45.57952
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.48772,
45.5022
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.46266,
45.46812
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.48116,
45.4945
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51921,
45.52062
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.43132,
45.44912
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57143,
45.46215
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55024,
45.51108
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.44049,
45.47302
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65281,
45.44358
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63409,
45.59486
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57372,
45.49506
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66105,
45.52055
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60238,
45.57151
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58658,
45.48752
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.52189,
45.52451
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58167,
45.59483
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57951,
45.49397
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.52066,
45.52437
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61913,
45.5531
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51229,
45.60555
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64371,
45.51701
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62389,
45.47441
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70981,
45.49798
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.43922,
45.44395
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57584,
45.51049
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58006,
45.6171
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63762,
45.55538
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56618,
45.59813
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60462,
45.47378
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56882,
45.59917
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6535,
45.57787
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55579,
45.58685
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53556,
45.59575
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68423,
45.51398
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59857,
45.42895
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5563,
45.59534
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.441,
45.53844
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54082,
45.55093
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65752,
45.50628
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58863,
45.46497
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61261,
45.50994
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61967,
45.54123
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.84659,
45.46726
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56837,
45.50877
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.43715,
45.45147
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.44944,
45.52732
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.80904,
45.49564
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5942,
45.5571
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72761,
45.4518
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60058,
45.55988
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64283,
45.53437
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.48526,
45.53081
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.42463,
45.50211
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.645,
45.54265
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68343,
45.54744
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64149,
45.45451
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56652,
45.49916
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.38039,
45.5095
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61813,
45.52919
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.85638,
45.48774
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74137,
45.44777
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6196,
45.47975
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.4762,
45.45368
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73472,
45.52298
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55197,
45.5239
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58478,
45.49333
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55788,
45.50042
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61317,
45.6006
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47952,
45.56498
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59564,
45.51955
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68147,
45.51335
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65942,
45.54745
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61585,
45.61661
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.48738,
45.50015
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6051,
45.58442
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58258,
45.49559
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67305,
45.50824
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61483,
45.52057
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64344,
45.49697
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58038,
45.48932
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61126,
45.53147
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6246,
45.53017
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56632,
45.46796
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57043,
45.55959
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61106,
45.47531
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6618,
45.47556
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65718,
45.57306
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67221,
45.51145
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65341,
45.46585
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56118,
45.53954
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50697,
45.63128
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6832,
45.51447
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57466,
45.51484
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69387,
45.52135
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67289,
45.50816
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.48148,
45.70113
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64669,
45.58156
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5653,
45.57041
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61351,
45.60065
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54237,
45.46273
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58347,
45.4946
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55748,
45.57264
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56838,
45.50342
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66255,
45.56251
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54636,
45.57675
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.78902,
45.47248
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66123,
45.45901
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.43699,
45.59172
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68481,
45.51271
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.8164,
45.4458
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.45004,
45.53709
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57329,
45.55103
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66719,
45.55605
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.78748,
45.50164
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83144,
45.4654
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.89873,
45.41365
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62502,
45.46582
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.42764,
45.47756
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47135,
45.53278
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59734,
45.56849
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50798,
45.54079
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64813,
45.4258
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65033,
45.58421
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6744,
45.52071
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.48417,
45.52555
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51254,
45.52959
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75182,
45.45569
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.42308,
45.45433
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.44585,
45.43652
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62222,
45.49911
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58172,
45.50479
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60405,
45.4743
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.8165,
45.44554
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54978,
45.45056
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55173,
45.62504
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62944,
45.55083
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.48534,
45.69853
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61606,
45.5328
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67113,
45.46262
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.46803,
45.46603
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53543,
45.54748
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63548,
45.54925
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61884,
45.46901
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.52515,
45.59347
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6429,
45.51581
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59276,
45.65786
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73515,
45.5043
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.7269,
45.58176
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.46517,
45.46831
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.80123,
45.58921
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.46909,
45.46633
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49783,
45.65068
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49429,
45.5226
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59228,
45.63534
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.45473,
45.51612
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47972,
45.45487
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58078,
45.58128
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72833,
45.52786
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57949,
45.57338
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57874,
45.56372
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.588,
45.56524
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68233,
45.55975
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55415,
45.52853
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5528,
45.52376
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56141,
45.53942
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63777,
45.50018
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60423,
45.44664
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59243,
45.58389
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50153,
45.63115
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60155,
45.57384
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.94014,
45.40367
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61485,
45.5617
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70536,
45.54224
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70752,
45.50256
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59792,
45.53164
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53608,
45.55825
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71857,
45.53122
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58477,
45.61908
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6196,
45.47975
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75291,
45.45399
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72784,
45.48799
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.89438,
45.45899
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60414,
45.42356
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62377,
45.52299
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.52436,
45.59352
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.573,
45.51943
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69031,
45.50817
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61514,
45.61693
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59374,
45.55734
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.93937,
45.40391
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61571,
45.62799
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70829,
45.44183
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50322,
45.65757
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64967,
45.47014
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69369,
45.50718
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55514,
45.54868
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.52589,
45.61231
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.8759,
45.46862
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68924,
45.52594
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61595,
45.51932
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58389,
45.48983
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67859,
45.53815
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63669,
45.58419
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49147,
45.69746
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56473,
45.52548
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63104,
45.48158
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60874,
45.53032
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65537,
45.55067
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59421,
45.55737
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83115,
45.4656
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66758,
45.5561
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65843,
45.55146
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54004,
45.58956
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53772,
45.59175
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64541,
45.5486
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61046,
45.54945
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6031,
45.57162
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60531,
45.47736
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55678,
45.5952
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47654,
45.43494
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58737,
45.55379
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53465,
45.5965
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60511,
45.55012
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51582,
45.60892
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57175,
45.57172
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6509,
45.5842
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53368,
45.59859
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62898,
45.42301
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55166,
45.64488
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57834,
45.48103
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61223,
45.48552
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65512,
45.54489
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6979,
45.5023
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62365,
45.57006
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68066,
45.52619
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66317,
45.4738
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60808,
45.61055
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62428,
45.47395
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66642,
45.53572
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58083,
45.49431
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.52129,
45.62103
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64125,
45.49486
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53506,
45.5965
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75548,
45.53834
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60651,
45.61754
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51391,
45.64396
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60468,
45.59487
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54167,
45.6595
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57942,
45.48203
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62898,
45.42301
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6206,
45.49327
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61867,
45.60556
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66021,
45.55634
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6674,
45.55734
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59268,
45.52299
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73972,
45.43951
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58083,
45.48223
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68441,
45.51426
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.77597,
45.44897
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69299,
45.50658
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59927,
45.55931
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63673,
45.47678
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54134,
45.58258
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.52113,
45.6019
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.82864,
45.42862
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60555,
45.52367
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72327,
45.48226
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74311,
45.44354
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70635,
45.49533
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57835,
45.51165
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58492,
45.46356
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62047,
45.62835
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60937,
45.43585
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58418,
45.48957
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62309,
45.42801
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58014,
45.48346
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56567,
45.47031
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66019,
45.61145
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69184,
45.52287
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59477,
45.56283
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56358,
45.58315
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.88571,
45.46429
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64064,
45.45472
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60142,
45.53795
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5687,
45.60028
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5927,
45.44522
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5816,
45.48258
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62146,
45.45485
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57852,
45.4823
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.46833,
45.45657
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69016,
45.43762
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61488,
45.44444
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56514,
45.50542
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55226,
45.46609
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5853,
45.48234
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59925,
45.4273
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62446,
45.47887
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58842,
45.45741
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59938,
45.55109
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.628,
45.49893
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67261,
45.43493
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60346,
45.47382
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56535,
45.5802
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55883,
45.4791
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67227,
45.52332
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50549,
45.6746
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61878,
45.44619
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58051,
45.47984
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.52546,
45.50602
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6653,
45.53739
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62444,
45.53016
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69292,
45.50655
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54571,
45.4889
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59609,
45.47873
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47215,
45.48853
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60521,
45.52405
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56926,
45.59869
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68953,
45.51461
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66666,
45.52182
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60728,
45.44697
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.44849,
45.51557
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56072,
45.51514
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58838,
45.52103
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47131,
45.55847
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70663,
45.44806
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51294,
45.53626
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.8298,
45.46827
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.46844,
45.50216
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53465,
45.5965
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.52022,
45.52099
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61019,
45.49589
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55885,
43.73423
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35495,
43.68913
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.81019,
43.40824
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7606,
43.3794
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3424,
43.66676
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.05669,
43.85418
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82968,
43.38848
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.8723,
43.9179
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.816,
43.88202
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.83774,
43.35257
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26627,
43.80747
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8124,
43.33618
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.80808,
43.37083
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.78375,
43.38487
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.79069,
43.36848
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.9016,
43.22684
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35236,
43.66555
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86758,
43.25621
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86314,
43.21807
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51141,
43.85538
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73035,
43.21911
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.8728,
43.93438
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76416,
43.22817
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.87479,
43.87513
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82121,
43.24297
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.87746,
43.88912
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.90487,
43.23461
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5274,
43.7982
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.92735,
43.86842
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.0413,
43.84762
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.9466,
43.89015
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.0743,
43.84827
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8558,
43.21228
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.02492,
43.8592
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4744,
43.80558
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.03053,
43.89812
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51804,
43.95245
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45955,
43.85185
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47403,
43.8059
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.87083,
43.25289
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38575,
43.86752
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.85308,
43.86112
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75529,
43.2426
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.87547,
43.87587
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.497,
43.78093
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76073,
43.23697
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.8532,
43.89997
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.83688,
43.91057
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86373,
43.21857
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.86372,
43.89857
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.79636,
43.19033
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45125,
43.80292
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41495,
43.78259
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.84925,
43.9388
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6063,
43.76343
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.85747,
43.9567
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70728,
43.22748
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62555,
43.81795
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51205,
43.77863
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53415,
43.83743
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.97211,
43.89278
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.80296,
43.87745
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.89108,
43.25442
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60022,
43.75407
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.82777,
43.87925
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.8737,
43.92113
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5513,
43.78878
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.8842,
43.86243
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45023,
43.81065
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5764,
43.76435
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.0256,
43.86138
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42785,
43.87338
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65308,
43.77347
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.02174,
43.85167
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.78533,
43.25253
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41693,
43.78537
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.89995,
43.94708
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43645,
43.7944
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.86874,
43.93533
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.85678,
43.95628
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4652,
44.22872
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.67397,
43.21623
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.87047,
43.24791
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35764,
44.30317
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.01624,
43.8634
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.88039,
43.2647
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.87237,
43.89288
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.94382,
43.85065
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31889,
43.75792
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48075,
44.05462
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33212,
43.66283
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35808,
43.65576
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47708,
44.04028
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55252,
43.74992
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43252,
44.06768
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42827,
44.0517
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2571,
43.78697
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4633,
43.8545
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35583,
43.8405
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41914,
43.79377
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86746,
43.2538
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.90655,
43.25845
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.21983,
43.89635
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39888,
43.81897
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86206,
43.22277
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32014,
43.83977
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33115,
43.79292
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22485,
43.86068
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36507,
43.86738
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.90207,
43.18468
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4405,
43.88462
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41735,
43.7875
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.77471,
43.25238
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42343,
43.84258
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23407,
43.8762
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34293,
43.77618
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37852,
43.9103
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43825,
43.87623
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2317,
43.88052
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43245,
43.85081
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42902,
43.83932
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43162,
43.64995
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25915,
43.87397
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45071,
43.73421
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38353,
43.84415
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4375,
43.87252
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42312,
43.81047
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35832,
43.67572
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42585,
43.84022
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47813,
44.05532
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55215,
43.7885
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4853,
44.05385
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23424,
43.72354
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.20899,
43.77134
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44291,
43.67777
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58855,
43.74241
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29241,
43.74587
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33439,
43.89503
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43524,
43.67795
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41454,
43.78029
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4201,
43.77872
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35342,
43.78788
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27064,
43.73171
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32649,
43.71282
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45248,
43.73346
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40648,
43.74548
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18872,
43.77502
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50032,
43.78019
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41137,
43.66667
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34509,
43.68006
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3309,
43.66309
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39967,
43.7053
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48312,
43.65006
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56778,
43.74627
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2034,
43.81042
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38466,
43.69357
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33982,
43.76353
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44278,
43.67719
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22552,
43.76019
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33504,
43.77097
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60917,
43.73221
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4165,
43.63602
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33115,
43.79331
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42732,
43.66586
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.78225,
43.35703
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42091,
43.80175
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49594,
43.67649
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42379,
43.77793
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52326,
43.78308
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7655,
43.22865
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46263,
43.94293
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.83598,
43.38121
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.702,
43.91117
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44145,
43.88928
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42625,
44.06705
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60084,
43.73472
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.87115,
43.88813
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42087,
43.80167
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44931,
43.67666
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.89569,
43.23033
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.81416,
43.25092
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86036,
43.27637
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45893,
43.84757
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86928,
43.2473
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.21256,
43.77115
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44527,
44.1182
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.93455,
43.86787
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.84413,
43.19
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.89327,
43.24441
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8534,
43.19342
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.84662,
43.22015
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54668,
43.75108
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41039,
43.81348
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27603,
43.75285
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35358,
43.66526
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40627,
43.7455
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27642,
43.71322
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31297,
43.69698
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.06855,
43.85142
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.94895,
43.96795
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37231,
43.87589
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22935,
43.78609
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.85448,
43.30248
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44887,
43.92055
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43674,
43.66307
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48598,
44.05264
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4085,
43.68512
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44862,
43.8684
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23165,
43.8803
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52377,
43.64457
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.77278,
43.37276
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.94501,
43.22826
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51521,
43.86777
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.93183,
43.88227
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44773,
44.02345
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.93005,
43.23407
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68262,
43.21053
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73346,
43.21818
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44576,
43.78557
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4544,
43.94378
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51073,
43.77792
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50236,
43.76042
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.87683,
43.8754
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47953,
43.93177
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39368,
43.79234
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45355,
43.89174
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.79715,
43.19388
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.97454,
43.26876
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49662,
43.80105
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48553,
43.74168
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.11808,
43.81725
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29945,
43.68876
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30289,
43.79022
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7964,
43.19503
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82053,
43.2356
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.79517,
43.34937
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53632,
43.8495
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49086,
43.76492
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.85603,
43.88092
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39605,
43.69848
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54925,
43.61054
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42572,
44.00912
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44741,
43.63855
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.0902,
43.83537
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53888,
43.71767
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.77581,
43.17485
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43632,
43.86662
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.9999,
43.86717
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.83411,
43.92893
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.04144,
43.84712
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42551,
43.84017
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59221,
43.73231
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26057,
43.87382
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39737,
43.70158
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.87624,
43.92636
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45481,
43.64141
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.94475,
43.88625
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41621,
43.783
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.87701,
43.88783
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.04147,
43.84742
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28854,
43.69413
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.81493,
43.31537
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32841,
43.8495
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.20576,
43.78233
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56043,
43.84477
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.92295,
43.88417
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58165,
43.84055
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.87687,
43.888
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54095,
43.84757
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23148,
43.88073
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.91127,
43.98227
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3612,
43.648
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5036,
43.70241
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8603,
43.2538
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54793,
45.66759
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31294,
43.70544
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.9289,
43.20844
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86242,
43.26328
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.84865,
43.94208
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.84859,
43.94187
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.81252,
43.2326
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4596,
43.96662
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30407,
43.86617
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29375,
43.80202
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29606,
43.77688
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27119,
43.87042
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.87738,
43.88894
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4371,
43.90513
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51601,
43.70028
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41005,
44.3135
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30491,
43.79679
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.02084,
43.18886
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.83843,
43.24562
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.87945,
43.93288
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36765,
43.77115
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86449,
43.24359
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72556,
43.37259
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27151,
43.76777
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50542,
45.54433
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.0892,
43.83362
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29715,
43.69711
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23748,
43.82043
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48546,
43.74496
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.87321,
43.2591
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50964,
43.84241
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.85097,
43.94763
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.08636,
43.83867
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41724,
43.88272
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36413,
43.71361
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.90005,
43.9562
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.80949,
43.33974
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34013,
43.85385
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38234,
43.70992
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.9329,
43.94003
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3488,
43.7792
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3775,
43.71107
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2313,
43.77667
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54187,
43.61747
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30067,
43.68842
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50943,
43.72073
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.91061,
43.9063
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47532,
44.03312
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24702,
43.84717
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62482,
43.75278
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22008,
43.79769
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64056,
45.45435
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46912,
43.80677
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23513,
43.72001
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51285,
43.85663
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.562,
45.50127
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.09464,
43.84538
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.87049,
43.25573
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42288,
43.75877
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50114,
45.49583
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.48381,
45.53917
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.48155,
45.49187
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.78149,
43.33163
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51978,
45.52338
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41624,
43.78278
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7955,
43.32494
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63724,
45.48756
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.21924,
43.74316
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34596,
43.77571
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.98905,
45.7645
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37447,
43.6535
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56866,
45.51894
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.8863,
43.89875
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.4398,
45.45803
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.80198,
43.36978
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.19933,
43.80053
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63191,
45.49371
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40292,
43.66507
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.71091,
43.93687
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.85703,
43.95623
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36923,
43.88548
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45129,
43.81743
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58289,
43.82102
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.338,
43.87418
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62158,
43.72518
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.57408,
43.78383
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47829,
44.04617
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55065,
45.47086
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64801,
45.4255
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58572,
45.48828
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57645,
45.4546
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56104,
45.44841
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57578,
45.46315
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60425,
45.4462
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82354,
43.71488
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69771,
43.6427
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76398,
43.73063
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66178,
43.7709
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72075,
43.76443
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72003,
43.74426
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75191,
43.69767
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69894,
43.69691
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69402,
43.65475
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76676,
43.7243
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.77014,
43.71221
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70513,
43.64679
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75868,
43.75522
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82812,
43.67941
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71746,
43.6804
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69519,
43.70981
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6692,
43.72342
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82404,
43.67804
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68954,
43.77421
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.80335,
43.71793
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60402,
43.72884
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71728,
43.75928
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.80299,
43.71798
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6049,
43.72997
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69661,
43.63924
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71613,
43.75884
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71771,
43.71793
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71822,
43.65489
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.78931,
43.66481
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52788,
43.79634
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70033,
43.76073
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64174,
43.72118
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7754,
43.62766
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.95222,
45.40306
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.96036,
45.38737
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.90135,
45.38478
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.92696,
45.38391
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.91244,
45.38893
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.86715,
45.44352
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71797,
43.71799
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.77248,
43.70331
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.89148,
45.39604
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7587,
43.68488
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65672,
43.66216
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.88291,
45.40963
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.95688,
45.40304
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60133,
43.73049
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72232,
43.72025
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64584,
43.59532
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69396,
43.63682
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65575,
43.76627
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73335,
43.75469
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.81442,
43.68108
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69724,
43.74251
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70377,
43.69684
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74183,
43.65574
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64984,
43.76754
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71499,
43.72265
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.77717,
43.67037
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.79058,
43.76404
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71725,
43.7247
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69483,
43.79527
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64497,
43.76767
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6989,
43.69694
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82484,
43.69836
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.99117,
45.34853
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75894,
43.68711
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68033,
45.44303
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68165,
43.71286
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8093,
43.68702
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.80348,
43.71817
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72039,
43.71914
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74313,
43.6562
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60451,
43.72887
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.79179,
43.76209
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75024,
43.61303
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66854,
43.65556
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75664,
43.7937
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53022,
43.79291
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72701,
43.66144
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6635,
43.78547
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73717,
43.70676
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71201,
43.77229
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75309,
43.75696
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73309,
43.76027
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82436,
43.73346
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.78172,
43.66644
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68237,
43.75468
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76871,
43.69247
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64108,
43.70257
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76202,
43.68674
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70343,
43.69336
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63828,
43.70533
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64114,
43.7215
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.77065,
43.67607
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7712,
43.71166
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74806,
43.67717
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7206,
43.71896
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.80872,
43.72073
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7336,
43.66637
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55336,
43.78821
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73798,
43.66183
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60355,
45.47413
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.77651,
43.6983
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71986,
43.72087
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75919,
43.68727
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53683,
43.84929
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65533,
45.46125
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75311,
43.64583
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.46484,
43.41995
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.53605,
43.47837
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.43325,
43.39622
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.48437,
43.41373
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.3136,
43.35728
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.46298,
43.42183
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.42329,
43.39007
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.40373,
43.39012
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.56071,
43.43525
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.53593,
43.47223
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.5655,
43.44193
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.57308,
43.47482
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.56039,
43.43537
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.52925,
43.49815
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.44172,
43.42167
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.45092,
43.44848
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.49825,
43.44087
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.48032,
43.41637
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.47388,
43.44268
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.32412,
43.39622
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.28492,
43.34375
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.39326,
43.41007
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.31298,
43.35722
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.3976,
43.38537
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.30742,
43.38152
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.40385,
43.39122
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.32607,
43.41917
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.28973,
43.3609
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.52858,
43.49807
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.55658,
43.49435
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.4036,
43.39028
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.49136,
43.49177
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.47867,
43.43792
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.31865,
43.37545
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.56116,
43.43552
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.56008,
43.49462
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.45322,
43.42007
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.44653,
43.42153
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.47477,
43.44225
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.5298,
43.49892
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.4917,
43.45223
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.4877,
43.44932
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.40375,
43.3908
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.46809,
43.44462
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.44413,
43.45105
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.56572,
43.46782
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.54456,
43.49492
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.5389,
43.47562
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.59025,
43.44917
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.52251,
43.44383
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.5502,
43.48023
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.44099,
43.42262
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.50996,
43.41552
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.47849,
43.43423
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.34074,
43.39875
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.32228,
43.39265
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.37759,
43.39648
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.3927,
43.40905
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.44913,
43.41285
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.50442,
43.4989
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.31347,
43.35697
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.37525,
43.39085
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.50636,
43.42753
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.4036,
43.39052
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.50722,
43.50442
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.52586,
43.48097
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.51808,
43.41425
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.3226,
43.3925
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.5283,
43.49273
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.56043,
43.43517
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.35558,
43.41323
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.3627,
43.42725
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.32198,
43.41642
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.39322,
43.40947
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.48973,
43.4225
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.53698,
43.473
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54527,
43.8663
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.50312,
43.45433
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.50148,
43.49627
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.56073,
43.4357
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.49437,
43.45165
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.519,
43.50985
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.5284,
43.49807
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.5483,
43.54517
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59793,
45.45645
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71603,
43.75874
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.48656,
43.45305
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74034,
43.72383
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66734,
43.72225
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.47797,
43.41413
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.595,
43.47012
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.52545,
43.47585
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.54057,
43.47253
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.40862,
43.38965
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.48715,
43.42233
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.51697,
43.41516
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51112,
43.77795
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.31347,
43.35767
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.26207,
43.54625
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22342,
43.52861
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22454,
43.52961
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.24551,
43.52267
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.25088,
43.54795
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.21373,
43.48251
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2356,
43.49889
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.27882,
43.56386
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.24851,
43.54455
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.24565,
43.54554
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.25012,
43.55135
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.24367,
43.54235
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22419,
43.52926
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22636,
43.52799
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22127,
43.53147
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49279,
43.61956
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.88536,
43.8707
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49033,
44.09068
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75957,
43.49535
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68943,
43.7023
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52493,
43.78343
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.93932,
43.51857
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.53937,
43.47452
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41093,
43.76023
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74778,
43.50872
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39774,
43.97498
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60705,
43.76042
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4105,
43.76008
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52483,
43.7832
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.90705,
43.25823
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26385,
43.90045
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8117,
43.3369
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.12009,
43.45503
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5239,
43.78305
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.86715,
43.9054
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.87527,
43.25835
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40988,
43.75778
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5379,
43.63578
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33813,
43.77028
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22491,
43.5286
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.0838,
43.83097
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68182,
43.45597
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42568,
43.83993
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45893,
43.99995
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86985,
43.25315
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25265,
43.17828
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.14177,
43.46628
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.1951,
43.79097
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52192,
43.78225
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30584,
43.68425
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48362,
43.62646
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71384,
44.36784
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64095,
44.36392
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6802,
44.34008
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70571,
44.41492
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70989,
44.41396
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65471,
44.407
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71452,
44.35361
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6282,
44.35175
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65414,
44.41077
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69453,
44.37368
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71166,
44.40175
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.67428,
44.37082
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.67004,
43.63558
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.0832,
43.83231
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68325,
44.36141
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86788,
43.52412
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76936,
43.69283
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.683,
43.56302
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.19078,
43.78787
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.89115,
43.28492
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86906,
43.25282
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.6132,
44.06945
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82738,
43.38907
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64783,
43.59467
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73905,
43.59927
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41393,
43.7737
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86747,
43.52395
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64765,
43.59473
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2241,
43.52926
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22327,
43.52824
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2258,
43.52829
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64753,
43.59457
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39757,
43.837
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22512,
43.5293
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52328,
43.783
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.92343,
43.26037
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75725,
43.58752
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86832,
43.25273
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.88658,
43.87062
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.1912,
43.50515
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.18945,
43.50003
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.70341,
43.91068
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.88644,
43.87063
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72776,
44.39694
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65874,
44.41647
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.25381,
43.53444
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64855,
43.59592
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69427,
44.36902
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.92989,
43.88257
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40615,
43.7454
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4072,
43.745
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.89242,
43.27163
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26,
43.14483
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2288,
43.78718
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72007,
43.5342
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.39115,
43.41042
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.80252,
43.43098
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.41302,
43.41867
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63666,
43.70485
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41448,
43.78237
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74066,
45.44376
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86951,
43.25297
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75488,
43.59743
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.50925,
43.50355
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.26819,
43.54472
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82737,
43.3891
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76315,
43.73138
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70268,
43.43551
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82209,
43.67486
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.19132,
43.5054
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.48589,
43.44743
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59202,
43.56267
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.06055,
43.41595
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.53011,
43.43755
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.85313,
43.31411
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86978,
43.25307
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.52265,
43.46422
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.44209,
43.42245
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.32277,
43.39292
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8694,
43.25282
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.54045,
43.47405
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.25649,
43.5499
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6899,
43.70218
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.1981,
43.4968
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.25294,
43.54538
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71407,
44.35514
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5679,
45.45321
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73461,
43.66468
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.30108,
43.52828
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56023,
43.6389
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72672,
43.52693
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68486,
44.39044
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6415,
43.59875
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.44167,
43.42193
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.25969,
43.52637
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.52885,
43.49809
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.28866,
43.55684
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.4593,
43.42142
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.08453,
43.8307
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.54567,
43.44433
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.28068,
43.56273
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.41228,
43.38693
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22423,
43.5621
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65789,
43.71498
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42403,
43.81393
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61327,
43.70593
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69704,
43.79724
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.39312,
43.41035
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68372,
43.70178
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65728,
43.5813
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.54142,
43.48913
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.80963,
43.33983
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82213,
43.73149
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34202,
43.78625
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69124,
44.38861
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.08338,
43.8303
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.77704,
43.69847
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68922,
43.7023
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22584,
43.52999
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59353,
45.46864
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.24541,
43.54094
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.5432,
43.49725
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6196,
43.77368
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.25888,
43.55954
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.32359,
43.41175
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.00868,
43.48095
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.11048,
43.81821
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.67389,
44.40919
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65543,
43.76585
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56699,
45.4629
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68118,
43.62762
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71042,
44.40899
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72023,
44.32207
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.26137,
43.56118
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69755,
43.46982
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6098,
43.69523
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72423,
43.70591
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75409,
43.64689
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.52171,
43.46522
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.43328,
43.4549
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.08515,
43.83243
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69088,
43.702
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.95223,
43.65125
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.67336,
43.67457
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51245,
43.7787
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.4336,
43.42555
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6927,
43.70226
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.53885,
43.4747
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52832,
43.7971
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60972,
43.70547
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68276,
43.45483
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.44182,
43.42188
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8157,
43.67953
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28596,
43.79002
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.7646,
45.44876
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.3228,
43.39243
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70615,
44.38477
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18235,
43.89423
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69304,
43.70151
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37863,
43.64468
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.14445,
43.79995
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.3217,
43.38858
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59248,
45.4713
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.49585,
43.45295
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44952,
43.72495
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.44234,
43.41373
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86749,
43.5241
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70325,
44.40454
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66862,
44.36532
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59744,
45.48423
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72432,
43.65786
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.51818,
43.41437
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.28092,
43.5493
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65772,
44.36264
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.25607,
43.43075
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.24514,
43.54572
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.88355,
45.41164
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.32563,
43.40018
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.52465,
43.47445
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22402,
43.52857
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68697,
43.45315
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50823,
43.71752
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58224,
45.45691
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.77631,
43.5615
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33148,
43.77115
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.0835,
43.8302
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57259,
45.4791
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.89767,
43.65005
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76412,
43.67998
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.08356,
43.83045
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.93562,
43.86493
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55168,
45.53332
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65071,
43.71009
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65933,
43.73697
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.80569,
43.67271
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.605,
45.46573
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64381,
45.4188
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57923,
45.48314
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.78395,
43.75213
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.08372,
43.83078
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60156,
45.47021
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63772,
45.49427
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6045,
45.44699
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.557,
45.48129
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.29915,
46.76247
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.28825,
46.74625
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.27571,
46.77369
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.23914,
46.75242
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.24921,
46.74286
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.3257,
46.66097
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.31316,
46.65209
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.18089,
46.80901
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.1737,
46.79748
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69202,
43.70168
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.17184,
46.82148
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.26917,
46.72966
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.21413,
46.76257
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.18472,
46.78991
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2663,
46.74089
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.27093,
46.7792
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72629,
43.67839
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8973,
43.28762
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.94019,
45.40809
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38665,
43.86187
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71032,
43.73679
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.54113,
43.42608
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83078,
45.46519
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.87399,
45.43633
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73678,
45.52052
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8168,
43.67704
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.77071,
45.45317
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7169,
43.72477
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.53332,
43.47317
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38557,
43.85668
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25872,
43.77445
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69065,
43.70205
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68165,
43.45607
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49158,
45.55781
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71622,
43.76841
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75747,
43.24482
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.30133,
43.54772
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47759,
45.57885
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.21349,
43.5224
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71867,
43.71848
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26254,
43.88293
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26355,
43.90048
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.44933,
45.57046
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42371,
43.64091
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3183,
43.67941
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.4975,
43.51087
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.43678,
43.39355
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61514,
45.47393
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61235,
45.47269
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72131,
45.46319
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67283,
45.50814
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72791,
45.51857
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68688,
45.5109
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6841,
45.51423
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83392,
45.42823
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69117,
45.43978
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.84174,
45.4801
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83743,
45.46326
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.7611,
45.49133
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72734,
45.51181
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.82069,
45.47183
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.8074,
45.51089
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.8309,
45.46533
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.9244,
45.42632
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71033,
45.49237
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66738,
45.55569
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.78098,
43.62223
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83063,
45.51254
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6086,
43.68361
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66544,
45.47775
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70326,
45.44069
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61314,
45.41914
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62368,
45.42516
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69643,
45.51741
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47205,
45.52531
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57938,
45.5033
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64028,
43.72292
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.80264,
45.50975
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.80895,
45.49554
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.823,
43.67419
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63413,
45.45431
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69221,
45.43809
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73949,
45.49378
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.4856,
45.51355
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64857,
45.43354
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6373,
43.7055
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66682,
45.43839
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.48542,
45.49793
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66167,
45.47606
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70966,
45.52554
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63972,
45.42688
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.85132,
43.87747
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62172,
45.41913
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56761,
45.4529
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61619,
45.44287
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65299,
45.42986
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68983,
45.42415
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.77221,
45.41235
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.78046,
45.43543
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.66399,
45.48439
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76991,
45.41336
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73335,
45.43024
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.74519,
45.44007
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76702,
45.45928
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.42399,
45.58647
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.71958,
45.42503
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.86614,
45.40712
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68262,
45.48151
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.75846,
45.46136
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.72839,
45.44872
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76063,
45.41927
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.84238,
45.39511
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69887,
45.47416
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.70558,
45.41943
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69382,
45.42256
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.85654,
45.40911
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.67702,
45.50206
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.77199,
45.43639
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76694,
45.45904
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68958,
45.43311
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.71159,
45.42735
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.71103,
45.4192
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.58111,
45.5
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.71942,
45.4672
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73302,
45.43695
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73998,
45.46328
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.71335,
45.42488
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.86127,
45.40047
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.77879,
45.44032
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.84438,
45.39536
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73598,
45.45015
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68462,
45.48144
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73055,
45.44055
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.71606,
45.46959
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69671,
45.49672
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.72895,
45.43015
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.80577,
45.42577
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.71326,
45.42744
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68143,
45.48391
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.71175,
45.4376
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.70486,
45.42064
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.7143,
45.42695
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.78207,
45.43648
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76502,
45.4736
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68998,
45.42415
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.42406,
45.57839
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68366,
45.4812
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.77854,
45.43567
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.69238,
45.47456
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.72999,
45.45824
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.63606,
45.50304
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.59766,
45.48936
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.7011,
45.47927
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73575,
45.49047
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.44878,
45.51551
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.58694,
45.49256
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68782,
45.4824
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49467,
45.45269
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.72342,
45.48744
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.61134,
45.49391
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.71671,
45.46856
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.84566,
45.39639
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.71598,
45.46815
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.74118,
45.47351
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68071,
45.48207
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.80022,
45.40239
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.08418,
43.83727
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68887,
45.42463
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73751,
45.42294
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.83537,
43.38292
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49961,
45.51388
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5666,
45.50158
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.60902,
45.49559
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.8655,
45.40744
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.92145,
45.38694
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65862,
43.58767
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.68054,
45.48192
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.86967,
45.42242
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.32242,
43.39253
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.12503,
44.10982
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.34523,
43.43105
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76502,
45.47367
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.30946,
43.44983
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.27285,
43.39542
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.70982,
45.43103
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.32291,
43.393
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.10242,
43.82487
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.89665,
43.94918
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64513,
43.5961
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69662,
44.38278
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.27628,
43.35335
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64965,
43.59487
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71222,
43.65037
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.17005,
43.15898
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76623,
45.41455
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.30872,
43.391
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.37514,
45.50113
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30576,
43.77032
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23895,
43.14493
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51819,
45.53099
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.3056,
43.36595
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.46256,
45.53051
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.24601,
43.54567
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47323,
45.73413
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.506,
45.53999
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0085,
45.3866
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.95221,
45.40369
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70438,
45.69008
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62931,
45.70731
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51347,
45.72245
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65388,
45.60425
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65073,
45.60363
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.02375,
45.78674
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.00191,
45.79724
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.23894,
45.54366
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.94539,
45.6258
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.41756,
45.50889
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.95198,
45.62461
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.681,
45.71955
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.34897,
45.60541
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5004,
45.71854
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.52779,
45.6086
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65388,
45.71405
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.52034,
45.52116
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71561,
45.36906
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.42419,
45.82039
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.01765,
45.79272
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65385,
45.71377
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75136,
45.79111
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62876,
45.69403
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68327,
45.39955
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62957,
45.70682
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.00523,
45.60102
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.93965,
45.41401
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.52187,
45.52427
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.03699,
45.4067
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.02074,
45.37735
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.26777,
45.47256
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.67468,
45.71784
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.19764,
45.56344
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66263,
45.62308
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.48127,
45.7659
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47681,
45.71359
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.30515,
45.63518
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.86026,
45.64381
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65396,
45.71416
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.85785,
43.94552
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.76715,
45.66942
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73262,
45.58218
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.00652,
45.7967
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.92857,
45.31575
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63073,
45.64693
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.90231,
45.56437
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.18159,
45.56756
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.32224,
45.57663
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.70727,
43.9088
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.09834,
45.26544
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66992,
44.41059
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68015,
44.34028
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70046,
44.40105
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.1982,
43.51288
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.33961,
43.34655
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6456,
45.42445
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.37706,
45.49697
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.44112,
45.68716
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.40373,
43.39075
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.33642,
43.38385
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.80972,
43.34003
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82375,
43.69638
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.85454,
43.68941
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.57235,
43.45063
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.43161,
45.43729
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.30265,
45.44684
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.28681,
45.43235
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.28437,
45.44736
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60548,
45.47722
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.86015,
45.36648
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.49133,
45.68213
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.54152,
43.4643
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58958,
45.51595
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.46466,
45.74911
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.51207,
43.45723
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.32273,
43.39303
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.74151,
45.4736
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.73286,
45.4388
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.39494,
45.57062
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.71191,
45.42551
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62238,
45.49129
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62775,
45.48531
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55853,
45.5181
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.52137,
43.43322
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56641,
45.50319
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55525,
45.5167
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64148,
45.45427
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.53989,
43.4744
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73032,
45.36826
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.49975,
43.4062
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63653,
45.47679
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.53802,
43.47063
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.47182,
43.44193
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.00515,
45.35957
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.87531,
45.40373
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.94586,
45.41139
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.95245,
45.40264
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55175,
45.55352
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.89395,
45.3754
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57771,
45.52959
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.07898,
43.84468
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.11266,
43.45772
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2369,
43.9994
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42538,
43.84032
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8564,
43.31278
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.99685,
43.4862
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44853,
43.72547
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64768,
43.59458
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66883,
43.56942
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.06377,
43.10843
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41435,
43.78263
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.9228,
43.25863
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.85603,
43.31303
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.08398,
43.83118
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.91092,
43.25813
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.31907,
44.3017
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70419,
43.44298
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66803,
44.36983
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64505,
45.46525
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.92267,
43.26165
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4073,
43.74718
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64148,
45.45427
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58435,
45.52232
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.40731,
45.83194
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23513,
43.88063
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.48868,
45.71956
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61337,
45.50933
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57352,
45.55038
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56017,
45.55344
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57098,
45.54492
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59727,
45.53136
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70313,
43.649
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5747,
45.52592
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58723,
45.52688
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.46838,
45.71838
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73942,
45.49221
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.85216,
43.307
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58956,
45.52971
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53174,
44.10978
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60967,
45.51447
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72525,
43.37224
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.43539,
45.85493
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.58653,
45.52648
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60314,
45.49704
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82358,
43.67514
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75222,
43.64855
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.5542,
43.5354
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.225,
43.52994
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.26587,
43.52589
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.01517,
43.86352
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.86383,
43.89852
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.16863,
43.80878
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.09672,
43.83076
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.05002,
43.89257
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.89671,
43.94876
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.99377,
43.88737
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.12517,
44.10954
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.79735,
43.7291
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.04092,
43.84758
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76897,
43.76274
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.87917,
43.93333
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.53838,
45.58976
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.11058,
43.82252
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.40624,
45.49848
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.21082,
45.53345
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.37354,
45.47433
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69515,
43.79496
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.885,
45.41321
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.76702,
45.45911
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56912,
45.54191
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63845,
45.5918
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65601,
45.53611
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60933,
45.56375
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62508,
45.60489
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.46663,
45.5232
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22637,
43.52786
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57078,
45.56407
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61897,
45.61492
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.77751,
43.69864
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.41843,
45.47042
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48298,
43.96227
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48338,
43.81598
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5279,
43.79688
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62184,
45.6176
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68066,
44.35212
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59016,
45.5605
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47002,
45.58555
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82906,
43.3247
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69818,
44.35738
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.44102,
43.42262
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.47385,
43.44293
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69125,
44.3754
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.63927,
45.50872
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28868,
43.87122
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.59875,
45.57598
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62417,
45.62216
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.43925,
45.50448
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.83502,
45.39552
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.74694,
45.46255
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.81684,
43.36124
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.79389,
43.40927
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.01642,
43.86408
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.02523,
43.88573
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.92295,
43.90358
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.88995,
43.29321
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.71351,
45.42479
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.81359,
43.68443
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.80288,
43.71803
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.81728,
43.33846
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7798,
43.6679
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39983,
43.63688
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.7342,
45.5389
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.79906,
43.7267
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.21632,
45.88076
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73822,
43.75069
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53381,
43.82715
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71884,
43.71872
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.42516,
45.6294
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.29718,
45.65357
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.71262,
45.43271
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74134,
43.65684
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.7202,
45.53024
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63319,
45.58683
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73805,
43.66179
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54898,
43.79537
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.8657,
45.4038
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.67725,
43.80006
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7244,
43.70832
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63889,
45.5466
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54117,
43.84712
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52303,
43.78257
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.60358,
45.63495
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.55192,
45.52336
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44915,
43.86855
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.88783,
45.67862
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50757,
43.83667
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6198,
45.6068
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52431,
43.79387
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57154,
45.60652
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75172,
45.57678
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65783,
45.53352
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68349,
45.5135
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86182,
43.22398
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4788,
43.82445
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63929,
45.53116
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65862,
45.57356
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66755,
45.52843
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6674,
45.5575
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.82381,
45.68805
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65662,
45.56242
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83006,
45.62624
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4531,
43.8229
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.849,
43.20432
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82952,
43.22582
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.94589,
43.26078
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.82199,
43.25758
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.87807,
43.23758
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.94543,
45.40387
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.87727,
43.24544
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64686,
45.59045
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51182,
43.7787
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66742,
45.55573
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57296,
45.64412
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52825,
43.81125
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64289,
45.56363
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83847,
45.64636
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.87566,
45.41635
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38932,
43.82397
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24453,
43.85807
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.89244,
45.56156
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.81528,
45.63053
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5084,
43.83627
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.45267,
45.74638
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.84534,
45.63948
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.18291,
46.7968
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.1514,
46.82251
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.27845,
46.73182
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.12973,
46.82116
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.16462,
46.82452
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44437,
43.84773
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23053,
43.96813
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.99753,
45.76579
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51255,
43.77908
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42717,
43.89282
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.99729,
45.77729
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49762,
43.82421
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53223,
43.8293
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.80464,
45.70586
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.82471,
45.76035
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.79401,
45.63543
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.04769,
45.7976
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.97749,
45.76255
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.89555,
45.56148
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.89258,
45.56187
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.89332,
45.56175
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.98042,
45.49485
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.82892,
45.64923
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.83249,
45.63519
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44593,
43.65262
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.31985,
42.97591
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.22123,
43.00477
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27537,
43.01528
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.28236,
43.02632
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.25198,
42.97084
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.19606,
42.95008
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.20772,
42.96042
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.15027,
42.98817
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.28219,
43.026
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.22347,
43.00411
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.32017,
42.97507
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.23668,
43.0366
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.28155,
43.00061
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.29039,
42.9542
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.2904,
42.94811
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.22375,
42.9354
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.25356,
42.98152
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.25635,
43.00793
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.23077,
42.96119
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24398,
42.99466
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.3349,
42.96065
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.20404,
42.97912
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24551,
42.96938
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.172,
42.99886
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24387,
42.93341
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27523,
42.99669
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.22613,
42.99042
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.22042,
43.01836
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24732,
42.97871
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24395,
43.01358
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.21335,
42.99049
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.21369,
42.94456
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.22308,
43.00081
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27185,
43.00627
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.19697,
43.0142
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.16236,
43.01644
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.33519,
42.96059
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.22868,
43.00257
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.19922,
43.01325
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24471,
42.97179
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24376,
43.01326
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.26268,
42.98288
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.2183,
42.92738
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.23674,
43.00035
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.25157,
42.98181
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.2486,
42.99676
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24338,
42.98691
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27495,
43.01802
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27304,
43.01021
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.22993,
42.98432
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.25149,
42.992
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.29634,
42.99082
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.28785,
42.98479
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.23179,
42.96163
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.30639,
43.00614
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27675,
43.00597
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27706,
43.00634
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.28111,
42.93819
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.17574,
43.00467
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.29812,
42.9956
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.297,
42.98447
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24949,
42.9853
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.31725,
43.01637
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27919,
43.00118
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.17295,
42.99919
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.2543,
43.03409
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.31082,
43.01824
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.28147,
43.02558
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.31086,
42.98731
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.25375,
42.99541
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.28874,
42.98486
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.29,
42.98448
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.25062,
42.98494
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24945,
42.98309
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.20126,
43.01083
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.3358,
43.00859
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27767,
42.92561
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.28141,
42.98409
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.2212,
43.03142
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24269,
43.01108
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.2598,
42.95931
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.2483,
43.0039
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.41499,
45.67052
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.09225,
46.03368
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.15234,
46.0156
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.30357,
42.94886
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24891,
42.98226
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.25069,
42.99063
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24156,
43.00583
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.23648,
42.98022
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.15219,
46.03685
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.2809,
42.9866
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24149,
42.95752
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5218,
45.52422
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.20269,
43.01028
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.22244,
42.93232
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.1714,
42.99518
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.23133,
42.9581
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.22274,
42.93155
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.29319,
42.98524
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.21559,
43.02023
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.19536,
42.96265
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.2897,
42.97745
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.19845,
42.99846
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24515,
42.93493
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.25856,
43.02046
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.22203,
42.93094
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.22087,
42.98066
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.29309,
42.98369
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.18777,
43.01445
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27359,
43.01237
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.21625,
43.01977
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24107,
42.97203
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.00006,
45.77349
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.23756,
42.94048
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.54048,
43.43307
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75516,
43.22592
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.98038,
43.3658
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.97992,
43.36571
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.97973,
43.36575
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.98014,
43.36581
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.10422,
43.91602
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86324,
43.50813
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.84583,
43.49493
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.98009,
43.36587
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86404,
43.53091
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.09534,
43.91974
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27699,
43.00547
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.97988,
43.36916
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.98228,
43.36964
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.29234,
42.98358
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.00787,
45.79178
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4108,
43.85758
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.23126,
42.98829
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35913,
43.8544
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.87282,
43.54113
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27176,
43.00941
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.44162,
43.4225
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.25373,
42.98416
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3078,
43.85338
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42078,
43.83963
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.49815,
43.45298
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.22167,
42.93109
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40054,
43.81585
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.22347,
42.9339
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.47472,
43.40655
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8063,
43.19403
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.87227,
43.24919
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.86141,
45.66143
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.25338,
42.99559
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.26184,
42.98273
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.25246,
46.81454
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.30494,
46.88918
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.24022,
46.79686
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2431,
46.82814
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22566,
46.81318
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2435,
46.79486
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.3243,
46.75814
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.34934,
46.83142
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.1831,
46.86646
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22438,
46.80566
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.30014,
46.78062
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.3611,
46.85062
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.28054,
46.77126
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2303,
46.8191
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.21734,
46.8471
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22334,
46.81398
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.32982,
46.75254
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2199,
46.8411
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.21638,
46.80958
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2191,
46.81062
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2159,
46.81222
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.29174,
46.76542
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.26326,
46.78334
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.21278,
46.84838
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.23814,
46.83038
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.24654,
46.7983
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.27054,
46.77694
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22702,
46.81414
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.20102,
46.8539
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.28526,
46.78358
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.30686,
46.7695
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2607,
46.85606
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22742,
46.82382
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.14918,
46.8915
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22222,
46.83822
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.24078,
46.79718
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.3495,
46.90878
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.39445,
46.83998
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.27029,
46.77646
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.35718,
46.79678
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.21478,
46.81238
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2515,
46.84022
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.30638,
46.8887
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.25934,
46.7855
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22527,
46.8135
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.3815,
46.74838
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.32358,
46.81278
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.28022,
46.84318
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.16438,
46.89054
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.28294,
46.84038
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.21022,
46.8511
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2435,
46.7911
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.21766,
46.8475
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22094,
46.8039
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.24606,
46.82494
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.30718,
46.79958
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22958,
46.81638
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.21878,
46.85734
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.29862,
46.83462
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.33749,
46.75782
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.21534,
46.8471
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.21318,
46.81822
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.30294,
46.81686
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.28262,
46.7627
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.21214,
46.81686
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.34894,
46.75814
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.37717,
46.74294
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.21654,
46.8471
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.29726,
46.8331
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.24678,
46.80942
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.28142,
46.78558
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.32374,
46.75862
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.28918,
46.76966
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.23942,
46.80718
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.28294,
46.8307
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.32686,
46.7759
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.21461,
46.81286
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2891,
46.76734
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.3223,
46.75966
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2187,
46.8479
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.26517,
46.85998
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.19862,
46.85214
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.3027,
46.83918
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2223,
46.81438
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.31894,
46.76166
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.38254,
46.79198
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.25206,
46.81566
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22262,
46.80654
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22278,
46.80646
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22358,
46.8359
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.29806,
46.8339
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.26814,
46.86166
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.27614,
46.79502
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22366,
46.81318
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.25318,
46.81382
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22094,
46.87078
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.23158,
46.84974
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.26838,
46.86238
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.35766,
46.77702
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.23679,
46.82934
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.21782,
46.81582
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22918,
46.83414
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.37574,
46.84878
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.23679,
46.83678
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.3491,
46.82886
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.30438,
46.77878
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.28262,
46.8083
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.3571,
46.7783
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.35238,
46.82318
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.24822,
46.83526
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.37006,
46.79902
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.27022,
46.7795
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.46726,
46.87886
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.24606,
46.8099
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2715,
46.7763
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2771,
46.77326
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.80316,
43.20874
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.22444,
42.96791
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.42878,
46.83998
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.24166,
46.82878
]
}
},
{
"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.27566,
46.88406
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.30714,
46.72932
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.29894,
46.77422
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.30658,
46.73583
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.4967,
43.40262
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.30257,
46.72503
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.39806,
46.92878
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.15502,
46.8891
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.24709,
42.97869
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.33006,
46.75238
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.32102,
46.83358
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.4217,
43.45238
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.25582,
46.84342
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.29782,
46.7735
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27664,
43.02847
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.28494,
46.76926
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.27494,
46.86846
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.3211,
46.81134
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.79546,
43.32489
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.22358,
46.80598
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.32848,
43.35165
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.3919,
46.86158
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.33366,
46.76566
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.3235,
46.75894
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61028,
43.69646
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.46741,
46.87878
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.35646,
46.81534
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.44172,
43.42208
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.33358,
46.75198
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.88788,
43.5019
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.5191,
43.46035
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.4449,
43.43355
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2203,
46.82502
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.23904,
42.99977
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.92685,
43.16301
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.3003,
46.89286
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2169,
43.55702
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.30654,
46.7699
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.26758,
46.86206
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.3243,
46.81254
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.44186,
43.42245
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.24086,
46.79734
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.46145,
43.40993
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.4416,
43.42171
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.47172,
43.3891
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.881,
43.23843
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.79063,
43.2395
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.79773,
43.22994
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75335,
45.31717
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.94323,
45.47519
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.18344,
42.77893
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76606,
43.22894
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.16025,
42.75347
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.17355,
42.77866
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.4963,
43.44288
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.50312,
43.46404
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.51705,
43.41528
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.78579,
43.59833
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.5607,
43.43552
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.84473,
43.51175
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.87267,
43.50921
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.19562,
42.75947
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.88649,
43.52493
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75095,
45.3596
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86959,
43.25581
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.25605,
43.00117
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44572,
43.7854
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61396,
43.57866
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74248,
43.5402
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54027,
43.6357
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61031,
43.60068
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62675,
43.60085
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64614,
43.59345
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59599,
43.62861
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58429,
43.55314
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7582,
43.55645
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54951,
43.63056
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65026,
43.59114
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73798,
43.56418
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74341,
43.65627
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64658,
43.59436
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58708,
43.55576
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52378,
43.6446
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63333,
43.51296
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73455,
43.5536
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76062,
43.59499
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76488,
43.60404
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65991,
43.54223
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72593,
43.54479
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61349,
43.68986
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53842,
43.63514
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60561,
43.7292
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64583,
43.59366
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70702,
43.60189
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64818,
43.65568
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56021,
43.63886
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54409,
43.59179
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64095,
43.72147
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64814,
43.62992
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63205,
43.71373
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63522,
43.62879
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64484,
43.59655
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62999,
43.62753
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63814,
43.72863
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64651,
43.71478
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60495,
43.72922
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7012,
43.56406
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68043,
43.67362
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55885,
43.57704
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60815,
43.65413
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56782,
43.59564
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6402,
43.72167
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59527,
43.61706
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73288,
43.66579
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6112,
43.64461
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64418,
43.57748
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65073,
43.72211
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.592,
43.66255
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59185,
43.6627
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.67501,
43.60042
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68389,
43.54328
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62482,
43.5821
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.78566,
43.59588
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72012,
43.56853
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69471,
43.55323
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68011,
43.62655
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65357,
43.58443
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62228,
43.58735
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5848,
43.55624
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63519,
43.5675
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74471,
43.56105
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64636,
43.49702
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64865,
43.59297
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74801,
43.57485
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70177,
43.62733
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64211,
43.50884
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59734,
43.5664
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60644,
43.64923
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62487,
43.58979
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75875,
43.58332
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64832,
43.5115
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59287,
43.56333
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59538,
43.59662
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25135,
43.71917
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26283,
43.73196
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46595,
43.71162
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46813,
43.71114
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29545,
43.67105
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41129,
43.74245
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39366,
43.64212
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31078,
43.7279
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52401,
43.64476
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6402,
43.7019
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42843,
43.64201
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39099,
43.6644
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28229,
43.68116
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.20478,
43.78218
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56527,
43.645
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35327,
43.6678
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71681,
43.63679
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74991,
43.6436
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64633,
43.59392
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60209,
43.57001
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61987,
43.57735
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60267,
43.55068
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7059,
43.53738
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69635,
43.56876
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64581,
43.63668
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64567,
43.59366
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40253,
43.6643
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65455,
43.62552
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74223,
43.59924
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69,
43.60808
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6594,
43.54242
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66716,
43.56581
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5942,
43.61709
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61308,
43.6303
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26876,
43.7344
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61079,
43.57164
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28403,
43.74768
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34105,
43.75709
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43236,
43.68026
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47529,
43.7859
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50134,
43.69139
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26274,
43.73165
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25659,
43.77482
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3311,
43.73968
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40444,
43.64832
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6406,
43.72167
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7736,
43.58629
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64683,
43.59444
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23556,
43.7394
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63248,
43.60774
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68232,
45.5615
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36436,
43.71375
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26611,
43.73285
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29734,
43.68462
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50213,
43.66254
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35054,
43.73568
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2635,
43.73189
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26278,
43.7454
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34531,
43.66698
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42596,
43.63519
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25349,
43.77522
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41107,
43.66615
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61566,
43.73471
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56878,
43.68668
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42241,
43.64342
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29691,
43.67103
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56341,
43.65507
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23839,
43.79307
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66725,
43.5375
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72417,
43.58676
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26425,
43.74949
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43107,
43.72469
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45338,
43.70763
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.518,
43.66208
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.66186,
45.58758
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61604,
43.5804
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.7493,
45.58288
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69019,
45.56876
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27518,
43.74969
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35724,
43.79209
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25821,
43.7344
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31756,
43.69642
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18683,
43.77048
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35267,
43.70213
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27888,
43.75946
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.13507,
43.78896
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25248,
43.77517
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44812,
43.67098
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3559,
43.65714
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68147,
45.57752
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26337,
43.73247
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58953,
43.74021
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34945,
43.69729
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39184,
43.63842
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38988,
43.70846
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34516,
43.7866
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55354,
43.62962
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5659,
43.64208
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44046,
43.76352
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32999,
43.79012
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34145,
43.81672
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75206,
45.58554
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.1229,
43.78858
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36726,
43.65491
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27979,
43.711
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22774,
43.79675
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5261,
43.6812
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64642,
43.59455
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26357,
43.73221
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.266,
43.73306
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26054,
43.7894
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61418,
43.7509
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.77712,
45.55961
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45019,
43.74972
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50431,
43.73725
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23349,
43.78186
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41708,
43.67675
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43581,
43.68018
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48397,
43.64997
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46182,
43.65895
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39266,
43.68776
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.17769,
43.81884
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42618,
43.66244
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45742,
43.67476
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49063,
43.76471
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24133,
43.77268
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28053,
43.76435
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32964,
43.71216
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33556,
43.68868
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22923,
43.78589
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54519,
43.63183
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54233,
43.63382
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37488,
43.67763
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34158,
43.73025
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32537,
43.66241
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.19034,
43.76692
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26354,
43.73187
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28261,
43.79511
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25855,
43.69922
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45431,
43.7715
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62158,
43.72478
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54493,
43.75157
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27036,
43.76824
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32423,
43.81937
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51476,
43.68655
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56859,
43.74541
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44882,
43.72593
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36421,
43.65481
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4013,
43.70611
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26839,
43.73342
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34117,
43.73801
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62228,
43.72617
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52401,
43.61518
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25964,
43.77412
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26368,
43.7221
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27283,
43.69986
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31317,
43.70496
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55123,
43.75026
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28257,
43.69252
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25849,
43.77437
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50202,
43.7605
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51937,
43.75704
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40524,
43.74476
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51927,
43.63431
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37704,
43.6729
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.19465,
43.79011
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55756,
43.74868
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2925,
43.79322
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54133,
43.75223
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23416,
43.73977
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25059,
43.77711
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52534,
43.75568
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2574,
43.77454
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4472,
43.79227
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60807,
43.75651
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48399,
43.75446
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45943,
43.73188
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42587,
43.6344
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44272,
43.69692
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27161,
43.7677
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40789,
43.68541
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22594,
43.81235
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51086,
43.72036
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.491,
43.76553
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35031,
43.69604
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.16434,
43.78389
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72256,
45.57091
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45492,
43.71424
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40659,
43.74526
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2415,
43.80041
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42316,
43.6823
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35452,
43.79194
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24866,
43.73656
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62106,
43.72459
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53384,
43.69563
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34033,
43.69543
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.20733,
43.74825
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26357,
43.73153
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.171,
43.8088
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22795,
43.76659
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53375,
43.70786
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.78873,
45.61245
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31247,
43.68644
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45128,
43.73507
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27502,
43.69786
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39196,
43.68786
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56506,
43.73729
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47451,
43.74825
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46222,
43.74998
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35806,
43.80949
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58833,
43.68761
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36468,
43.65547
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2624,
43.77299
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.20302,
43.80903
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44831,
43.67179
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4199,
43.68694
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22347,
43.76013
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46009,
43.74915
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36831,
43.79185
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.304,
43.82226
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40818,
43.7436
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25543,
43.75359
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38816,
43.67724
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37732,
43.6665
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18998,
43.7875
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26237,
43.74455
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39294,
43.70776
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27005,
43.76831
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46129,
43.74842
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35553,
43.79266
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.20093,
43.81974
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26962,
43.90935
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28854,
43.69413
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33051,
43.68972
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38156,
43.7344
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45143,
43.69987
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2335,
43.75809
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27862,
43.75968
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27096,
43.79294
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43241,
43.68039
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26765,
43.83262
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41607,
43.64394
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26516,
43.80478
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60801,
43.72126
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49149,
43.72467
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28014,
43.71103
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41533,
43.66039
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24758,
43.83517
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41105,
43.64025
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35016,
43.69875
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50018,
43.7609
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33995,
43.66114
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54423,
43.75914
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36954,
43.66814
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30599,
43.6645
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36727,
43.64461
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2558,
43.77492
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35803,
43.67699
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49836,
43.60238
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34493,
43.7762
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2579,
43.77451
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45628,
43.64488
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47177,
43.67195
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30474,
43.81856
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41258,
43.72299
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3985,
43.70492
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41492,
43.78135
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45365,
43.7331
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42539,
43.79674
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3009,
43.76107
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25773,
43.78985
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31311,
43.68667
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28598,
43.72337
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.17943,
43.76998
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29577,
43.70862
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40546,
43.74446
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26287,
43.73178
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18708,
43.76813
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43869,
43.73635
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47623,
43.65114
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.17358,
43.78996
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39145,
43.68758
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48959,
43.76629
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29128,
43.72687
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54635,
43.69672
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.20395,
43.78122
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26103,
43.8786
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27967,
43.78523
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35418,
43.66581
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54034,
43.63581
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53592,
43.63742
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27201,
43.77032
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53867,
43.73915
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50504,
43.64886
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26409,
43.73224
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44505,
43.78123
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3994,
43.70652
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28038,
43.82994
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.14999,
43.79773
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28161,
43.7847
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43385,
43.73691
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31151,
43.77782
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39709,
43.64508
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60083,
43.73059
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73195,
43.57735
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71886,
45.59886
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40421,
43.6479
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28002,
43.71082
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41646,
43.78312
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41941,
43.70224
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50848,
43.72034
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34709,
43.73628
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38315,
43.80607
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36561,
43.65191
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3639,
43.66269
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51104,
43.6483
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23168,
43.77647
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4421,
43.65632
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43809,
43.64258
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59158,
43.70882
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50111,
43.69169
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52169,
43.7751
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33219,
43.6813
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31991,
43.6746
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29022,
43.69597
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33474,
43.66715
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37741,
43.64203
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41846,
43.68327
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45403,
43.71085
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44303,
43.67785
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4462,
43.68557
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34048,
43.77615
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25658,
43.77481
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27466,
43.74881
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28919,
43.78296
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18757,
43.78631
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42643,
43.70546
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38051,
43.71044
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46964,
43.67204
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34693,
43.7033
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39359,
43.68828
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29431,
43.74557
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39145,
43.78177
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47167,
43.67229
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31321,
43.72614
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45296,
43.73364
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45043,
43.69583
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45067,
43.73454
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36621,
43.75226
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24528,
43.75571
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27071,
43.81496
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32474,
43.81943
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30698,
43.8098
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29986,
43.75808
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41746,
43.78743
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56714,
43.674
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34527,
43.77588
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6112,
43.68176
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47464,
43.69022
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49546,
43.76207
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41198,
43.762
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48844,
43.7062
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41982,
43.65502
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31063,
43.78474
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44695,
43.64066
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37704,
43.6493
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33581,
43.66207
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40024,
43.78312
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32066,
43.8065
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26322,
43.73318
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33179,
43.72253
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27516,
43.83253
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28554,
43.8719
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40593,
43.74517
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42191,
43.7397
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38445,
43.65136
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45583,
43.66475
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49542,
43.69196
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50255,
43.6644
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37849,
43.64057
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33167,
43.7929
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27553,
43.80608
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53456,
43.75144
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49082,
43.76475
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53803,
43.73282
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45377,
43.65669
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51651,
43.76025
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29932,
43.80059
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54495,
43.60126
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58291,
43.64061
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38409,
43.65139
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56997,
43.66118
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49412,
43.61277
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.57514,
43.65504
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53506,
43.63808
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.21719,
43.77966
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.21214,
43.7438
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56435,
43.67685
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27097,
43.7681
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53465,
43.63851
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55343,
43.62942
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39806,
43.66866
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5767,
43.73898
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58742,
43.72751
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45244,
43.66548
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18566,
43.78439
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34963,
43.75531
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45177,
43.73361
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41458,
43.78065
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4222,
43.67352
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53562,
43.71248
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40066,
43.70618
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43081,
43.7243
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53388,
43.73475
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45101,
43.73446
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53358,
43.69546
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59645,
43.74651
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40194,
43.67551
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26608,
43.70173
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32552,
43.78039
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30035,
43.71924
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47733,
43.70906
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45063,
43.73429
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40648,
43.74522
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56203,
43.64354
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23216,
43.77622
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51942,
43.76419
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4305,
43.7192
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25904,
43.73644
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41951,
43.79812
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32461,
43.81673
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34699,
43.76163
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53567,
43.7273
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22964,
43.82257
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27964,
43.76612
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.21768,
43.73819
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53161,
43.77347
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3751,
43.66681
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51223,
43.73583
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25845,
43.77444
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39261,
43.78477
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18967,
43.74961
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3758,
43.79885
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48024,
43.62471
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51977,
43.60501
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39771,
43.65306
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37792,
43.71079
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45135,
43.65369
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54421,
43.69125
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38373,
43.72785
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28004,
43.71102
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35772,
43.68126
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53494,
43.6382
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26538,
43.73259
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35555,
43.68802
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39687,
43.69763
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37293,
43.71199
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28183,
43.74811
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24665,
43.75544
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3587,
43.80924
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34581,
43.77566
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33641,
43.72291
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36103,
43.66052
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28132,
43.67369
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33703,
43.71639
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32377,
43.81993
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28732,
43.72724
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26494,
43.80404
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4531,
43.65697
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2497,
43.83708
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30023,
43.68429
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32258,
43.79509
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54253,
43.75317
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53006,
43.6291
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27589,
43.78609
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24453,
43.7737
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43025,
43.67303
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44236,
43.75474
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40794,
43.68519
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51318,
43.73939
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39572,
43.64703
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41665,
43.78423
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54713,
43.6162
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51568,
43.59519
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36306,
43.65288
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40219,
43.64392
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26343,
43.73201
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32312,
43.68414
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46243,
43.74798
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37274,
43.66261
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47905,
43.63105
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56071,
43.60967
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53974,
43.63666
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51105,
43.69829
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45281,
43.73377
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32594,
43.77078
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44493,
43.63903
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52983,
43.59537
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60962,
43.68427
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22232,
43.75082
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39857,
43.70509
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59573,
43.71714
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61504,
45.69186
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41417,
43.63705
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37738,
43.64174
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2729,
43.77298
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34955,
43.70478
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48839,
43.61553
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52153,
43.78209
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49322,
43.77132
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38393,
43.74785
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29913,
43.82539
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43466,
43.64092
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28153,
43.76966
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40235,
43.64309
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30353,
43.90101
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41067,
43.66369
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42681,
43.77739
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39987,
43.64795
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54731,
43.61101
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31673,
43.66633
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44978,
43.6484
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38565,
43.80572
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40858,
43.64274
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58813,
43.7324
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39987,
43.64795
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24402,
43.8148
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23383,
43.78118
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.17864,
43.80666
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25936,
43.73729
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43171,
43.68884
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42629,
43.63717
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.57498,
43.76415
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60186,
43.75624
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30947,
43.74152
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.19715,
43.80272
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24054,
43.79865
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48981,
43.66215
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36951,
43.64477
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29783,
43.67878
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45846,
43.73029
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18334,
43.76894
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3158,
43.8189
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42242,
43.65446
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40366,
43.64375
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3938,
43.64618
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44685,
43.73477
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54662,
43.69705
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44544,
43.63893
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40854,
43.65854
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41517,
43.78166
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30763,
43.82371
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41463,
43.78085
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37726,
43.64923
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39583,
43.6476
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43786,
43.64032
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48641,
43.66563
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58852,
43.66549
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22925,
43.72785
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23183,
43.7258
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.21751,
43.73834
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25106,
43.71894
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45833,
43.75366
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46199,
43.74925
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41637,
43.63856
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41324,
43.67021
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43594,
43.74477
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48272,
43.75268
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49332,
43.70513
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64066,
43.70218
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30318,
43.72553
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33501,
43.72404
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3238,
43.68369
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60428,
43.72856
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24838,
43.77297
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49854,
43.68371
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48503,
43.65066
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26254,
43.69382
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31308,
43.68639
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27944,
43.71134
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30284,
43.72471
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33517,
43.70973
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38354,
43.65552
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33219,
43.79459
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28509,
43.82305
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30206,
43.68874
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36901,
43.67354
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26524,
43.73311
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36891,
43.65266
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36653,
43.65029
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36974,
43.64849
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31731,
43.66812
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32197,
43.77298
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43503,
43.65899
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45157,
43.70066
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52013,
43.76771
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33772,
43.68084
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41861,
43.68296
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3599,
43.71446
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.335,
43.71137
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35457,
43.7983
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32409,
43.74096
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26317,
43.73134
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25639,
43.77485
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.19668,
43.79566
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.21398,
43.81207
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39916,
43.70491
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37239,
43.69863
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33444,
43.70998
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34725,
43.75624
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29562,
43.74514
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34389,
43.73693
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44358,
43.67772
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.14976,
43.77669
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34657,
43.77552
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30817,
43.77887
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26335,
43.7323
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36021,
43.7996
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25698,
43.77474
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41249,
43.76189
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39857,
43.70509
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3332,
43.66256
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32874,
43.67067
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37128,
43.65054
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25909,
43.78979
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41041,
43.63623
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41733,
43.64454
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37383,
43.64998
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39447,
43.64401
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25383,
43.77823
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18586,
43.76858
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37742,
43.64194
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35246,
43.6582
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40257,
43.63598
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37563,
43.65264
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3336,
43.72541
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39888,
43.70473
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48186,
43.72637
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53594,
43.63736
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49064,
43.60649
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3986,
43.65446
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51718,
43.59805
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29515,
43.74622
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27334,
43.77277
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26037,
43.79337
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29153,
43.76378
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46134,
43.73182
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39837,
43.6537
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44595,
43.63882
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26673,
43.8079
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45327,
43.65679
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45271,
43.65706
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30974,
43.68128
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4677,
43.73053
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25927,
43.79073
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49409,
43.72395
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37962,
43.66172
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35818,
43.67965
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28608,
43.80393
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47334,
43.75547
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27996,
43.71101
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22184,
43.81972
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50824,
43.60279
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54144,
43.64044
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51125,
43.64833
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54865,
43.63077
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44137,
43.67283
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51034,
43.66064
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56743,
43.67396
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42956,
43.65291
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56965,
43.75723
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46668,
43.65394
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53703,
43.63766
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49611,
43.66672
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59451,
43.67398
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25555,
43.85557
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24336,
43.8132
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25866,
43.73561
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27961,
43.71098
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30883,
43.75925
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2196,
43.74314
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23823,
43.79308
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38872,
43.76641
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.21803,
43.79906
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24597,
43.83189
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2584,
43.73509
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23504,
43.77572
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40777,
43.74786
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4925,
43.74658
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50829,
43.77843
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62445,
43.75194
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45721,
43.73245
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4454,
43.78092
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41019,
43.70789
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52037,
43.7567
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64219,
43.72068
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49077,
43.76526
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45137,
43.77234
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36885,
43.67363
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3719,
43.66039
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28951,
43.69436
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30339,
43.70751
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32639,
43.69039
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36611,
43.64424
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28838,
43.69399
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52277,
43.7177
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4119,
43.71389
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59607,
43.73193
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37952,
43.65156
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34717,
43.76133
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36636,
43.65162
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52015,
43.76852
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34438,
43.70717
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2437,
43.73763
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37743,
43.71274
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39588,
43.80218
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55114,
43.67735
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58,
43.7137
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34988,
43.79392
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18512,
43.78433
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23403,
43.72374
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42349,
43.65672
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35825,
43.67689
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34122,
43.72894
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26411,
43.73326
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34528,
43.68002
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41318,
43.65084
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27818,
43.7055
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40356,
43.70573
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47916,
43.6268
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49003,
43.63696
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23216,
43.81326
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47194,
43.6772
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43687,
43.74942
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44391,
43.71616
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42294,
43.75892
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51406,
43.74277
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36914,
43.64439
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18224,
43.75893
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42455,
43.64951
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5135,
43.74008
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33696,
43.81816
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33671,
43.79355
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37088,
43.8014
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42578,
43.63501
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31717,
43.70157
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5247,
43.6446
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53599,
43.63737
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56056,
43.72708
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48283,
43.66574
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30761,
43.77894
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41485,
43.78037
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46925,
43.70097
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3021,
43.68872
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37213,
43.78938
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.20529,
43.81887
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53696,
43.73954
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54412,
43.59181
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35366,
43.65802
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.57525,
43.70156
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40488,
43.72457
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23444,
43.82755
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.23411,
43.77592
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5106,
43.72964
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50569,
43.7095
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3118,
43.74747
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29989,
43.72763
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32829,
43.72794
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42519,
43.70014
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41553,
43.67635
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42957,
43.71891
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43474,
43.74034
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43341,
43.655
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45611,
43.73268
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45223,
43.70348
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25687,
43.77477
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.50216,
43.6973
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24602,
43.73749
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39964,
43.72565
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33961,
43.72315
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45083,
43.73418
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44312,
43.6781
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43263,
43.65294
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25487,
43.78097
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.20728,
43.78207
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.21615,
43.74367
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3468,
43.76191
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35064,
43.69955
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34508,
43.67968
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34653,
43.76919
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.286,
43.74724
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39778,
43.7291
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37833,
43.71752
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.19253,
43.76712
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29517,
43.82089
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.2584,
43.77422
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60389,
43.70317
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.16834,
43.7843
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5576,
43.69215
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39036,
43.65991
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35336,
43.66799
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30966,
43.66784
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37526,
43.65217
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41653,
43.78439
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35784,
43.65251
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39312,
43.64074
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44841,
43.63872
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39178,
43.78521
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36355,
43.65992
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4135,
43.78031
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24,
43.81359
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26357,
43.73232
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26974,
43.76838
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48734,
43.70631
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38983,
43.65035
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53829,
43.71746
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36698,
43.7132
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27711,
43.75553
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34667,
43.75604
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5136,
43.75626
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.27926,
43.76139
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44427,
43.77375
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37277,
43.8083
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61589,
43.73184
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34233,
43.75679
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35307,
43.66611
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52038,
43.76854
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37492,
43.65138
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51915,
43.665
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52449,
43.64479
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56174,
43.62748
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.36681,
43.65516
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38054,
43.64859
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40013,
43.63647
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42784,
43.63994
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4787,
43.63103
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37497,
43.64984
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38952,
43.66012
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35679,
43.65648
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.30273,
43.68346
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.33353,
43.66252
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42374,
43.73946
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28678,
43.68062
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4369,
43.65171
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40953,
43.64611
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39029,
43.65189
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28093,
43.73816
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38588,
43.63895
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.32462,
43.81973
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25174,
43.82431
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39515,
43.646
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59631,
43.68659
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41436,
43.79924
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55495,
43.71427
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53851,
43.60328
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52078,
43.6073
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60821,
43.75647
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.13023,
43.78071
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45342,
43.6571
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51112,
43.64822
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4591,
43.6645
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29425,
43.76282
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51678,
43.59806
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24266,
43.73801
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.25089,
43.83641
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40602,
43.74531
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.18959,
43.76736
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.26525,
43.75171
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.21945,
43.80763
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.22262,
43.82348
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42242,
43.68674
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40693,
43.7815
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47025,
43.78671
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41191,
43.76604
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47596,
43.68076
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44127,
43.70254
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43319,
43.78863
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39986,
43.76418
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46274,
43.66115
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60457,
43.72856
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51661,
43.69999
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3688,
43.76039
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45347,
43.7523
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54639,
43.72166
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4592,
43.71304
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28404,
43.76527
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.29162,
43.76321
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3693,
43.654
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.28478,
43.68073
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34487,
43.67981
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.24978,
43.73182
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.34276,
43.66779
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54367,
43.77235
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51529,
43.70035
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55088,
43.72501
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41025,
43.7079
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74889,
45.65482
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.61419,
45.64659
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71223,
45.5766
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69974,
45.5175
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75754,
45.55285
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69425,
45.57243
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68448,
45.56364
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.76613,
45.6262
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72912,
45.53361
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70836,
45.52275
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68229,
45.55966
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.76865,
45.55889
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.64123,
45.59455
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74798,
45.5815
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75491,
45.5497
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.82897,
45.57462
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72048,
45.55969
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75252,
45.58713
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6831,
43.67364
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71988,
45.55865
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69574,
45.55788
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.80963,
45.57706
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75789,
45.64171
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72049,
45.55836
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68414,
45.56313
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.79522,
45.52562
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75671,
45.5487
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.78098,
45.60169
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.79151,
45.60851
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.78898,
45.54177
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68262,
45.51291
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71715,
45.61175
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63442,
45.68737
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71478,
45.59081
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.6705,
45.59027
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.87214,
45.55441
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.86194,
45.52293
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68217,
45.51351
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74215,
45.54308
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74838,
45.56878
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74981,
45.65802
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.77166,
45.62454
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73949,
45.54388
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72619,
45.58231
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.57251,
45.66704
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.69579,
45.55784
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.76756,
45.53533
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73373,
45.56485
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74127,
45.54339
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72695,
45.58237
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68238,
45.56083
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.81573,
45.53093
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.70374,
45.57108
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.79504,
45.57895
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.85865,
45.52299
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.65143,
45.634
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.68408,
45.56312
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.7335,
45.60767
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.78614,
45.59178
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.79459,
45.5216
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.7412,
45.58948
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71972,
45.55883
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72895,
45.55033
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.86198,
45.52208
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.75852,
45.56186
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72907,
45.55945
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.63555,
45.68733
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.72008,
45.55854
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.74816,
45.55333
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.71548,
45.60575
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66109,
43.61278
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68501,
43.57777
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.717,
43.63678
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7275,
43.601
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68346,
43.54619
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54885,
43.63048
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.55076,
43.63031
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66989,
43.54965
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68526,
43.56143
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62675,
43.71131
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.67612,
43.67333
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63438,
43.59295
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64585,
43.5938
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.67109,
43.60284
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66965,
43.59243
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73834,
43.61118
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60842,
43.57339
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56449,
43.64691
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71408,
43.54194
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.60574,
43.64904
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38631,
43.64332
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5659,
45.49758
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.2982,
45.34402
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.28921,
45.32908
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.78389,
43.36324
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.80563,
43.34119
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.48928,
43.4512
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.17502,
46.86622
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61356,
43.68325
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53791,
43.63515
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75161,
43.61064
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68336,
43.5431
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63285,
43.51277
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64517,
43.55549
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59095,
43.668
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66331,
43.6148
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66839,
43.535
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.696,
43.52531
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66973,
43.5694
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.96957,
45.62732
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.2381,
42.9721
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.19232,
43.02757
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7947,
43.34497
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70074,
43.60704
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43644,
43.69907
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.96461,
43.89415
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41611,
43.67753
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4219,
43.65212
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.444,
43.71559
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.9108,
43.88198
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.88004,
43.93267
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76678,
43.37685
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5927,
43.60148
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.95727,
43.89598
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-78.89954,
43.87122
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44108,
43.72984
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.65787,
43.60251
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56634,
45.37233
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.54729,
45.38486
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5079,
45.3657
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.46549,
45.45438
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.4965,
45.40835
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.26529,
42.99294
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.08445,
43.83103
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44597,
43.79265
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.46796,
45.46654
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51966,
45.39624
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71268,
43.63338
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58246,
43.74437
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47061,
43.69117
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38485,
43.70072
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49069,
43.69665
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48166,
43.72439
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49122,
43.7636
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.91718,
45.54338
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.24947,
43.55715
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.04124,
43.84767
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51753,
43.77619
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47614,
43.6997
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47406,
43.68192
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43585,
43.69934
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69741,
43.63939
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53139,
43.70682
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.67417,
43.67553
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4578,
43.95793
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43314,
43.85352
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.3873,
43.84328
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44159,
43.79333
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43436,
43.67432
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.48566,
45.41504
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46619,
43.70983
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46163,
43.67088
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68402,
43.54348
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48903,
43.68681
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.56886,
45.38956
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39926,
43.70475
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.58478,
46.12362
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.72505,
43.63581
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.78679,
43.23283
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41644,
43.78337
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43577,
43.86498
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42975,
43.8396
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54144,
43.86828
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71726,
43.55791
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56699,
43.64477
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.57068,
43.59952
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.8328,
43.24577
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63159,
43.59088
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.09491,
45.87987
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59377,
43.58152
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2599,
46.78518
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68673,
43.54866
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74684,
43.65381
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66134,
43.508
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.73971,
43.65447
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69037,
44.38727
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51601,
43.70028
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.67062,
44.37048
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.61731,
43.65916
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6996,
43.55328
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.34966,
46.83182
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5835,
43.70002
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48464,
43.68797
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.87533,
43.25835
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54421,
43.6623
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.56757,
43.6741
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53683,
43.71586
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6241,
43.75103
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47193,
43.69087
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58753,
43.62338
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41808,
43.79004
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39544,
43.69861
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.94495,
43.228
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58429,
43.60879
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.74,
43.65395
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47429,
43.69236
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.94468,
43.22721
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64786,
43.59347
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63054,
43.59738
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75881,
43.5833
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75899,
43.58348
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.85203,
43.25083
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43559,
43.69899
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.69617,
43.61217
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.462,
43.65943
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.57201,
43.76515
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4407,
43.70966
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59132,
43.67718
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41572,
43.68376
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49179,
43.69272
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.88613,
43.21851
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.93783,
43.25774
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.90699,
43.25836
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.57194,
43.62025
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.26749,
45.33147
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58749,
43.54991
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.59327,
43.66125
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.67936,
43.54456
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68458,
43.54378
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45959,
43.65543
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44199,
43.6783
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51724,
43.7559
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64612,
43.59381
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.79812,
43.24381
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44207,
43.89435
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64463,
43.58287
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7864,
43.40596
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.79765,
43.32645
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39888,
43.70458
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.45256,
43.65672
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.24878,
46.84134
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62954,
43.57925
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48995,
43.66753
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.77357,
43.36494
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43723,
43.69849
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47572,
43.65179
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.75892,
43.58371
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47642,
43.68985
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42401,
43.70553
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46535,
43.66728
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.62178,
43.61027
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54959,
43.67393
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64394,
43.59729
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48543,
43.69428
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41849,
43.6497
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46191,
43.74902
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71711,
43.63615
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39921,
43.70551
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.64854,
43.57167
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41615,
43.64452
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7515,
43.54852
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42909,
43.79557
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68537,
43.57755
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.559,
43.6313
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.7151,
43.54715
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.71845,
43.54843
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.91734,
43.22112
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.83865,
43.22802
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22558,
43.52845
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86708,
43.25463
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.39931,
43.70504
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52606,
43.73753
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.38864,
43.65638
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41491,
43.78144
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.23033,
45.31604
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43066,
43.69996
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.51098,
43.68358
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.6357,
43.71651
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.54501,
43.6784
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48931,
43.75815
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.79678,
43.347
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.81596,
43.26352
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.86334,
43.2385
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49323,
43.7754
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44509,
43.67749
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42252,
43.80743
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52608,
43.64416
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.53833,
43.63532
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.31278,
43.86063
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.2939,
46.81126
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41685,
43.70292
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48285,
43.66738
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4243,
43.70132
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43565,
43.69909
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.46901,
43.68224
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47605,
43.70035
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.37665,
43.84573
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41797,
43.78995
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.48647,
44.05288
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43616,
43.63691
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.63258,
43.51255
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4771,
43.65305
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.4845,
45.49686
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42638,
43.79662
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.35365,
43.66195
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.44675,
43.71543
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41523,
43.64227
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.84302,
43.19014
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.49527,
43.67632
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.62548,
45.43631
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68646,
43.61405
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.70581,
43.64599
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.80187,
45.64629
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.9529,
43.25957
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.68471,
43.64784
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.76826,
43.22895
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.21494,
46.81286
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.73237,
45.36045
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41177,
43.66657
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.4369,
43.64118
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.50785,
45.52737
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51447,
45.58698
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.51778,
45.46972
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.28603,
45.33665
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47224,
45.47495
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.47361,
45.47618
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.2767,
43.00472
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.4397,
45.43979
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27541,
43.00623
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.29102,
45.32545
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.28402,
45.33163
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.27678,
43.01024
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47175,
43.68227
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42431,
43.74362
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.43062,
43.66442
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.40965,
43.70578
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47002,
43.69122
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.25074,
42.98493
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.89235,
45.56194
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.1751,
43.00328
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.5269,
43.70378
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.52233,
43.46502
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1767,
45.03705
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.41458,
43.78065
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47423,
43.68182
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.58179,
43.74263
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.16308,
42.99007
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.45937,
43.46395
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.03257,
45.15668
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.07616,
45.19331
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.40896,
45.49471
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.8887,
45.55827
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.89262,
45.56165
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.9631,
45.62218
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.93937,
45.62887
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.94658,
45.64515
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.66308,
43.61429
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.52991,
43.77358
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.57481,
46.12237
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42587,
43.6344
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.94555,
45.62589
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.26014,
46.79222
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.42649,
43.63429
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-79.47137,
43.67234
]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.2568,
42.97899
]
}
}
]
}
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": 1,
"title": "View related trips",
"description": "Using GTFS Tools - by Gerbil",
"url": "http://gtfstools.com/run.php?trip_id=:trip"
},
{
"id": 2,
"title": "View tracking history",
"description": "Using GTFS Tools - by Gerbil",
"url": "http://gtfstools.com/trackingHistory.php?vehicle_id=:ref"
},
{
"id": 3,
"title": "View additional details on this vehicle",
"description": "Using FleetStats - by Blue Hybrid Bus",
"url": "https://fleetstatsapp.com/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 FleetStats - by Blue Hybrid Bus",
"url": "https://fleetstatsapp.com/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 FleetStats - by Blue Hybrid Bus",
"url": "https://fleetstatsapp.com/vehicle/ttc/:ref"
},
{
"id": 84,
"title": "View additional details on this vehicle",
"description": "Using FleetStats - by Blue Hybrid Bus",
"url": "https://fleetstatsapp.com/vehicle/sto/:ref"
},
{
"id": 85,
"title": "View additional details on this vehicle",
"description": "Using FleetStats - by Blue Hybrid Bus",
"url": "https://fleetstatsapp.com/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_id}
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 (200):
Show headers
cache-control: no-cache, private
content-type: application/json
laravel-responsecache: Wed, 27 Mar 2024 10:24:33 -0400
x-ratelimit-limit: 56
x-ratelimit-remaining: 54
content-language: en
vary: Origin
{
"data": {
"id": 1,
"title": "View related trips",
"description": "Using GTFS Tools - by Gerbil",
"url": "http://gtfstools.com/run.php?trip_id=:trip"
}
}
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",
"Deux-Montagnes",
"McMasterville",
"La Prairie",
"L'Assomption",
"Sainte-Julie",
"Beauharnois",
"Très-Saint-Sacrement",
"Vaudreuil-Dorion",
"Saint-Constant",
"Saint-Joseph-de-Sorel",
"Mascouche",
"Richelieu",
"Sorel-Tracy",
"Sainte-Barbe",
"Terrebonne",
"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": "#A80532",
"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": 5,
"isArchived": false,
"name": "exo Laurentides",
"shortName": "Laurentides",
"slug": "la",
"cities": [
"Bois-des-Filion",
"Boisbriand",
"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": {}
},
{
"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",
"L'Épiphanie",
"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"
],
"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": false,
"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": "#DBE9D0",
"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": [
"Île Perrot",
"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": 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",
"Huntingdon",
"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": 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",
"Scugog",
"Hamilton",
"Newmarket",
"Elmira",
"Guelph",
"Barrie",
"Borden",
"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",
"Clarington",
"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": [
"Aurora",
"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": [
"Niagara Falls",
"Milton",
"Kitchener",
"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": 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": [],
"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": [],
"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": [],
"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": [],
"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 <a href=\"https://unsplash.com/fr/photos/G3DZfDNciVQ\">Livia Widjaja</a></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",
"Saint-Augustin-de-Desmaures"
],
"image": "01HRZQY5A7VCSRMM9V1516S5ZM.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": "Outaouais",
"slug": "outaouais",
"credits": "<p>Header photo by Brody Flannigan</p>",
"infoTitle": "",
"infoBody": "",
"description": "The Outaouais region, a few steps from the National Capital, has a transport company for the city of Gatineau and another for the MRC des Collines-de-l'Outaouais.",
"metaDescription": "Discover the Outaouais region, a few steps from the National Capital, with bus services in Gatineau and the MRC des Collines-de-l'Outaouais.",
"cities": [
"Gatineau"
],
"image": "01HRZQENT19B2X6NJJG7HWHERZ.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": {}
}
]
},
{
"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",
"Saint-Sauveur",
"Blainville"
],
"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-Tremblant",
"Mont-Blanc",
"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": [
"Blainville",
"Mirabel",
"Pointe-Calumet",
"Sainte-Marthe-sur-le-Lac",
"Saint-Jérôme"
],
"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
laravel-responsecache: Wed, 27 Mar 2024 19:11:24 -0400
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",
"Deux-Montagnes",
"McMasterville",
"La Prairie",
"L'Assomption",
"Sainte-Julie",
"Beauharnois",
"Très-Saint-Sacrement",
"Vaudreuil-Dorion",
"Saint-Constant",
"Saint-Joseph-de-Sorel",
"Mascouche",
"Richelieu",
"Sorel-Tracy",
"Sainte-Barbe",
"Terrebonne",
"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": "#A80532",
"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": 5,
"isArchived": false,
"name": "exo Laurentides",
"shortName": "Laurentides",
"slug": "la",
"cities": [
"Deux-Montagnes",
"Lorraine",
"Sainte-Marthe-sur-le-Lac",
"Sainte-Thérèse",
"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",
"Otterburn Park",
"Saint-Basile-le-Grand",
"Saint-Hyacinthe"
],
"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",
"L'Épiphanie",
"Charlemagne",
"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"
],
"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": false,
"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": "#DBE9D0",
"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",
"St-Lazare",
"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",
"Contrecoeur",
"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": 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": {}
}
]
}
}
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
laravel-responsecache: Thu, 28 Mar 2024 11:07:31 -0400
x-ratelimit-limit: 135
x-ratelimit-remaining: 132
content-language: en
vary: Origin
{
"data": [
{
"id": 95,
"ref": "27017",
"isActive": true,
"label": "27017",
"timestamp": 1711638392,
"tripId": "274627957",
"routeId": "32",
"startTime": "10:25:00",
"position": {
"lat": 45.57589,
"lon": -73.54375
},
"bearing": 115,
"speed": 33,
"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": 5,
"label": "Full"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627957",
"headsign": "32-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "32",
"routeLongName": "Lacordaire",
"shapeLink": "/storage/shapes/stm/320162.json",
"shapeId": "320162",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 106,
"ref": "27506",
"isActive": true,
"label": "27506",
"timestamp": 1711638390,
"tripId": "273971975",
"routeId": "110",
"startTime": "10:53:00",
"position": {
"lat": 45.44007,
"lon": -73.67282
},
"bearing": 153,
"speed": 30,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273971975",
"headsign": "110-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "110",
"routeLongName": "Centrale",
"shapeLink": "/storage/shapes/stm/1100199.json",
"shapeId": "1100199",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 119,
"ref": "28014",
"isActive": true,
"label": "28014",
"timestamp": 1711638390,
"tripId": "273970283",
"routeId": "61",
"startTime": "10:49:00",
"position": {
"lat": 45.49443,
"lon": -73.55661
},
"bearing": 207,
"speed": 6,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970283",
"headsign": "61-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "61",
"routeLongName": "Wellington",
"shapeLink": "/storage/shapes/stm/610109.json",
"shapeId": "610109",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 120,
"ref": "28018",
"isActive": true,
"label": "28018",
"timestamp": 1711638395,
"tripId": "274243225",
"routeId": "468",
"startTime": "10:17:00",
"position": {
"lat": 45.48119,
"lon": -73.86359
},
"bearing": 226,
"speed": 56,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274243225",
"headsign": "468-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "468",
"routeLongName": "Express Pierrefonds / Gouin",
"shapeLink": "/storage/shapes/stm/4680086.json",
"shapeId": "4680086",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 126,
"ref": "28030",
"isActive": true,
"label": "28030",
"timestamp": 1711638407,
"tripId": "274241069",
"routeId": "200",
"startTime": "10:31:00",
"position": {
"lat": 45.40524,
"lon": -73.93115
},
"bearing": 249,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241069",
"headsign": "200-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "200",
"routeLongName": "Sainte-Anne-de-Bellevue",
"shapeLink": "/storage/shapes/stm/2000095.json",
"shapeId": "2000095",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 134,
"ref": "28051",
"isActive": true,
"label": "28051",
"timestamp": 1711638401,
"tripId": "273972143",
"routeId": "191",
"startTime": "10:33:00",
"position": {
"lat": 45.44189,
"lon": -73.69262
},
"bearing": 221,
"speed": 18,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972143",
"headsign": "191-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "191",
"routeLongName": "Broadway / Provost",
"shapeLink": "/storage/shapes/stm/1910883.json",
"shapeId": "1910883",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 135,
"ref": "28052",
"isActive": true,
"label": "28052",
"timestamp": 1711638393,
"tripId": "273974004",
"routeId": "491",
"startTime": "10:54:00",
"position": {
"lat": 45.44874,
"lon": -73.63465
},
"bearing": 242,
"speed": 51,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273974004",
"headsign": "491-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "491",
"routeLongName": "Express Lachine",
"shapeLink": "/storage/shapes/stm/4910077.json",
"shapeId": "4910077",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 136,
"ref": "28057",
"isActive": true,
"label": "28057",
"timestamp": 1711638407,
"tripId": "273974064",
"routeId": "495",
"startTime": "11:20:00",
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273974064",
"headsign": "495-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "495",
"routeLongName": "Express Lachine / LaSalle",
"shapeLink": "/storage/shapes/stm/4950132.json",
"shapeId": "4950132",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 153,
"ref": "28106",
"isActive": true,
"label": "28106",
"timestamp": 1711638404,
"tripId": "274241455",
"routeId": "202",
"startTime": "10:42:00",
"position": {
"lat": 45.44883,
"lon": -73.74196
},
"bearing": 194,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241455",
"headsign": "202-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "202",
"routeLongName": "Dawson",
"shapeLink": "/storage/shapes/stm/2020184.json",
"shapeId": "2020184",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 164,
"ref": "28128",
"isActive": true,
"label": "28128",
"timestamp": 1711638396,
"tripId": "274241127",
"routeId": "200",
"startTime": "10:41:00",
"position": {
"lat": 45.45686,
"lon": -73.82873
},
"bearing": 54,
"speed": 41,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241127",
"headsign": "200-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "200",
"routeLongName": "Sainte-Anne-de-Bellevue",
"shapeLink": "/storage/shapes/stm/2000093.json",
"shapeId": "2000093",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 166,
"ref": "28131",
"isActive": true,
"label": "28131",
"timestamp": 1711638397,
"tripId": "274242511",
"routeId": "196",
"startTime": "10:38:00",
"position": {
"lat": 45.46512,
"lon": -73.71209
},
"bearing": 185,
"speed": 25,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242511",
"headsign": "196-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "196",
"routeLongName": "Parc-Industriel-Lachine",
"shapeLink": "/storage/shapes/stm/1960207.json",
"shapeId": "1960207",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 174,
"ref": "29019",
"isActive": true,
"label": "29019",
"timestamp": 1711638400,
"tripId": "276174632",
"routeId": "66",
"startTime": "10:27:00",
"position": {
"lat": 45.49505,
"lon": -73.57787
},
"bearing": 302,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174632",
"headsign": "66-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "66",
"routeLongName": "The Boulevard",
"shapeLink": "/storage/shapes/stm/660100.json",
"shapeId": "660100",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 178,
"ref": "29033",
"isActive": true,
"label": "29033",
"timestamp": 1711638388,
"tripId": "276174358",
"routeId": "92",
"startTime": "11:02:00",
"position": {
"lat": 45.49601,
"lon": -73.65179
},
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174358",
"headsign": "92-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "92",
"routeLongName": "Jean-Talon Ouest",
"shapeLink": "/storage/shapes/stm/920105.json",
"shapeId": "920105",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 192,
"ref": "29072",
"isActive": true,
"label": "29072",
"timestamp": 1711638395,
"tripId": "273972181",
"routeId": "90",
"startTime": "10:32:00",
"position": {
"lat": 45.47425,
"lon": -73.6041
},
"bearing": 41,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972181",
"headsign": "90-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "90",
"routeLongName": "Saint-Jacques",
"shapeLink": "/storage/shapes/stm/900252.json",
"shapeId": "900252",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 193,
"ref": "29074",
"isActive": true,
"label": "29074",
"timestamp": 1711638398,
"tripId": "273971935",
"routeId": "109",
"startTime": "10:46:00",
"position": {
"lat": 45.43446,
"lon": -73.63111
},
"bearing": 301,
"speed": 41,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273971935",
"headsign": "109-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "109",
"routeLongName": "Boulevard Shevchenko",
"shapeLink": "/storage/shapes/stm/1090087.json",
"shapeId": "1090087",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 199,
"ref": "29083",
"isActive": true,
"label": "29083",
"timestamp": 1711638401,
"tripId": "273973633",
"routeId": "405",
"startTime": "10:57:00",
"position": {
"lat": 45.48507,
"lon": -73.5835
},
"bearing": 227,
"speed": 63,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973633",
"headsign": "405-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "405",
"routeLongName": "Express Bord-du-Lac",
"shapeLink": "/storage/shapes/stm/4050078.json",
"shapeId": "4050078",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 202,
"ref": "29088",
"isActive": true,
"label": "29088",
"timestamp": 1711638392,
"tripId": "273974124",
"routeId": "495",
"startTime": "10:21:00",
"position": {
"lat": 45.42535,
"lon": -73.60879
},
"bearing": 120,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273974124",
"headsign": "495-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "495",
"routeLongName": "Express Lachine / LaSalle",
"shapeLink": "/storage/shapes/stm/4950132.json",
"shapeId": "4950132",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 212,
"ref": "29120",
"isActive": true,
"label": "29120",
"timestamp": 1711638398,
"tripId": "273973928",
"routeId": "425",
"startTime": "11:27:00",
"position": {
"lat": 45.43751,
"lon": -73.90022
},
"bearing": 40,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973928",
"headsign": "425-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "425",
"routeLongName": "Express Anse-à-l'Orme",
"shapeLink": "/storage/shapes/stm/4250077.json",
"shapeId": "4250077",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 213,
"ref": "29125",
"isActive": true,
"label": "29125",
"timestamp": 1711638402,
"tripId": "273969636",
"routeId": "35",
"startTime": "10:39:00",
"position": {
"lat": 45.48191,
"lon": -73.57687
},
"bearing": 229,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273969636",
"headsign": "35-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "35",
"routeLongName": "Griffintown",
"shapeLink": "/storage/shapes/stm/350011.json",
"shapeId": "350011",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 215,
"ref": "29130",
"isActive": true,
"label": "29130",
"timestamp": 1711638407,
"tripId": "273970640",
"routeId": "71",
"startTime": "11:02:00",
"position": {
"lat": 45.48542,
"lon": -73.57227
},
"bearing": 141,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970640",
"headsign": "71-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "71",
"routeLongName": "Du Centre",
"shapeLink": "/storage/shapes/stm/710077.json",
"shapeId": "710077",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 216,
"ref": "29131",
"isActive": true,
"label": "29131",
"timestamp": 1711638389,
"tripId": "273973602",
"routeId": "405",
"startTime": "10:34:00",
"position": {
"lat": 45.42982,
"lon": -73.84943
},
"bearing": 243,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973602",
"headsign": "405-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "405",
"routeLongName": "Express Bord-du-Lac",
"shapeLink": "/storage/shapes/stm/4050078.json",
"shapeId": "4050078",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 217,
"ref": "29133",
"isActive": true,
"label": "29133",
"timestamp": 1711638391,
"tripId": "273974350",
"routeId": "496",
"startTime": "10:46:00",
"position": {
"lat": 45.43873,
"lon": -73.66491
},
"bearing": 93,
"speed": 9,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273974350",
"headsign": "496-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "496",
"routeLongName": "Express Victoria",
"shapeLink": "/storage/shapes/stm/4960092.json",
"shapeId": "4960092",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 219,
"ref": "29139",
"isActive": true,
"label": "29139",
"timestamp": 1711638394,
"tripId": "273973966",
"routeId": "425",
"startTime": "10:56:00",
"position": {
"lat": 45.43819,
"lon": -73.85525
},
"bearing": 78,
"speed": 40,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973966",
"headsign": "425-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "425",
"routeLongName": "Express Anse-à-l'Orme",
"shapeLink": "/storage/shapes/stm/4250077.json",
"shapeId": "4250077",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 221,
"ref": "29141",
"isActive": true,
"label": "29141",
"timestamp": 1711638403,
"tripId": "273972906",
"routeId": "138",
"startTime": "10:36:00",
"position": {
"lat": 45.47151,
"lon": -73.64755
},
"bearing": 299,
"speed": 2,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972906",
"headsign": "138-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "138",
"routeLongName": "Notre-Dame-de-Grâce",
"shapeLink": "/storage/shapes/stm/1380085.json",
"shapeId": "1380085",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 227,
"ref": "29150",
"isActive": true,
"label": "29150",
"timestamp": 1711638391,
"tripId": "275102806",
"routeId": "747",
"startTime": "10:22:00",
"position": {
"lat": 45.44868,
"lon": -73.73653
},
"bearing": 300,
"speed": 44,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275102806",
"headsign": "747-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "747",
"routeLongName": "YUL Aéroport / Centre-Ville",
"shapeLink": "/storage/shapes/stm/7471232.json",
"shapeId": "7471232",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 230,
"ref": "29801",
"isActive": true,
"label": "29801",
"timestamp": 1711638398,
"tripId": "276160071",
"routeId": "121",
"startTime": "10:25:00",
"position": {
"lat": 45.51066,
"lon": -73.68739
},
"bearing": 222,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276160071",
"headsign": "121-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "121",
"routeLongName": "Sauvé / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/1210245.json",
"shapeId": "1210245",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 239,
"ref": "29826",
"isActive": true,
"label": "29826",
"timestamp": 1711638395,
"tripId": "276159316",
"routeId": "439",
"startTime": "10:48:00",
"position": {
"lat": 45.59912,
"lon": -73.64001
},
"bearing": 211,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159316",
"headsign": "439-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390240.json",
"shapeId": "4390240",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 241,
"ref": "29830",
"isActive": true,
"label": "29830",
"timestamp": 1711638397,
"tripId": "276160034",
"routeId": "121",
"startTime": "10:49:00",
"position": {
"lat": 45.55201,
"lon": -73.65542
},
"bearing": 189,
"speed": 4,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276160034",
"headsign": "121-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "121",
"routeLongName": "Sauvé / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/1210245.json",
"shapeId": "1210245",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 261,
"ref": "30027",
"isActive": true,
"label": "30027",
"timestamp": 1711638403,
"tripId": "274628657",
"routeId": "44",
"startTime": "10:31:00",
"position": {
"lat": 45.63836,
"lon": -73.59673
},
"bearing": 325,
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274628657",
"headsign": "44-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "44",
"routeLongName": "Armand-Bombardier",
"shapeLink": "/storage/shapes/stm/440167.json",
"shapeId": "440167",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 266,
"ref": "30049",
"isActive": true,
"label": "30049",
"timestamp": 1711638407,
"tripId": "274627209",
"routeId": "43",
"startTime": "11:02:00",
"position": {
"lat": 45.58817,
"lon": -73.6515
},
"bearing": 194,
"speed": 4,
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274627209",
"headsign": "43-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "43",
"routeLongName": "Monselet",
"shapeLink": "/storage/shapes/stm/430202.json",
"shapeId": "430202",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 270,
"ref": "30059",
"isActive": true,
"label": "30059",
"timestamp": 1711638387,
"tripId": "274848885",
"routeId": "430",
"startTime": "10:34:00",
"position": {
"lat": 45.59773,
"lon": -73.51207
},
"bearing": 174,
"speed": 48,
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274848885",
"headsign": "430-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "430",
"routeLongName": "Express Pointe-aux-Trembles",
"shapeLink": "/storage/shapes/stm/4300151.json",
"shapeId": "4300151",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 272,
"ref": "30070",
"isActive": true,
"label": "30070",
"timestamp": 1711638394,
"tripId": "274628131",
"routeId": "81",
"startTime": "10:55:00",
"position": {
"lat": 45.65691,
"lon": -73.54649
},
"bearing": 64,
"speed": 52,
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274628131",
"headsign": "81-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "81",
"routeLongName": "Saint-Jean-Baptiste",
"shapeLink": "/storage/shapes/stm/810019.json",
"shapeId": "810019",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 282,
"ref": "30104",
"isActive": true,
"label": "30104",
"timestamp": 1711638403,
"tripId": "276174131",
"routeId": "144",
"startTime": "10:53:00",
"position": {
"lat": 45.50214,
"lon": -73.57703
},
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174131",
"headsign": "144-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "144",
"routeLongName": "Avenue des Pins",
"shapeLink": "/storage/shapes/stm/1440095.json",
"shapeId": "1440095",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 284,
"ref": "30107",
"isActive": true,
"label": "30107",
"timestamp": 1711638398,
"tripId": "276174431",
"routeId": "18",
"startTime": "11:10:00",
"position": {
"lat": 45.5965,
"lon": -73.53419
},
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174431",
"headsign": "18-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "18",
"routeLongName": "Beaubien",
"shapeLink": "/storage/shapes/stm/180218.json",
"shapeId": "180218",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 290,
"ref": "30126",
"isActive": true,
"label": "30126",
"timestamp": 1711638402,
"tripId": "274628980",
"routeId": "49",
"startTime": "10:12:00",
"position": {
"lat": 45.55639,
"lon": -73.66705
},
"bearing": 0,
"speed": 0,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274628980",
"headsign": "49-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "49",
"routeLongName": "Maurice-Duplessis",
"shapeLink": "/storage/shapes/stm/490345.json",
"shapeId": "490345",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 295,
"ref": "30140",
"isActive": true,
"label": "30140",
"timestamp": 1711638392,
"tripId": "274626947",
"routeId": "192",
"startTime": "10:51:00",
"position": {
"lat": 45.59243,
"lon": -73.59197
},
"bearing": 216,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274626947",
"headsign": "192-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "192",
"routeLongName": "Robert",
"shapeLink": "/storage/shapes/stm/1920151.json",
"shapeId": "1920151",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 298,
"ref": "30145",
"isActive": true,
"label": "30145",
"timestamp": 1711638396,
"tripId": "274629048",
"routeId": "81",
"startTime": "11:08:00",
"position": {
"lat": 45.63911,
"lon": -73.49261
},
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274629048",
"headsign": "81-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "81",
"routeLongName": "Saint-Jean-Baptiste",
"shapeLink": "/storage/shapes/stm/810018.json",
"shapeId": "810018",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 299,
"ref": "30147",
"isActive": true,
"label": "30147",
"timestamp": 1711638400,
"tripId": "274627750",
"routeId": "43",
"startTime": "10:07:00",
"position": {
"lat": 45.65939,
"lon": -73.57114
},
"bearing": 56,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 62,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627750",
"headsign": "43-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "43",
"routeLongName": "Monselet",
"shapeLink": "/storage/shapes/stm/430202.json",
"shapeId": "430202",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 300,
"ref": "30149",
"isActive": true,
"label": "30149",
"timestamp": 1711638402,
"tripId": "276174598",
"routeId": "161",
"startTime": "10:34:00",
"position": {
"lat": 45.48075,
"lon": -73.64828
},
"bearing": 214,
"speed": 51,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174598",
"headsign": "161-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "161",
"routeLongName": "Van Horne",
"shapeLink": "/storage/shapes/stm/1610134.json",
"shapeId": "1610134",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 309,
"ref": "30170",
"isActive": true,
"label": "30170",
"timestamp": 1711638398,
"tripId": "274736351",
"routeId": "10",
"startTime": "10:46:00",
"position": {
"lat": 45.54816,
"lon": -73.60027
},
"bearing": 303,
"speed": 36,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274736351",
"headsign": "10-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "10",
"routeLongName": "De Lorimier",
"shapeLink": "/storage/shapes/stm/100069.json",
"shapeId": "100069",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 311,
"ref": "30179",
"isActive": true,
"label": "30179",
"timestamp": 1711638398,
"tripId": "274242084",
"routeId": "206",
"startTime": "11:01:00",
"position": {
"lat": 45.47522,
"lon": -73.82938
},
"bearing": 0,
"speed": 14,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242084",
"headsign": "206-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "206",
"routeLongName": "Roger-Pilon",
"shapeLink": "/storage/shapes/stm/2060107.json",
"shapeId": "2060107",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 312,
"ref": "30183",
"isActive": true,
"label": "30183",
"timestamp": 1711638407,
"tripId": "276174748",
"routeId": "179",
"startTime": "10:52:00",
"position": {
"lat": 45.5344,
"lon": -73.66084
},
"bearing": 111,
"speed": 13,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174748",
"headsign": "179-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "179",
"routeLongName": "De l'Acadie",
"shapeLink": "/storage/shapes/stm/1790189.json",
"shapeId": "1790189",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 313,
"ref": "30185",
"isActive": true,
"label": "30185",
"timestamp": 1711638402,
"tripId": "274628810",
"routeId": "141",
"startTime": "10:40:00",
"position": {
"lat": 45.60018,
"lon": -73.56868
},
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274628810",
"headsign": "141-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": "/storage/shapes/stm/1410578.json",
"shapeId": "1410578",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 315,
"ref": "30193",
"isActive": true,
"label": "30193",
"timestamp": 1711638397,
"tripId": "274626859",
"routeId": "183",
"startTime": "10:53:00",
"position": {
"lat": 45.65952,
"lon": -73.54217
},
"bearing": 142,
"speed": 5,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274626859",
"headsign": "183-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "183",
"routeLongName": "Gouin Est",
"shapeLink": "/storage/shapes/stm/1830085.json",
"shapeId": "1830085",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 316,
"ref": "30194",
"isActive": true,
"label": "30194",
"timestamp": 1711638404,
"tripId": "274628776",
"routeId": "32",
"startTime": "11:03:00",
"position": {
"lat": 45.61348,
"lon": -73.62724
},
"bearing": 0,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274628776",
"headsign": "32-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "32",
"routeLongName": "Lacordaire",
"shapeLink": "/storage/shapes/stm/320162.json",
"shapeId": "320162",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 317,
"ref": "30195",
"isActive": true,
"label": "30195",
"timestamp": 1711638402,
"tripId": "274628927",
"routeId": "186",
"startTime": "11:09:00",
"position": {
"lat": 45.69738,
"lon": -73.49171
},
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274628927",
"headsign": "186-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "186",
"routeLongName": "Sherbrooke-Est",
"shapeLink": "/storage/shapes/stm/1860244.json",
"shapeId": "1860244",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 318,
"ref": "30198",
"isActive": true,
"label": "30198",
"timestamp": 1711638398,
"tripId": "276173783",
"routeId": "92",
"startTime": "10:29:00",
"position": {
"lat": 45.54134,
"lon": -73.61541
},
"bearing": 122,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276173783",
"headsign": "92-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "92",
"routeLongName": "Jean-Talon Ouest",
"shapeLink": "/storage/shapes/stm/920105.json",
"shapeId": "920105",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 320,
"ref": "30212",
"isActive": true,
"label": "30212",
"timestamp": 1711638393,
"tripId": "274628898",
"routeId": "33",
"startTime": "10:45:00",
"position": {
"lat": 45.59159,
"lon": -73.5729
},
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274628898",
"headsign": "33-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": "/storage/shapes/stm/330281.json",
"shapeId": "330281",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 323,
"ref": "30230",
"isActive": true,
"label": "30230",
"timestamp": 1711638400,
"tripId": "274737940",
"routeId": "715",
"startTime": "10:40:00",
"position": {
"lat": 45.4986,
"lon": -73.57008
},
"bearing": 0,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737940",
"headsign": "715-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "715",
"routeLongName": "Vieux-Montréal / Vieux-Port",
"shapeLink": "/storage/shapes/stm/7150051.json",
"shapeId": "7150051",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 324,
"ref": "30231",
"isActive": true,
"label": "30231",
"timestamp": 1711638400,
"tripId": "274241729",
"routeId": "207",
"startTime": "11:06:00",
"position": {
"lat": 45.49092,
"lon": -73.88165
},
"bearing": 230,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241729",
"headsign": "207-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "207",
"routeLongName": "Jacques-Bizard",
"shapeLink": "/storage/shapes/stm/2070089.json",
"shapeId": "2070089",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 325,
"ref": "30232",
"isActive": true,
"label": "30232",
"timestamp": 1711638403,
"tripId": "274239623",
"routeId": "68",
"startTime": "10:13:00",
"position": {
"lat": 45.46137,
"lon": -73.92054
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 74,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274239623",
"headsign": "68-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "68",
"routeLongName": "Pierrefonds",
"shapeLink": "/storage/shapes/stm/680404.json",
"shapeId": "680404",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 333,
"ref": "30253",
"isActive": true,
"label": "30253",
"timestamp": 1711638400,
"tripId": "274241992",
"routeId": "205",
"startTime": "10:53:00",
"position": {
"lat": 45.5059,
"lon": -73.83907
},
"bearing": 82,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241992",
"headsign": "205-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "205",
"routeLongName": "Gouin",
"shapeLink": "/storage/shapes/stm/2050108.json",
"shapeId": "2050108",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 335,
"ref": "30255",
"isActive": true,
"label": "30255",
"timestamp": 1711638402,
"tripId": "274240029",
"routeId": "72",
"startTime": "10:42:00",
"position": {
"lat": 45.47805,
"lon": -73.76345
},
"bearing": 79,
"speed": 27,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240029",
"headsign": "72-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": "/storage/shapes/stm/720173.json",
"shapeId": "720173",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 348,
"ref": "30836",
"isActive": true,
"label": "30836",
"timestamp": 1711638396,
"tripId": "276160279",
"routeId": "467",
"startTime": "10:32:00",
"position": {
"lat": 45.54706,
"lon": -73.55995
},
"bearing": 113,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276160279",
"headsign": "467-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "467",
"routeLongName": "Express Saint-Michel",
"shapeLink": "/storage/shapes/stm/4670073.json",
"shapeId": "4670073",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 349,
"ref": "30837",
"isActive": true,
"label": "30837",
"timestamp": 1711638402,
"tripId": "276159403",
"routeId": "439",
"startTime": "10:16:00",
"position": {
"lat": 45.54726,
"lon": -73.5338
},
"bearing": 225,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159403",
"headsign": "439-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390239.json",
"shapeId": "4390239",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 353,
"ref": "30843",
"isActive": true,
"label": "30843",
"timestamp": 1711638391,
"tripId": "276160049",
"routeId": "121",
"startTime": "11:13:00",
"position": {
"lat": 45.57648,
"lon": -73.63786
},
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276160049",
"headsign": "121-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "121",
"routeLongName": "Sauvé / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/1210245.json",
"shapeId": "1210245",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 356,
"ref": "30850",
"isActive": true,
"label": "30850",
"timestamp": 1711638396,
"tripId": "276159877",
"routeId": "69",
"startTime": "10:14:00",
"position": {
"lat": 45.54104,
"lon": -73.69554
},
"bearing": 212,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159877",
"headsign": "69-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "69",
"routeLongName": "Gouin",
"shapeLink": "/storage/shapes/stm/690218.json",
"shapeId": "690218",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 362,
"ref": "30869",
"isActive": true,
"label": "30869",
"timestamp": 1711638400,
"tripId": "276159386",
"routeId": "439",
"startTime": "10:29:00",
"position": {
"lat": 45.58045,
"lon": -73.6227
},
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159386",
"headsign": "439-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390241.json",
"shapeId": "4390241",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 364,
"ref": "30874",
"isActive": true,
"label": "30874",
"timestamp": 1711638400,
"tripId": "276159574",
"routeId": "67",
"startTime": "10:45:00",
"position": {
"lat": 45.56384,
"lon": -73.60981
},
"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": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159574",
"headsign": "67-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "67",
"routeLongName": "Saint-Michel",
"shapeLink": "/storage/shapes/stm/670109.json",
"shapeId": "670109",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 365,
"ref": "30875",
"isActive": true,
"label": "30875",
"timestamp": 1711638393,
"tripId": "276159261",
"routeId": "439",
"startTime": "11:09: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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159261",
"headsign": "439-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390238.json",
"shapeId": "4390238",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 366,
"ref": "30878",
"isActive": true,
"label": "30878",
"timestamp": 1711638401,
"tripId": "276160161",
"routeId": "121",
"startTime": "10:13:00",
"position": {
"lat": 45.49736,
"lon": -73.70412
},
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276160161",
"headsign": "121-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "121",
"routeLongName": "Sauvé / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/1210245.json",
"shapeId": "1210245",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 367,
"ref": "30879",
"isActive": true,
"label": "30879",
"timestamp": 1711638407,
"tripId": "276159785",
"routeId": "69",
"startTime": "10:09:00",
"position": {
"lat": 45.60897,
"lon": -73.61294
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 65,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159785",
"headsign": "69-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "69",
"routeLongName": "Gouin",
"shapeLink": "/storage/shapes/stm/690217.json",
"shapeId": "690217",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 373,
"ref": "31013",
"isActive": true,
"label": "31013",
"timestamp": 1711638393,
"tripId": "276173827",
"routeId": "55",
"startTime": "11:04:00",
"position": {
"lat": 45.55738,
"lon": -73.6674
},
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276173827",
"headsign": "55-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "55",
"routeLongName": "Boulevard Saint-Laurent",
"shapeLink": "/storage/shapes/stm/550145.json",
"shapeId": "550145",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 375,
"ref": "31019",
"isActive": true,
"label": "31019",
"timestamp": 1711638392,
"tripId": "276174613",
"routeId": "30",
"startTime": "10:50:00",
"position": {
"lat": 45.52415,
"lon": -73.58334
},
"bearing": 291,
"speed": 13,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174613",
"headsign": "30-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "30",
"routeLongName": "Saint-Denis / Saint-Hubert",
"shapeLink": "/storage/shapes/stm/300086.json",
"shapeId": "300086",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 381,
"ref": "31042",
"isActive": true,
"label": "31042",
"timestamp": 1711638407,
"tripId": "274737043",
"routeId": "74",
"startTime": "10:41:00",
"position": {
"lat": 45.49849,
"lon": -73.56804
},
"bearing": 0,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737043",
"headsign": "74-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "74",
"routeLongName": "Bridge",
"shapeLink": "/storage/shapes/stm/740070.json",
"shapeId": "740070",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 382,
"ref": "31046",
"isActive": true,
"label": "31046",
"timestamp": 1711637967,
"tripId": "276174337",
"routeId": "129",
"startTime": "10:12:00",
"position": {
"lat": 45.50874,
"lon": -73.55588
},
"bearing": 0,
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174337",
"headsign": "129-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "129",
"routeLongName": "Côte-Sainte-Catherine",
"shapeLink": "/storage/shapes/stm/1290221.json",
"shapeId": "1290221",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 387,
"ref": "31052",
"isActive": true,
"label": "31052",
"timestamp": 1711638394,
"tripId": "274739128",
"routeId": "172",
"startTime": "10:55:00",
"position": {
"lat": 45.46724,
"lon": -73.53785
},
"bearing": 70,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274739128",
"headsign": "172-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "172",
"routeLongName": "Du Golf",
"shapeLink": "/storage/shapes/stm/1720008.json",
"shapeId": "1720008",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 389,
"ref": "31060",
"isActive": true,
"label": "31060",
"timestamp": 1711638393,
"tripId": "274737339",
"routeId": "125",
"startTime": "10:19:00",
"position": {
"lat": 45.51143,
"lon": -73.56671
},
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737339",
"headsign": "125-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "125",
"routeLongName": "Ontario",
"shapeLink": "/storage/shapes/stm/1250179.json",
"shapeId": "1250179",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 394,
"ref": "31079",
"isActive": true,
"label": "31079",
"timestamp": 1711638404,
"tripId": "276173936",
"routeId": "31",
"startTime": "10:44:00",
"position": {
"lat": 45.537,
"lon": -73.61166
},
"bearing": 0,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276173936",
"headsign": "31-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "31",
"routeLongName": "Saint-Denis",
"shapeLink": "/storage/shapes/stm/310070.json",
"shapeId": "310070",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 396,
"ref": "31093",
"isActive": true,
"label": "31093",
"timestamp": 1711638115,
"tripId": "276156576",
"routeId": "19",
"startTime": "10:49:00",
"position": {
"lat": 45.54422,
"lon": -73.63946
},
"bearing": 28,
"speed": 45,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276156576",
"headsign": "19-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "19",
"routeLongName": "Chabanel / Marché Central",
"shapeLink": "/storage/shapes/stm/190030.json",
"shapeId": "190030",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 399,
"ref": "31097",
"isActive": true,
"label": "31097",
"timestamp": 1711638400,
"tripId": "276158147",
"routeId": "197",
"startTime": "10:32:00",
"position": {
"lat": 45.53325,
"lon": -73.59648
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 37,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276158147",
"headsign": "197-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "197",
"routeLongName": "Rosemont",
"shapeLink": "/storage/shapes/stm/1970141.json",
"shapeId": "1970141",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 400,
"ref": "31101",
"isActive": true,
"label": "31101",
"timestamp": 1711638402,
"tripId": "276174297",
"routeId": "18",
"startTime": "10:49:00",
"position": {
"lat": 45.54543,
"lon": -73.59463
},
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174297",
"headsign": "18-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "18",
"routeLongName": "Beaubien",
"shapeLink": "/storage/shapes/stm/180220.json",
"shapeId": "180220",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 402,
"ref": "31108",
"isActive": true,
"label": "31108",
"timestamp": 1711638401,
"tripId": "274736604",
"routeId": "24",
"startTime": "11:02:00",
"position": {
"lat": 45.53093,
"lon": -73.56298
},
"bearing": 187,
"speed": 9,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274736604",
"headsign": "24-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "24",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/240184.json",
"shapeId": "240184",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 403,
"ref": "31111",
"isActive": true,
"label": "31111",
"timestamp": 1711638407,
"tripId": "274242205",
"routeId": "200",
"startTime": "11:04:00",
"position": {
"lat": 45.46325,
"lon": -73.82496
},
"bearing": 145,
"speed": 45,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242205",
"headsign": "200-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "200",
"routeLongName": "Sainte-Anne-de-Bellevue",
"shapeLink": "/storage/shapes/stm/2000095.json",
"shapeId": "2000095",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 405,
"ref": "31117",
"isActive": true,
"label": "31117",
"timestamp": 1711638404,
"tripId": "276157845",
"routeId": "180",
"startTime": "10:45:00",
"position": {
"lat": 45.53451,
"lon": -73.68156
},
"bearing": 123,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 18,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157845",
"headsign": "180-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "180",
"routeLongName": "De Salaberry",
"shapeLink": "/storage/shapes/stm/1800109.json",
"shapeId": "1800109",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 406,
"ref": "31118",
"isActive": true,
"label": "31118",
"timestamp": 1711637879,
"tripId": "276157179",
"routeId": "48",
"startTime": "10:05:00",
"position": {
"lat": 45.66137,
"lon": -73.53838
},
"bearing": 0,
"speed": 18,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157179",
"headsign": "48-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": "/storage/shapes/stm/480414.json",
"shapeId": "480414",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 408,
"ref": "31123",
"isActive": true,
"label": "31123",
"timestamp": 1711638403,
"tripId": "276157729",
"routeId": "146",
"startTime": "10:51:00",
"position": {
"lat": 45.54935,
"lon": -73.64095
},
"bearing": 21,
"speed": 27,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157729",
"headsign": "146-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "146",
"routeLongName": "Christophe-Colomb / Meilleur",
"shapeLink": "/storage/shapes/stm/1460139.json",
"shapeId": "1460139",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 410,
"ref": "31129",
"isActive": true,
"label": "31129",
"timestamp": 1711638400,
"tripId": "276157284",
"routeId": "54",
"startTime": "10:43:00",
"position": {
"lat": 45.54321,
"lon": -73.64678
},
"bearing": 292,
"speed": 12,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157284",
"headsign": "54-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "54",
"routeLongName": "Charland / Chabanel",
"shapeLink": "/storage/shapes/stm/540152.json",
"shapeId": "540152",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 416,
"ref": "31144",
"isActive": true,
"label": "31144",
"timestamp": 1711638406,
"tripId": "274736338",
"routeId": "10",
"startTime": "10:58:00",
"position": {
"lat": 45.55185,
"lon": -73.6086
},
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "274736338",
"headsign": "10-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "10",
"routeLongName": "De Lorimier",
"shapeLink": "/storage/shapes/stm/100072.json",
"shapeId": "100072",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 417,
"ref": "31146",
"isActive": true,
"label": "31146",
"timestamp": 1711638396,
"tripId": "274738321",
"routeId": "811",
"startTime": "11:10:00",
"position": {
"lat": 45.58955,
"lon": -73.53732
},
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274738321",
"headsign": "811-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "811",
"routeLongName": "Navette Services santé",
"shapeLink": "/storage/shapes/stm/8110006.json",
"shapeId": "8110006",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 418,
"ref": "31147",
"isActive": true,
"label": "31147",
"timestamp": 1711638397,
"tripId": "276157244",
"routeId": "193",
"startTime": "10:27:00",
"position": {
"lat": 45.53907,
"lon": -73.63131
},
"bearing": 203,
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157244",
"headsign": "193-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "193",
"routeLongName": "Jarry",
"shapeLink": "/storage/shapes/stm/1930135.json",
"shapeId": "1930135",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 421,
"ref": "31152",
"isActive": true,
"label": "31152",
"timestamp": 1711638405,
"tripId": "274737209",
"routeId": "94",
"startTime": "10:44:00",
"position": {
"lat": 45.536,
"lon": -73.56152
},
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737209",
"headsign": "94-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "94",
"routeLongName": "D'Iberville",
"shapeLink": "/storage/shapes/stm/940089.json",
"shapeId": "940089",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 422,
"ref": "31153",
"isActive": true,
"label": "31153",
"timestamp": 1711638395,
"tripId": "274737762",
"routeId": "185",
"startTime": "10:46:00",
"position": {
"lat": 45.58448,
"lon": -73.54219
},
"bearing": 206,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737762",
"headsign": "185-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "185",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/1850127.json",
"shapeId": "1850127",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 423,
"ref": "31157",
"isActive": true,
"label": "31157",
"timestamp": 1711638398,
"tripId": "274627322",
"routeId": "33",
"startTime": "11:00:00",
"position": {
"lat": 45.58068,
"lon": -73.53499
},
"bearing": 0,
"speed": 5,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627322",
"headsign": "33-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": "/storage/shapes/stm/330281.json",
"shapeId": "330281",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {}
},
{
"id": 425,
"ref": "31161",
"isActive": true,
"label": "31161",
"timestamp": 1711638400,
"tripId": "274736653",
"routeId": "24",
"startTime": "10:32:00",
"position": {
"lat": 45.51619,
"lon": -73.56779
},
"bearing": 23,
"speed": 36,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274736653",
"headsign": "24-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "24",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/240183.json",
"shapeId": "240183",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 426,
"ref": "31162",
"isActive": true,
"label": "31162",
"timestamp": 1711638390,
"tripId": "274737823",
"routeId": "185",
"startTime": "11:14: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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737823",
"headsign": "185-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "185",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/1850127.json",
"shapeId": "1850127",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 427,
"ref": "31163",
"isActive": true,
"label": "31163",
"timestamp": 1711638389,
"tripId": "274737456",
"routeId": "131",
"startTime": "10:50:00",
"position": {
"lat": 45.57122,
"lon": -73.55338
},
"bearing": 0,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737456",
"headsign": "131-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "131",
"routeLongName": "De l'Assomption",
"shapeLink": "/storage/shapes/stm/1310098.json",
"shapeId": "1310098",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 430,
"ref": "31171",
"isActive": true,
"label": "31171",
"timestamp": 1711638388,
"tripId": "274737510",
"routeId": "136",
"startTime": "11:04:00",
"position": {
"lat": 45.56369,
"lon": -73.54915
},
"bearing": 294,
"speed": 21,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737510",
"headsign": "136-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "136",
"routeLongName": "Viau",
"shapeLink": "/storage/shapes/stm/1360111.json",
"shapeId": "1360111",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 433,
"ref": "31175",
"isActive": true,
"label": "31175",
"timestamp": 1711638388,
"tripId": "274736886",
"routeId": "34",
"startTime": "11:04:00",
"position": {
"lat": 45.56222,
"lon": -73.54606
},
"bearing": 26,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274736886",
"headsign": "34-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "34",
"routeLongName": "Sainte-Catherine",
"shapeLink": "/storage/shapes/stm/340096.json",
"shapeId": "340096",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 434,
"ref": "31183",
"isActive": true,
"label": "31183",
"timestamp": 1711638390,
"tripId": "274737729",
"routeId": "150",
"startTime": "10:44:00",
"position": {
"lat": 45.51556,
"lon": -73.55552
},
"bearing": 33,
"speed": 9,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737729",
"headsign": "150-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "150",
"routeLongName": "René-Lévesque",
"shapeLink": "/storage/shapes/stm/1500060.json",
"shapeId": "1500060",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 435,
"ref": "31185",
"isActive": true,
"label": "31185",
"timestamp": 1711638106,
"tripId": "274737194",
"routeId": "85",
"startTime": "10:10:00",
"position": {
"lat": 45.5328,
"lon": -73.55039
},
"bearing": 121,
"speed": 29,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737194",
"headsign": "85-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "85",
"routeLongName": "Hochelaga",
"shapeLink": "/storage/shapes/stm/850201.json",
"shapeId": "850201",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 442,
"ref": "31204",
"isActive": true,
"label": "31204",
"timestamp": 1711638407,
"tripId": "276156900",
"routeId": "54",
"startTime": "11:09:00",
"position": {
"lat": 45.57607,
"lon": -73.63913
},
"bearing": 208,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276156900",
"headsign": "54-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "54",
"routeLongName": "Charland / Chabanel",
"shapeLink": "/storage/shapes/stm/540152.json",
"shapeId": "540152",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 445,
"ref": "31209",
"isActive": true,
"label": "31209",
"timestamp": 1711638393,
"tripId": "274737178",
"routeId": "85",
"startTime": "10:41:00",
"position": {
"lat": 45.59622,
"lon": -73.53411
},
"bearing": 114,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737178",
"headsign": "85-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "85",
"routeLongName": "Hochelaga",
"shapeLink": "/storage/shapes/stm/850201.json",
"shapeId": "850201",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 453,
"ref": "31231",
"isActive": true,
"label": "31231",
"timestamp": 1711638391,
"tripId": "274737237",
"routeId": "94",
"startTime": "10:56:00",
"position": {
"lat": 45.54036,
"lon": -73.57166
},
"bearing": 301,
"speed": 17,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737237",
"headsign": "94-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "94",
"routeLongName": "D'Iberville",
"shapeLink": "/storage/shapes/stm/940090.json",
"shapeId": "940090",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 457,
"ref": "31235",
"isActive": true,
"label": "31235",
"timestamp": 1711638395,
"tripId": "274738947",
"routeId": "168",
"startTime": "11:20:00",
"position": {
"lat": 45.44841,
"lon": -73.56104
},
"bearing": 244,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274738947",
"headsign": "168-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "168",
"routeLongName": "Cité-du-Havre",
"shapeLink": "/storage/shapes/stm/1680163.json",
"shapeId": "1680163",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 472,
"ref": "31835",
"isActive": true,
"label": "31835",
"timestamp": 1711638405,
"tripId": "276159756",
"routeId": "69",
"startTime": "10:46:00",
"position": {
"lat": 45.59627,
"lon": -73.64232
},
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159756",
"headsign": "69-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "69",
"routeLongName": "Gouin",
"shapeLink": "/storage/shapes/stm/690218.json",
"shapeId": "690218",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 474,
"ref": "31840",
"isActive": true,
"label": "31840",
"timestamp": 1711638395,
"tripId": "276159354",
"routeId": "439",
"startTime": "10:19:00",
"position": {
"lat": 45.58686,
"lon": -73.63293
},
"bearing": 327,
"speed": 18,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159354",
"headsign": "439-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390238.json",
"shapeId": "4390238",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 479,
"ref": "31851",
"isActive": true,
"label": "31851",
"timestamp": 1711638394,
"tripId": "276159239",
"routeId": "439",
"startTime": "10:49:00",
"position": {
"lat": 45.56338,
"lon": -73.57507
},
"bearing": 294,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159239",
"headsign": "439-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390238.json",
"shapeId": "4390238",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 481,
"ref": "31853",
"isActive": true,
"label": "31853",
"timestamp": 1711638395,
"tripId": "276159377",
"routeId": "439",
"startTime": "11:00:00",
"position": {
"lat": 45.60713,
"lon": -73.62056
},
"bearing": 0,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159377",
"headsign": "439-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390240.json",
"shapeId": "4390240",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 482,
"ref": "31854",
"isActive": true,
"label": "31854",
"timestamp": 1711638402,
"tripId": "276159617",
"routeId": "67",
"startTime": "10:52:00",
"position": {
"lat": 45.55501,
"lon": -73.5861
},
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159617",
"headsign": "67-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "67",
"routeLongName": "Saint-Michel",
"shapeLink": "/storage/shapes/stm/670110.json",
"shapeId": "670110",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 483,
"ref": "31856",
"isActive": true,
"label": "31856",
"timestamp": 1711638407,
"tripId": "276159631",
"routeId": "67",
"startTime": "11:03:00",
"position": {
"lat": 45.54697,
"lon": -73.55946
},
"bearing": 0,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159631",
"headsign": "67-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "67",
"routeLongName": "Saint-Michel",
"shapeLink": "/storage/shapes/stm/670110.json",
"shapeId": "670110",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 484,
"ref": "31857",
"isActive": true,
"label": "31857",
"timestamp": 1711638396,
"tripId": "276159939",
"routeId": "121",
"startTime": "11:01: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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159939",
"headsign": "121-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "121",
"routeLongName": "Sauvé / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/1210245.json",
"shapeId": "1210245",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 485,
"ref": "31858",
"isActive": true,
"label": "31858",
"timestamp": 1711638395,
"tripId": "275102023",
"routeId": "165",
"startTime": "10:25:00",
"position": {
"lat": 45.4955,
"lon": -73.57883
},
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "275102023",
"headsign": "165-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "165",
"routeLongName": "Côte-des-Neiges",
"shapeLink": "/storage/shapes/stm/1650117.json",
"shapeId": "1650117",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 492,
"ref": "32012",
"isActive": true,
"label": "32012",
"timestamp": 1711638391,
"tripId": "276174507",
"routeId": "161",
"startTime": "10:56:00",
"position": {
"lat": 45.47947,
"lon": -73.6493
},
"bearing": 33,
"speed": 45,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174507",
"headsign": "161-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "161",
"routeLongName": "Van Horne",
"shapeLink": "/storage/shapes/stm/1610137.json",
"shapeId": "1610137",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 497,
"ref": "32027",
"isActive": true,
"label": "32027",
"timestamp": 1711638391,
"tripId": "276174790",
"routeId": "129",
"startTime": "10:51:00",
"position": {
"lat": 45.51036,
"lon": -73.57557
},
"bearing": 305,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174790",
"headsign": "129-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "129",
"routeLongName": "Côte-Sainte-Catherine",
"shapeLink": "/storage/shapes/stm/1290220.json",
"shapeId": "1290220",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 501,
"ref": "32805",
"isActive": true,
"label": "32805",
"timestamp": 1711638405,
"tripId": "276160006",
"routeId": "121",
"startTime": "10:52:00",
"position": {
"lat": 45.51406,
"lon": -73.6829
},
"bearing": 41,
"speed": 10,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276160006",
"headsign": "121-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "121",
"routeLongName": "Sauvé / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/1210266.json",
"shapeId": "1210266",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 506,
"ref": "33803",
"isActive": true,
"label": "33803",
"timestamp": 1711638400,
"tripId": "275101989",
"routeId": "165",
"startTime": "10:55:00",
"position": {
"lat": 45.50043,
"lon": -73.63121
},
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275101989",
"headsign": "165-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "165",
"routeLongName": "Côte-des-Neiges",
"shapeLink": "/storage/shapes/stm/1650117.json",
"shapeId": "1650117",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 508,
"ref": "33809",
"isActive": true,
"label": "33809",
"timestamp": 1711638403,
"tripId": "275102138",
"routeId": "165",
"startTime": "10:35:00",
"position": {
"lat": 45.49461,
"lon": -73.59432
},
"bearing": 84,
"speed": 36,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275102138",
"headsign": "165-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "165",
"routeLongName": "Côte-des-Neiges",
"shapeLink": "/storage/shapes/stm/1650117.json",
"shapeId": "1650117",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 510,
"ref": "33814",
"isActive": true,
"label": "33814",
"timestamp": 1711638397,
"tripId": "275101892",
"routeId": "470",
"startTime": "10:40:00",
"position": {
"lat": 45.47491,
"lon": -73.83675
},
"bearing": 145,
"speed": 54,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275101892",
"headsign": "470-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "470",
"routeLongName": "Express Pierrefonds",
"shapeLink": "/storage/shapes/stm/4700247.json",
"shapeId": "4700247",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 514,
"ref": "33828",
"isActive": true,
"label": "33828",
"timestamp": 1711638404,
"tripId": "275101952",
"routeId": "165",
"startTime": "10:59:00",
"position": {
"lat": 45.49558,
"lon": -73.60103
},
"bearing": 268,
"speed": 27,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275101952",
"headsign": "165-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "165",
"routeLongName": "Côte-des-Neiges",
"shapeLink": "/storage/shapes/stm/1650125.json",
"shapeId": "1650125",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 517,
"ref": "33834",
"isActive": true,
"label": "33834",
"timestamp": 1711638394,
"tripId": "275101923",
"routeId": "165",
"startTime": "10:39:00",
"position": {
"lat": 45.50582,
"lon": -73.64235
},
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275101923",
"headsign": "165-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "165",
"routeLongName": "Côte-des-Neiges",
"shapeLink": "/storage/shapes/stm/1650125.json",
"shapeId": "1650125",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 518,
"ref": "33835",
"isActive": true,
"label": "33835",
"timestamp": 1711638397,
"tripId": "275102087",
"routeId": "165",
"startTime": "10:29:00",
"position": {
"lat": 45.50458,
"lon": -73.64037
},
"bearing": 311,
"speed": 63,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275102087",
"headsign": "165-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "165",
"routeLongName": "Côte-des-Neiges",
"shapeLink": "/storage/shapes/stm/1650125.json",
"shapeId": "1650125",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 522,
"ref": "36003",
"isActive": true,
"label": "36003",
"timestamp": 1711638388,
"tripId": "274627885",
"routeId": "141",
"startTime": "10:53:00",
"position": {
"lat": 45.61189,
"lon": -73.55566
},
"bearing": 202,
"speed": 21,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627885",
"headsign": "141-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": "/storage/shapes/stm/1410573.json",
"shapeId": "1410573",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 524,
"ref": "36008",
"isActive": true,
"label": "36008",
"timestamp": 1711638388,
"tripId": "274627721",
"routeId": "43",
"startTime": "10:42:00",
"position": {
"lat": 45.61756,
"lon": -73.61412
},
"bearing": 223,
"speed": 13,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627721",
"headsign": "43-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "43",
"routeLongName": "Monselet",
"shapeLink": "/storage/shapes/stm/430201.json",
"shapeId": "430201",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 542,
"ref": "37014",
"isActive": true,
"label": "37014",
"timestamp": 1711638407,
"tripId": "275099434",
"routeId": "105",
"startTime": "11:02:00",
"position": {
"lat": 45.47308,
"lon": -73.60547
},
"bearing": 225,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275099434",
"headsign": "105-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "105",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/1050147.json",
"shapeId": "1050147",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 552,
"ref": "37041",
"isActive": true,
"label": "37041",
"timestamp": 1711638397,
"tripId": "275098670",
"routeId": "100",
"startTime": "11:11:00",
"position": {
"lat": 45.54567,
"lon": -73.63886
},
"bearing": 213,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275098670",
"headsign": "100-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "100",
"routeLongName": "Crémazie",
"shapeLink": "/storage/shapes/stm/1000241.json",
"shapeId": "1000241",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 556,
"ref": "37055",
"isActive": true,
"label": "37055",
"timestamp": 1711638394,
"tripId": "275098716",
"routeId": "100",
"startTime": "10:37:00",
"position": {
"lat": 45.49735,
"lon": -73.65799
},
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275098716",
"headsign": "100-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "100",
"routeLongName": "Crémazie",
"shapeLink": "/storage/shapes/stm/1000239.json",
"shapeId": "1000239",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 557,
"ref": "37056",
"isActive": true,
"label": "37056",
"timestamp": 1711638389,
"tripId": "275098680",
"routeId": "100",
"startTime": "10:47:00",
"position": {
"lat": 45.50598,
"lon": -73.66929
},
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275098680",
"headsign": "100-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "100",
"routeLongName": "Crémazie",
"shapeLink": "/storage/shapes/stm/1000241.json",
"shapeId": "1000241",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 559,
"ref": "37062",
"isActive": true,
"label": "37062",
"timestamp": 1711638399,
"tripId": "275098430",
"routeId": "93",
"startTime": "10:44:00",
"position": {
"lat": 45.53077,
"lon": -73.62183
},
"bearing": 210,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275098430",
"headsign": "93-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "93",
"routeLongName": "Jean-Talon",
"shapeLink": "/storage/shapes/stm/930086.json",
"shapeId": "930086",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 560,
"ref": "37064",
"isActive": true,
"label": "37064",
"timestamp": 1711638395,
"tripId": "275098590",
"routeId": "100",
"startTime": "10:20:00",
"position": {
"lat": 45.47987,
"lon": -73.69515
},
"bearing": 119,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275098590",
"headsign": "100-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "100",
"routeLongName": "Crémazie",
"shapeLink": "/storage/shapes/stm/1000241.json",
"shapeId": "1000241",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 565,
"ref": "37077",
"isActive": true,
"label": "37077",
"timestamp": 1711638389,
"tripId": "275100292",
"routeId": "166",
"startTime": "11:02:00",
"position": {
"lat": 45.48349,
"lon": -73.63894
},
"bearing": 110,
"speed": 12,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275100292",
"headsign": "166-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "166",
"routeLongName": "Queen-Mary",
"shapeLink": "/storage/shapes/stm/1660191.json",
"shapeId": "1660191",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 568,
"ref": "37081",
"isActive": true,
"label": "37081",
"timestamp": 1711638388,
"tripId": "275099864",
"routeId": "128",
"startTime": "10:19:00",
"position": {
"lat": 45.50002,
"lon": -73.68276
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 54,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275099864",
"headsign": "128-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "128",
"routeLongName": "Saint-Laurent",
"shapeLink": "/storage/shapes/stm/1280146.json",
"shapeId": "1280146",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 569,
"ref": "37082",
"isActive": true,
"label": "37082",
"timestamp": 1711638407,
"tripId": "275099606",
"routeId": "119",
"startTime": "10:34:00",
"position": {
"lat": 45.49672,
"lon": -73.61769
},
"bearing": 208,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275099606",
"headsign": "119-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "119",
"routeLongName": "Rockland",
"shapeLink": "/storage/shapes/stm/1190072.json",
"shapeId": "1190072",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 574,
"ref": "37103",
"isActive": true,
"label": "37103",
"timestamp": 1711638403,
"tripId": "275101111",
"routeId": "485",
"startTime": "10:17:00",
"position": {
"lat": 45.45159,
"lon": -73.63136
},
"bearing": 46,
"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": 5,
"label": "Full"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275101111",
"headsign": "485-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "485",
"routeLongName": "Express Antoine-Faucon",
"shapeLink": "/storage/shapes/stm/4850082.json",
"shapeId": "4850082",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 576,
"ref": "38006",
"isActive": true,
"label": "38006",
"timestamp": 1711638404,
"tripId": "274738143",
"routeId": "777",
"startTime": "10:47:00",
"position": {
"lat": 45.50975,
"lon": -73.53172
},
"bearing": 16,
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274738143",
"headsign": "777-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "777",
"routeLongName": "Jean-Drapeau / Casino / Bonaventure",
"shapeLink": "/storage/shapes/stm/7770040.json",
"shapeId": "7770040",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 577,
"ref": "38007",
"isActive": true,
"label": "38007",
"timestamp": 1711638393,
"tripId": "274737565",
"routeId": "136",
"startTime": "11:10:00",
"position": {
"lat": 45.60075,
"lon": -73.61013
},
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737565",
"headsign": "136-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "136",
"routeLongName": "Viau",
"shapeLink": "/storage/shapes/stm/1360112.json",
"shapeId": "1360112",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 581,
"ref": "38019",
"isActive": true,
"label": "38019",
"timestamp": 1711638403,
"tripId": "274737158",
"routeId": "85",
"startTime": "11:09:00",
"position": {
"lat": 45.62045,
"lon": -73.55437
},
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737158",
"headsign": "85-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "85",
"routeLongName": "Hochelaga",
"shapeLink": "/storage/shapes/stm/850201.json",
"shapeId": "850201",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 582,
"ref": "38023",
"isActive": true,
"label": "38023",
"timestamp": 1711638406,
"tripId": "274737636",
"routeId": "15",
"startTime": "10:58:00",
"position": {
"lat": 45.51758,
"lon": -73.56359
},
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737636",
"headsign": "15-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "15",
"routeLongName": "Sainte-Catherine",
"shapeLink": "/storage/shapes/stm/150077.json",
"shapeId": "150077",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 586,
"ref": "38037",
"isActive": true,
"label": "38037",
"timestamp": 1711638401,
"tripId": "274736600",
"routeId": "24",
"startTime": "11:10: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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274736600",
"headsign": "24-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "24",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/240184.json",
"shapeId": "240184",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 588,
"ref": "38044",
"isActive": true,
"label": "38044",
"timestamp": 1711638400,
"tripId": "274241157",
"routeId": "201",
"startTime": "10:12:00",
"position": {
"lat": 45.4892,
"lon": -73.84637
},
"bearing": 143,
"speed": 6,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241157",
"headsign": "201-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "201",
"routeLongName": "Saint-Charles / Saint-Jean",
"shapeLink": "/storage/shapes/stm/2010205.json",
"shapeId": "2010205",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 590,
"ref": "38046",
"isActive": true,
"label": "38046",
"timestamp": 1711638404,
"tripId": "274241372",
"routeId": "202",
"startTime": "10:18:00",
"position": {
"lat": 45.44918,
"lon": -73.81786
},
"bearing": 343,
"speed": 18,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241372",
"headsign": "202-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "202",
"routeLongName": "Dawson",
"shapeLink": "/storage/shapes/stm/2020184.json",
"shapeId": "2020184",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 591,
"ref": "38047",
"isActive": true,
"label": "38047",
"timestamp": 1711638395,
"tripId": "274242122",
"routeId": "207",
"startTime": "11:04:00",
"position": {
"lat": 45.47117,
"lon": -73.83274
},
"bearing": 321,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242122",
"headsign": "207-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "207",
"routeLongName": "Jacques-Bizard",
"shapeLink": "/storage/shapes/stm/2070086.json",
"shapeId": "2070086",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 592,
"ref": "38049",
"isActive": true,
"label": "38049",
"timestamp": 1711638405,
"tripId": "274241962",
"routeId": "203",
"startTime": "10:46:00",
"position": {
"lat": 45.44693,
"lon": -73.80524
},
"bearing": 243,
"speed": 27,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241962",
"headsign": "203-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "203",
"routeLongName": "Carson",
"shapeLink": "/storage/shapes/stm/2030116.json",
"shapeId": "2030116",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 594,
"ref": "38053",
"isActive": true,
"label": "38053",
"timestamp": 1711638390,
"tripId": "274240313",
"routeId": "164",
"startTime": "10:26:00",
"position": {
"lat": 45.55202,
"lon": -73.66981
},
"bearing": 20,
"speed": 45,
"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": 5,
"label": "Full"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240313",
"headsign": "164-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "164",
"routeLongName": "Dudemaine",
"shapeLink": "/storage/shapes/stm/1640156.json",
"shapeId": "1640156",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 603,
"ref": "38074",
"isActive": true,
"label": "38074",
"timestamp": 1711638403,
"tripId": "274241558",
"routeId": "203",
"startTime": "11:04:00",
"position": {
"lat": 45.46745,
"lon": -73.82938
},
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241558",
"headsign": "203-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "203",
"routeLongName": "Carson",
"shapeLink": "/storage/shapes/stm/2030107.json",
"shapeId": "2030107",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 604,
"ref": "38076",
"isActive": true,
"label": "38076",
"timestamp": 1711638407,
"tripId": "274241609",
"routeId": "202",
"startTime": "10:44:00",
"position": {
"lat": 45.44086,
"lon": -73.76887
},
"bearing": 122,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241609",
"headsign": "202-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "202",
"routeLongName": "Dawson",
"shapeLink": "/storage/shapes/stm/2020182.json",
"shapeId": "2020182",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 605,
"ref": "38080",
"isActive": true,
"label": "38080",
"timestamp": 1711638393,
"tripId": "274242674",
"routeId": "217",
"startTime": "11:00:00",
"position": {
"lat": 45.45203,
"lon": -73.85847
},
"bearing": 146,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242674",
"headsign": "217-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "217",
"routeLongName": "Anse-à-l'Orme",
"shapeLink": "/storage/shapes/stm/2170105.json",
"shapeId": "2170105",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 608,
"ref": "38088",
"isActive": true,
"label": "38088",
"timestamp": 1711638391,
"tripId": "274737698",
"routeId": "150",
"startTime": "10:44:00",
"position": {
"lat": 45.49498,
"lon": -73.574
},
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737698",
"headsign": "150-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "150",
"routeLongName": "René-Lévesque",
"shapeLink": "/storage/shapes/stm/1500061.json",
"shapeId": "1500061",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 610,
"ref": "38090",
"isActive": true,
"label": "38090",
"timestamp": 1711638394,
"tripId": "274737552",
"routeId": "29",
"startTime": "10:41:00",
"position": {
"lat": 45.54239,
"lon": -73.54411
},
"bearing": 113,
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737552",
"headsign": "29-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "29",
"routeLongName": "Rachel",
"shapeLink": "/storage/shapes/stm/290081.json",
"shapeId": "290081",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 629,
"ref": "39032",
"isActive": true,
"label": "39032",
"timestamp": 1711638392,
"tripId": "274736690",
"routeId": "29",
"startTime": "10:48:00",
"position": {
"lat": 45.5218,
"lon": -73.57818
},
"bearing": 210,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274736690",
"headsign": "29-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "29",
"routeLongName": "Rachel",
"shapeLink": "/storage/shapes/stm/290083.json",
"shapeId": "290083",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 635,
"ref": "39043",
"isActive": true,
"label": "39043",
"timestamp": 1711638396,
"tripId": "274628949",
"routeId": "141",
"startTime": "10:50:00",
"position": {
"lat": 45.59188,
"lon": -73.57513
},
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274628949",
"headsign": "141-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": "/storage/shapes/stm/1410578.json",
"shapeId": "1410578",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 639,
"ref": "39049",
"isActive": true,
"label": "39049",
"timestamp": 1711638390,
"tripId": "274626411",
"routeId": "189",
"startTime": "10:42:00",
"position": {
"lat": 45.61482,
"lon": -73.50914
},
"bearing": 194,
"speed": 27,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274626411",
"headsign": "189-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "189",
"routeLongName": "Notre-Dame",
"shapeLink": "/storage/shapes/stm/1890204.json",
"shapeId": "1890204",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 652,
"ref": "39083",
"isActive": true,
"label": "39083",
"timestamp": 1711638398,
"tripId": "274627116",
"routeId": "449",
"startTime": "10:36:00",
"position": {
"lat": 45.65796,
"lon": -73.56536
},
"bearing": 49,
"speed": 14,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627116",
"headsign": "449-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "449",
"routeLongName": "Express Rivière-des-Prairies",
"shapeLink": "/storage/shapes/stm/4490191.json",
"shapeId": "4490191",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 653,
"ref": "39084",
"isActive": true,
"label": "39084",
"timestamp": 1711638400,
"tripId": "274626327",
"routeId": "449",
"startTime": "10:46:00",
"position": {
"lat": 45.63475,
"lon": -73.5931
},
"bearing": 141,
"speed": 14,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274626327",
"headsign": "449-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "449",
"routeLongName": "Express Rivière-des-Prairies",
"shapeLink": "/storage/shapes/stm/4490189.json",
"shapeId": "4490189",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 657,
"ref": "39097",
"isActive": true,
"label": "39097",
"timestamp": 1711638390,
"tripId": "274627994",
"routeId": "432",
"startTime": "10:49:00",
"position": {
"lat": 45.59668,
"lon": -73.60873
},
"bearing": 304,
"speed": 45,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627994",
"headsign": "432-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "432",
"routeLongName": "Express Lacordaire",
"shapeLink": "/storage/shapes/stm/4320133.json",
"shapeId": "4320133",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 660,
"ref": "39101",
"isActive": true,
"label": "39101",
"timestamp": 1711638405,
"tripId": "274627013",
"routeId": "49",
"startTime": "10:45:00",
"position": {
"lat": 45.63443,
"lon": -73.58569
},
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627013",
"headsign": "49-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "49",
"routeLongName": "Maurice-Duplessis",
"shapeLink": "/storage/shapes/stm/490345.json",
"shapeId": "490345",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 661,
"ref": "39102",
"isActive": true,
"label": "39102",
"timestamp": 1711638402,
"tripId": "274627275",
"routeId": "192",
"startTime": "10:14:00",
"position": {
"lat": 45.61702,
"lon": -73.58012
},
"bearing": 29,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627275",
"headsign": "192-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "192",
"routeLongName": "Robert",
"shapeLink": "/storage/shapes/stm/1920150.json",
"shapeId": "1920150",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 662,
"ref": "39103",
"isActive": true,
"label": "39103",
"timestamp": 1711638396,
"tripId": "274628723",
"routeId": "43",
"startTime": "10:10:00",
"position": {
"lat": 45.58921,
"lon": -73.65114
},
"bearing": 14,
"speed": 36,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274628723",
"headsign": "43-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "43",
"routeLongName": "Monselet",
"shapeLink": "/storage/shapes/stm/430201.json",
"shapeId": "430201",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 664,
"ref": "39106",
"isActive": true,
"label": "39106",
"timestamp": 1711638394,
"tripId": "274627139",
"routeId": "449",
"startTime": "10:25:00",
"position": {
"lat": 45.58953,
"lon": -73.54053
},
"bearing": 315,
"speed": 6,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627139",
"headsign": "449-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "449",
"routeLongName": "Express Rivière-des-Prairies",
"shapeLink": "/storage/shapes/stm/4490189.json",
"shapeId": "4490189",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:36",
"meta": {}
},
{
"id": 825,
"ref": "29009",
"isActive": true,
"label": "29009",
"timestamp": 1711638396,
"tripId": "276174772",
"routeId": "30",
"startTime": "10:21:00",
"position": {
"lat": 45.55125,
"lon": -73.64256
},
"bearing": 291,
"speed": 3,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 37,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174772",
"headsign": "30-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "30",
"routeLongName": "Saint-Denis / Saint-Hubert",
"shapeLink": "/storage/shapes/stm/300086.json",
"shapeId": "300086",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:10",
"meta": {}
},
{
"id": 826,
"ref": "29123",
"isActive": true,
"label": "29123",
"timestamp": 1711638395,
"tripId": "273973696",
"routeId": "405",
"startTime": "10:31:00",
"position": {
"lat": 45.44717,
"lon": -73.67464
},
"bearing": 91,
"speed": 64,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973696",
"headsign": "405-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "405",
"routeLongName": "Express Bord-du-Lac",
"shapeLink": "/storage/shapes/stm/4050077.json",
"shapeId": "4050077",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:11",
"meta": {}
},
{
"id": 830,
"ref": "29856",
"isActive": true,
"label": "29856",
"timestamp": 1711638403,
"tripId": "276159298",
"routeId": "439",
"startTime": "10:46:00",
"position": {
"lat": 45.57787,
"lon": -73.61729
},
"bearing": 121,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159298",
"headsign": "439-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390239.json",
"shapeId": "4390239",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:13",
"meta": {}
},
{
"id": 831,
"ref": "30143",
"isActive": true,
"label": "30143",
"timestamp": 1711638387,
"tripId": "274242315",
"routeId": "209",
"startTime": "10:39:00",
"position": {
"lat": 45.45224,
"lon": -73.78185
},
"bearing": 171,
"speed": 63,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242315",
"headsign": "209-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "209",
"routeLongName": "Des Sources",
"shapeLink": "/storage/shapes/stm/2090078.json",
"shapeId": "2090078",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:14",
"meta": {}
},
{
"id": 835,
"ref": "30870",
"isActive": true,
"label": "30870",
"timestamp": 1711638395,
"tripId": "276159677",
"routeId": "67",
"startTime": "10:17:00",
"position": {
"lat": 45.58385,
"lon": -73.65009
},
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159677",
"headsign": "67-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "67",
"routeLongName": "Saint-Michel",
"shapeLink": "/storage/shapes/stm/670110.json",
"shapeId": "670110",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:17",
"meta": {}
},
{
"id": 836,
"ref": "31065",
"isActive": true,
"label": "31065",
"timestamp": 1711638402,
"tripId": "274628753",
"routeId": "40",
"startTime": "10:41:00",
"position": {
"lat": 45.62558,
"lon": -73.5813
},
"bearing": 226,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274628753",
"headsign": "40-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "40",
"routeLongName": "Henri-Bourassa-Est",
"shapeLink": "/storage/shapes/stm/400083.json",
"shapeId": "400083",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:18",
"meta": {}
},
{
"id": 848,
"ref": "36016",
"isActive": true,
"label": "36016",
"timestamp": 1711638400,
"tripId": "274626279",
"routeId": "86",
"startTime": "10:30:00",
"position": {
"lat": 45.64455,
"lon": -73.51898
},
"bearing": 99,
"speed": 38,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274626279",
"headsign": "86-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "86",
"routeLongName": "Pointe-aux-Trembles",
"shapeLink": "/storage/shapes/stm/860187.json",
"shapeId": "860187",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:24",
"meta": {}
},
{
"id": 851,
"ref": "37012",
"isActive": true,
"label": "37012",
"timestamp": 1711638390,
"tripId": "275099991",
"routeId": "175",
"startTime": "10:40:00",
"position": {
"lat": 45.49914,
"lon": -73.68085
},
"bearing": 312,
"speed": 38,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275099991",
"headsign": "175-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "175",
"routeLongName": "Griffith / Saint-François",
"shapeLink": "/storage/shapes/stm/1750105.json",
"shapeId": "1750105",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:25",
"meta": {}
},
{
"id": 852,
"ref": "37018",
"isActive": true,
"label": "37018",
"timestamp": 1711638395,
"tripId": "275098324",
"routeId": "16",
"startTime": "10:49:00",
"position": {
"lat": 45.50736,
"lon": -73.66127
},
"bearing": 113,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275098324",
"headsign": "16-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "16",
"routeLongName": "Graham",
"shapeLink": "/storage/shapes/stm/160085.json",
"shapeId": "160085",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:25",
"meta": {}
},
{
"id": 853,
"ref": "37042",
"isActive": true,
"label": "37042",
"timestamp": 1711638401,
"tripId": "275100780",
"routeId": "171",
"startTime": "10:32:00",
"position": {
"lat": 45.55171,
"lon": -73.67
},
"bearing": 28,
"speed": 8,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275100780",
"headsign": "171-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "171",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/1710198.json",
"shapeId": "1710198",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:25",
"meta": {}
},
{
"id": 854,
"ref": "37045",
"isActive": true,
"label": "37045",
"timestamp": 1711638407,
"tripId": "275098837",
"routeId": "162",
"startTime": "10:52:00",
"position": {
"lat": 45.45536,
"lon": -73.64117
},
"bearing": 209,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275098837",
"headsign": "162-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "162",
"routeLongName": "Westminster",
"shapeLink": "/storage/shapes/stm/1620099.json",
"shapeId": "1620099",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:25",
"meta": {}
},
{
"id": 856,
"ref": "37084",
"isActive": true,
"label": "37084",
"timestamp": 1711638402,
"tripId": "275099087",
"routeId": "105",
"startTime": "11:04:00",
"position": {
"lat": 45.46752,
"lon": -73.62173
},
"bearing": 63,
"speed": 27,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275099087",
"headsign": "105-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "105",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/1050144.json",
"shapeId": "1050144",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:25",
"meta": {}
},
{
"id": 857,
"ref": "38009",
"isActive": true,
"label": "38009",
"timestamp": 1711638397,
"tripId": "274737595",
"routeId": "136",
"startTime": "10:37:00",
"position": {
"lat": 45.58552,
"lon": -73.62045
},
"bearing": 302,
"speed": 45,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737595",
"headsign": "136-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "136",
"routeLongName": "Viau",
"shapeLink": "/storage/shapes/stm/1360111.json",
"shapeId": "1360111",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:25",
"meta": {}
},
{
"id": 858,
"ref": "38021",
"isActive": true,
"label": "38021",
"timestamp": 1711638404,
"tripId": "274736463",
"routeId": "22",
"startTime": "11:02:00",
"position": {
"lat": 45.56832,
"lon": -73.53472
},
"bearing": 117,
"speed": 18,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274736463",
"headsign": "22-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "22",
"routeLongName": "Notre-Dame",
"shapeLink": "/storage/shapes/stm/220075.json",
"shapeId": "220075",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:26",
"meta": {}
},
{
"id": 859,
"ref": "38022",
"isActive": true,
"label": "38022",
"timestamp": 1711638398,
"tripId": "274737127",
"routeId": "85",
"startTime": "10:45:00",
"position": {
"lat": 45.5783,
"lon": -73.53275
},
"bearing": 22,
"speed": 45,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737127",
"headsign": "85-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "85",
"routeLongName": "Hochelaga",
"shapeLink": "/storage/shapes/stm/850202.json",
"shapeId": "850202",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:26",
"meta": {}
},
{
"id": 860,
"ref": "38039",
"isActive": true,
"label": "38039",
"timestamp": 1711638407,
"tripId": "274241435",
"routeId": "201",
"startTime": "11:16:00",
"position": {
"lat": 45.46641,
"lon": -73.83125
},
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241435",
"headsign": "201-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "201",
"routeLongName": "Saint-Charles / Saint-Jean",
"shapeLink": "/storage/shapes/stm/2010205.json",
"shapeId": "2010205",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:26",
"meta": {}
},
{
"id": 1048,
"ref": "36013",
"isActive": true,
"label": "36013",
"timestamp": 1711638401,
"tripId": "274628449",
"routeId": "141",
"startTime": "10:24:00",
"position": {
"lat": 45.56985,
"lon": -73.58847
},
"bearing": 210,
"speed": 38,
"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": 5,
"label": "Full"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274628449",
"headsign": "141-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": "/storage/shapes/stm/1410573.json",
"shapeId": "1410573",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 01:19:10",
"meta": {}
},
{
"id": 1110,
"ref": "27534",
"isActive": true,
"label": "27534",
"timestamp": 1711638396,
"tripId": "273972746",
"routeId": "107",
"startTime": "10:22:00",
"position": {
"lat": 45.45247,
"lon": -73.57228
},
"bearing": 180,
"speed": 25,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972746",
"headsign": "107-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "107",
"routeLongName": "Verdun",
"shapeLink": "/storage/shapes/stm/1070130.json",
"shapeId": "1070130",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 03:00:05",
"meta": {}
},
{
"id": 1114,
"ref": "39039",
"isActive": true,
"label": "39039",
"timestamp": 1711638403,
"tripId": "274737972",
"routeId": "715",
"startTime": "11:11:00",
"position": {
"lat": 45.51489,
"lon": -73.56019
},
"bearing": 306,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737972",
"headsign": "715-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "715",
"routeLongName": "Vieux-Montréal / Vieux-Port",
"shapeLink": "/storage/shapes/stm/7150051.json",
"shapeId": "7150051",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 03:00:25",
"meta": {}
},
{
"id": 1134,
"ref": "29100",
"isActive": true,
"label": "29100",
"timestamp": 1711638404,
"tripId": "273972874",
"routeId": "90",
"startTime": "10:50:00",
"position": {
"lat": 45.44536,
"lon": -73.64539
},
"bearing": 51,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972874",
"headsign": "90-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "90",
"routeLongName": "Saint-Jacques",
"shapeLink": "/storage/shapes/stm/900252.json",
"shapeId": "900252",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 04:05:06",
"meta": {}
},
{
"id": 1135,
"ref": "31127",
"isActive": true,
"label": "31127",
"timestamp": 1711638405,
"tripId": "276157535",
"routeId": "140",
"startTime": "10:31:00",
"position": {
"lat": 45.60239,
"lon": -73.63208
},
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157535",
"headsign": "140-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "140",
"routeLongName": "Fleury",
"shapeLink": "/storage/shapes/stm/1400133.json",
"shapeId": "1400133",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 04:05:14",
"meta": {}
},
{
"id": 1136,
"ref": "39013",
"isActive": true,
"label": "39013",
"timestamp": 1711638407,
"tripId": "275102891",
"routeId": "747",
"startTime": "10:40:00",
"position": {
"lat": 45.50169,
"lon": -73.56743
},
"bearing": 29,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275102891",
"headsign": "747-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "747",
"routeLongName": "YUL Aéroport / Centre-Ville",
"shapeLink": "/storage/shapes/stm/7471231.json",
"shapeId": "7471231",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 04:05:20",
"meta": {}
},
{
"id": 1137,
"ref": "30023",
"isActive": true,
"label": "30023",
"timestamp": 1711638398,
"tripId": "275099882",
"routeId": "128",
"startTime": "11:00:00",
"position": {
"lat": 45.51149,
"lon": -73.66602
},
"bearing": 202,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275099882",
"headsign": "128-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "128",
"routeLongName": "Saint-Laurent",
"shapeLink": "/storage/shapes/stm/1280151.json",
"shapeId": "1280151",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 04:15:06",
"meta": {}
},
{
"id": 1139,
"ref": "31210",
"isActive": true,
"label": "31210",
"timestamp": 1711638397,
"tripId": "276157444",
"routeId": "139",
"startTime": "10:32:00",
"position": {
"lat": 45.5786,
"lon": -73.61852
},
"bearing": 302,
"speed": 27,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157444",
"headsign": "139-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "139",
"routeLongName": "Pie-IX",
"shapeLink": "/storage/shapes/stm/1394406.json",
"shapeId": "1394406",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 04:30:12",
"meta": {}
},
{
"id": 1155,
"ref": "29134",
"isActive": true,
"label": "29134",
"timestamp": 1711638407,
"tripId": "273970394",
"routeId": "63",
"startTime": "10:57:00",
"position": {
"lat": 45.47873,
"lon": -73.5961
},
"bearing": 218,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970394",
"headsign": "63-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "63",
"routeLongName": "Girouard",
"shapeLink": "/storage/shapes/stm/630364.json",
"shapeId": "630364",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 09:35:04",
"meta": {}
},
{
"id": 1158,
"ref": "39105",
"isActive": true,
"label": "39105",
"timestamp": 1711638388,
"tripId": "274626481",
"routeId": "33",
"startTime": "10:26:00",
"position": {
"lat": 45.59158,
"lon": -73.5733
},
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274626481",
"headsign": "33-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": "/storage/shapes/stm/330282.json",
"shapeId": "330282",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 09:40:04",
"meta": {}
},
{
"id": 1163,
"ref": "37036",
"isActive": true,
"label": "37036",
"timestamp": 1711638388,
"tripId": "275100328",
"routeId": "166",
"startTime": "11:19:00",
"position": {
"lat": 45.49587,
"lon": -73.57972
},
"bearing": 305,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275100328",
"headsign": "166-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "166",
"routeLongName": "Queen-Mary",
"shapeLink": "/storage/shapes/stm/1660192.json",
"shapeId": "1660192",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 09:45:04",
"meta": {}
},
{
"id": 1186,
"ref": "31113",
"isActive": true,
"label": "31113",
"timestamp": 1711638403,
"tripId": "276157997",
"routeId": "193",
"startTime": "10:40:00",
"position": {
"lat": 45.56192,
"lon": -73.61122
},
"bearing": 34,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157997",
"headsign": "193-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "193",
"routeLongName": "Jarry",
"shapeLink": "/storage/shapes/stm/1930134.json",
"shapeId": "1930134",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 09:55:06",
"meta": {}
},
{
"id": 1187,
"ref": "31115",
"isActive": true,
"label": "31115",
"timestamp": 1711638397,
"tripId": "274736506",
"routeId": "22",
"startTime": "11:00:00",
"position": {
"lat": 45.59233,
"lon": -73.51042
},
"bearing": 164,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274736506",
"headsign": "22-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "22",
"routeLongName": "Notre-Dame",
"shapeLink": "/storage/shapes/stm/220074.json",
"shapeId": "220074",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 09:55:06",
"meta": {}
},
{
"id": 1188,
"ref": "37013",
"isActive": true,
"label": "37013",
"timestamp": 1711638391,
"tripId": "275099579",
"routeId": "119",
"startTime": "11:02:00",
"position": {
"lat": 45.51552,
"lon": -73.6445
},
"bearing": 199,
"speed": 28,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275099579",
"headsign": "119-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "119",
"routeLongName": "Rockland",
"shapeLink": "/storage/shapes/stm/1190072.json",
"shapeId": "1190072",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 09:55:06",
"meta": {}
},
{
"id": 1189,
"ref": "37074",
"isActive": true,
"label": "37074",
"timestamp": 1711638377,
"tripId": "275098987",
"routeId": "162",
"startTime": "10:37:00",
"position": {
"lat": 45.47879,
"lon": -73.61989
},
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275098987",
"headsign": "162-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "162",
"routeLongName": "Westminster",
"shapeLink": "/storage/shapes/stm/1620101.json",
"shapeId": "1620101",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 09:55:06",
"meta": {}
},
{
"id": 1194,
"ref": "29836",
"isActive": true,
"label": "29836",
"timestamp": 1711638397,
"tripId": "276159955",
"routeId": "121",
"startTime": "11:03:00",
"position": {
"lat": 45.49939,
"lon": -73.70246
},
"bearing": 131,
"speed": 18,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159955",
"headsign": "121-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "121",
"routeLongName": "Sauvé / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/1210266.json",
"shapeId": "1210266",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 10:00:04",
"meta": {}
},
{
"id": 1196,
"ref": "30097",
"isActive": true,
"label": "30097",
"timestamp": 1711638394,
"tripId": "276174804",
"routeId": "129",
"startTime": "10:30:00",
"position": {
"lat": 45.50727,
"lon": -73.56902
},
"bearing": 125,
"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": 5,
"label": "Full"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174804",
"headsign": "129-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "129",
"routeLongName": "Côte-Sainte-Catherine",
"shapeLink": "/storage/shapes/stm/1290221.json",
"shapeId": "1290221",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 10:00:04",
"meta": {}
},
{
"id": 1198,
"ref": "30112",
"isActive": true,
"label": "30112",
"timestamp": 1711638165,
"tripId": "274626766",
"routeId": "28",
"startTime": "10:12:00",
"position": {
"lat": 45.61889,
"lon": -73.58196
},
"bearing": 296,
"speed": 27,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274626766",
"headsign": "28-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "28",
"routeLongName": "Honoré-Beaugrand",
"shapeLink": "/storage/shapes/stm/280922.json",
"shapeId": "280922",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 10:00:05",
"meta": {}
},
{
"id": 1204,
"ref": "31136",
"isActive": true,
"label": "31136",
"timestamp": 1711638389,
"tripId": "276157662",
"routeId": "146",
"startTime": "10:51:00",
"position": {
"lat": 45.54694,
"lon": -73.64224
},
"bearing": 113,
"speed": 6,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157662",
"headsign": "146-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "146",
"routeLongName": "Christophe-Colomb / Meilleur",
"shapeLink": "/storage/shapes/stm/1460138.json",
"shapeId": "1460138",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 10:00:06",
"meta": {}
},
{
"id": 1222,
"ref": "32003",
"isActive": true,
"label": "32003",
"timestamp": 1711638402,
"tripId": "276174900",
"routeId": "95",
"startTime": "11:01:00",
"position": {
"lat": 45.59115,
"lon": -73.56734
},
"bearing": 197,
"speed": 0,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174900",
"headsign": "95-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "95",
"routeLongName": "Bélanger",
"shapeLink": "/storage/shapes/stm/950100.json",
"shapeId": "950100",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 10:05:07",
"meta": {}
},
{
"id": 1227,
"ref": "39092",
"isActive": true,
"label": "39092",
"timestamp": 1711638390,
"tripId": "274627256",
"routeId": "44",
"startTime": "10:52:00",
"position": {
"lat": 45.60491,
"lon": -73.58216
},
"bearing": 280,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627256",
"headsign": "44-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "44",
"routeLongName": "Armand-Bombardier",
"shapeLink": "/storage/shapes/stm/440167.json",
"shapeId": "440167",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 10:05:07",
"meta": {}
},
{
"id": 1231,
"ref": "29854",
"isActive": true,
"label": "29854",
"timestamp": 1711638388,
"tripId": "276159800",
"routeId": "69",
"startTime": "10:27:00",
"position": {
"lat": 45.5862,
"lon": -73.64925
},
"bearing": 16,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 47,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159800",
"headsign": "69-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "69",
"routeLongName": "Gouin",
"shapeLink": "/storage/shapes/stm/690217.json",
"shapeId": "690217",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 10:10:02",
"meta": {}
},
{
"id": 1234,
"ref": "30110",
"isActive": true,
"label": "30110",
"timestamp": 1711638389,
"tripId": "274628554",
"routeId": "33",
"startTime": "10:12:00",
"position": {
"lat": 45.58259,
"lon": -73.5427
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 51,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274628554",
"headsign": "33-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": "/storage/shapes/stm/330282.json",
"shapeId": "330282",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 10:10:03",
"meta": {}
},
{
"id": 1238,
"ref": "36045",
"isActive": true,
"label": "36045",
"timestamp": 1711638401,
"tripId": "274627925",
"routeId": "18",
"startTime": "11:00:00",
"position": {
"lat": 45.59739,
"lon": -73.54937
},
"bearing": 202,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627925",
"headsign": "18-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "18",
"routeLongName": "Beaubien",
"shapeLink": "/storage/shapes/stm/180218.json",
"shapeId": "180218",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 10:10:05",
"meta": {}
},
{
"id": 1247,
"ref": "28020",
"isActive": true,
"label": "28020",
"timestamp": 1711638393,
"tripId": "274242434",
"routeId": "215",
"startTime": "11:00:00",
"position": {
"lat": 45.51845,
"lon": -73.70133
},
"bearing": 312,
"speed": 0,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242434",
"headsign": "215-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "215",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/2150155.json",
"shapeId": "2150155",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:15:04",
"meta": {}
},
{
"id": 1248,
"ref": "28056",
"isActive": true,
"label": "28056",
"timestamp": 1711638390,
"tripId": "273971902",
"routeId": "109",
"startTime": "11:10:00",
"position": {
"lat": 45.43393,
"lon": -73.59348
},
"bearing": 197,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273971902",
"headsign": "109-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "109",
"routeLongName": "Boulevard Shevchenko",
"shapeLink": "/storage/shapes/stm/1090087.json",
"shapeId": "1090087",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:15:04",
"meta": {}
},
{
"id": 1250,
"ref": "29004",
"isActive": true,
"label": "29004",
"timestamp": 1711638392,
"tripId": "276174518",
"routeId": "18",
"startTime": "10:51:00",
"position": {
"lat": 45.58458,
"lon": -73.56273
},
"bearing": 201,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174518",
"headsign": "18-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "18",
"routeLongName": "Beaubien",
"shapeLink": "/storage/shapes/stm/180218.json",
"shapeId": "180218",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 10:15:05",
"meta": {}
},
{
"id": 1260,
"ref": "31194",
"isActive": true,
"label": "31194",
"timestamp": 1711638394,
"tripId": "274737372",
"routeId": "125",
"startTime": "10:49:00",
"position": {
"lat": 45.54574,
"lon": -73.54443
},
"bearing": 204,
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737372",
"headsign": "125-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "125",
"routeLongName": "Ontario",
"shapeLink": "/storage/shapes/stm/1250179.json",
"shapeId": "1250179",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 10:15:09",
"meta": {}
},
{
"id": 1264,
"ref": "37049",
"isActive": true,
"label": "37049",
"timestamp": 1711638394,
"tripId": "275099713",
"routeId": "124",
"startTime": "10:31:00",
"position": {
"lat": 45.51722,
"lon": -73.66273
},
"bearing": 22,
"speed": 38,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275099713",
"headsign": "124-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "124",
"routeLongName": "Victoria",
"shapeLink": "/storage/shapes/stm/1240125.json",
"shapeId": "1240125",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 10:15:10",
"meta": {}
},
{
"id": 1296,
"ref": "29156",
"isActive": true,
"label": "29156",
"timestamp": 1711638389,
"tripId": "275102924",
"routeId": "747",
"startTime": "10:33:00",
"position": {
"lat": 45.44295,
"lon": -73.65861
},
"bearing": 291,
"speed": 82,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275102924",
"headsign": "747-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "747",
"routeLongName": "YUL Aéroport / Centre-Ville",
"shapeLink": "/storage/shapes/stm/7471232.json",
"shapeId": "7471232",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 10:25:03",
"meta": {}
},
{
"id": 1298,
"ref": "30008",
"isActive": true,
"label": "30008",
"timestamp": 1711638404,
"tripId": "275099642",
"routeId": "119",
"startTime": "10:54:00",
"position": {
"lat": 45.51825,
"lon": -73.61662
},
"bearing": 304,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275099642",
"headsign": "119-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "119",
"routeLongName": "Rockland",
"shapeLink": "/storage/shapes/stm/1190073.json",
"shapeId": "1190073",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 10:25:04",
"meta": {}
},
{
"id": 1300,
"ref": "31025",
"isActive": true,
"label": "31025",
"timestamp": 1711638388,
"tripId": "276174449",
"routeId": "99",
"startTime": "11:00:00",
"position": {
"lat": 45.54571,
"lon": -73.61964
},
"bearing": 0,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174449",
"headsign": "99-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "99",
"routeLongName": "Villeray",
"shapeLink": "/storage/shapes/stm/990063.json",
"shapeId": "990063",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 10:25:04",
"meta": {}
},
{
"id": 1306,
"ref": "31189",
"isActive": true,
"label": "31189",
"timestamp": 1711638391,
"tripId": "275101055",
"routeId": "485",
"startTime": "10:48:00",
"position": {
"lat": 45.46713,
"lon": -73.83349
},
"bearing": 145,
"speed": 34,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275101055",
"headsign": "485-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "485",
"routeLongName": "Express Antoine-Faucon",
"shapeLink": "/storage/shapes/stm/4850082.json",
"shapeId": "4850082",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 10:25:06",
"meta": {}
},
{
"id": 1307,
"ref": "31855",
"isActive": true,
"label": "31855",
"timestamp": 1711638401,
"tripId": "275101798",
"routeId": "80",
"startTime": "11:04:00",
"position": {
"lat": 45.50866,
"lon": -73.57189
},
"bearing": 303,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275101798",
"headsign": "80-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "80",
"routeLongName": "Avenue du Parc",
"shapeLink": "/storage/shapes/stm/800106.json",
"shapeId": "800106",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 10:25:07",
"meta": {}
},
{
"id": 1333,
"ref": "28074",
"isActive": true,
"label": "28074",
"timestamp": 1711638388,
"tripId": "274242378",
"routeId": "209",
"startTime": "10:27:00",
"position": {
"lat": 45.51054,
"lon": -73.81651
},
"bearing": 68,
"speed": 32,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242378",
"headsign": "209-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "209",
"routeLongName": "Des Sources",
"shapeLink": "/storage/shapes/stm/2090079.json",
"shapeId": "2090079",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:30:03",
"meta": {}
},
{
"id": 1334,
"ref": "29010",
"isActive": true,
"label": "29010",
"timestamp": 1711638395,
"tripId": "276174880",
"routeId": "95",
"startTime": "10:48:00",
"position": {
"lat": 45.56546,
"lon": -73.58688
},
"bearing": 31,
"speed": 14,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174880",
"headsign": "95-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "95",
"routeLongName": "Bélanger",
"shapeLink": "/storage/shapes/stm/950101.json",
"shapeId": "950101",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 10:30:03",
"meta": {}
},
{
"id": 1337,
"ref": "30176",
"isActive": true,
"label": "30176",
"timestamp": 1711638394,
"tripId": "274240906",
"routeId": "196",
"startTime": "10:12:00",
"position": {
"lat": 45.44467,
"lon": -73.71952
},
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240906",
"headsign": "196-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "196",
"routeLongName": "Parc-Industriel-Lachine",
"shapeLink": "/storage/shapes/stm/1960207.json",
"shapeId": "1960207",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:30:04",
"meta": {}
},
{
"id": 1338,
"ref": "30809",
"isActive": true,
"label": "30809",
"timestamp": 1711638390,
"tripId": "276159655",
"routeId": "67",
"startTime": "10:40:00",
"position": {
"lat": 45.56377,
"lon": -73.60938
},
"bearing": 298,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159655",
"headsign": "67-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "67",
"routeLongName": "Saint-Michel",
"shapeLink": "/storage/shapes/stm/670110.json",
"shapeId": "670110",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 10:30:04",
"meta": {}
},
{
"id": 1346,
"ref": "33830",
"isActive": true,
"label": "33830",
"timestamp": 1711638392,
"tripId": "275101829",
"routeId": "80",
"startTime": "11:03:00",
"position": {
"lat": 45.53325,
"lon": -73.64178
},
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275101829",
"headsign": "80-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "80",
"routeLongName": "Avenue du Parc",
"shapeLink": "/storage/shapes/stm/800107.json",
"shapeId": "800107",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 10:30:07",
"meta": {}
},
{
"id": 1365,
"ref": "28004",
"isActive": true,
"label": "28004",
"timestamp": 1711638400,
"tripId": "276158160",
"routeId": "197",
"startTime": "11:08:00",
"position": {
"lat": 45.53097,
"lon": -73.59761
},
"bearing": 34,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276158160",
"headsign": "197-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "197",
"routeLongName": "Rosemont",
"shapeLink": "/storage/shapes/stm/1970142.json",
"shapeId": "1970142",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 10:35:04",
"meta": {}
},
{
"id": 1366,
"ref": "29037",
"isActive": true,
"label": "29037",
"timestamp": 1711638388,
"tripId": "276174966",
"routeId": "55",
"startTime": "10:47:00",
"position": {
"lat": 45.53892,
"lon": -73.63162
},
"bearing": 113,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174966",
"headsign": "55-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "55",
"routeLongName": "Boulevard Saint-Laurent",
"shapeLink": "/storage/shapes/stm/550145.json",
"shapeId": "550145",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 10:35:06",
"meta": {}
},
{
"id": 1371,
"ref": "30813",
"isActive": true,
"label": "30813",
"timestamp": 1711638403,
"tripId": "276159820",
"routeId": "69",
"startTime": "10:47:00",
"position": {
"lat": 45.55197,
"lon": -73.66984
},
"bearing": 14,
"speed": 24,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159820",
"headsign": "69-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "69",
"routeLongName": "Gouin",
"shapeLink": "/storage/shapes/stm/690217.json",
"shapeId": "690217",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 10:35:09",
"meta": {}
},
{
"id": 1377,
"ref": "37005",
"isActive": true,
"label": "37005",
"timestamp": 1711638401,
"tripId": "275099299",
"routeId": "105",
"startTime": "11:05:00",
"position": {
"lat": 45.45564,
"lon": -73.64095
},
"bearing": 30,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275099299",
"headsign": "105-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "105",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/1050144.json",
"shapeId": "1050144",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 10:35:12",
"meta": {}
},
{
"id": 1378,
"ref": "38098",
"isActive": true,
"label": "38098",
"timestamp": 1711638404,
"tripId": "274738023",
"routeId": "777",
"startTime": "11:07:00",
"position": {
"lat": 45.49916,
"lon": -73.56652
},
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274738023",
"headsign": "777-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "777",
"routeLongName": "Jean-Drapeau / Casino / Bonaventure",
"shapeLink": "/storage/shapes/stm/7770040.json",
"shapeId": "7770040",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 10:35:12",
"meta": {}
},
{
"id": 1404,
"ref": "33805",
"isActive": true,
"label": "33805",
"timestamp": 1711638396,
"tripId": "275101705",
"routeId": "80",
"startTime": "10:48:00",
"position": {
"lat": 45.52375,
"lon": -73.60566
},
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275101705",
"headsign": "80-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "80",
"routeLongName": "Avenue du Parc",
"shapeLink": "/storage/shapes/stm/800107.json",
"shapeId": "800107",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 10:40:11",
"meta": {}
},
{
"id": 1408,
"ref": "38054",
"isActive": true,
"label": "38054",
"timestamp": 1711638405,
"tripId": "274239676",
"routeId": "68",
"startTime": "10:41:00",
"position": {
"lat": 45.50048,
"lon": -73.83852
},
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274239676",
"headsign": "68-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "68",
"routeLongName": "Pierrefonds",
"shapeLink": "/storage/shapes/stm/680405.json",
"shapeId": "680405",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:40:12",
"meta": {}
},
{
"id": 1427,
"ref": "29117",
"isActive": true,
"label": "29117",
"timestamp": 1711638391,
"tripId": "273970989",
"routeId": "195",
"startTime": "11:07:00",
"position": {
"lat": 45.44836,
"lon": -73.74234
},
"bearing": 202,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970989",
"headsign": "195-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "195",
"routeLongName": "Sherbrooke / Notre-Dame",
"shapeLink": "/storage/shapes/stm/1950168.json",
"shapeId": "1950168",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:45:06",
"meta": {}
},
{
"id": 1441,
"ref": "31150",
"isActive": true,
"label": "31150",
"timestamp": 1711638402,
"tripId": "274736760",
"routeId": "24",
"startTime": "11:14:00",
"position": {
"lat": 45.47975,
"lon": -73.6196
},
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274736760",
"headsign": "24-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "24",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/240183.json",
"shapeId": "240183",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 10:45:11",
"meta": {}
},
{
"id": 1480,
"ref": "31035",
"isActive": true,
"label": "31035",
"timestamp": 1711638399,
"tripId": "274239696",
"routeId": "68",
"startTime": "10:12:00",
"position": {
"lat": 45.53055,
"lon": -73.71803
},
"bearing": 45,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 75,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274239696",
"headsign": "68-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "68",
"routeLongName": "Pierrefonds",
"shapeLink": "/storage/shapes/stm/680405.json",
"shapeId": "680405",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:50:10",
"meta": {}
},
{
"id": 1486,
"ref": "31198",
"isActive": true,
"label": "31198",
"timestamp": 1711638407,
"tripId": "274736911",
"routeId": "34",
"startTime": "11:02:00",
"position": {
"lat": 45.52462,
"lon": -73.55057
},
"bearing": 33,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274736911",
"headsign": "34-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "34",
"routeLongName": "Sainte-Catherine",
"shapeLink": "/storage/shapes/stm/340095.json",
"shapeId": "340095",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 10:50:13",
"meta": {}
},
{
"id": 1489,
"ref": "38004",
"isActive": true,
"label": "38004",
"timestamp": 1711638398,
"tripId": "274736527",
"routeId": "24",
"startTime": "10:21:00",
"position": {
"lat": 45.48545,
"lon": -73.59602
},
"bearing": 218,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274736527",
"headsign": "24-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "24",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/240184.json",
"shapeId": "240184",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 10:50:14",
"meta": {}
},
{
"id": 1496,
"ref": "27527",
"isActive": true,
"label": "27527",
"timestamp": 1711638405,
"tripId": "273970218",
"routeId": "61",
"startTime": "10:36:00",
"position": {
"lat": 45.50228,
"lon": -73.56794
},
"bearing": 306,
"speed": 6,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970218",
"headsign": "61-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "61",
"routeLongName": "Wellington",
"shapeLink": "/storage/shapes/stm/610108.json",
"shapeId": "610108",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:55:02",
"meta": {}
},
{
"id": 1502,
"ref": "30186",
"isActive": true,
"label": "30186",
"timestamp": 1711638403,
"tripId": "274626572",
"routeId": "33",
"startTime": "10:24:00",
"position": {
"lat": 45.60745,
"lon": -73.61745
},
"bearing": 65,
"speed": 5,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274626572",
"headsign": "33-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": "/storage/shapes/stm/330281.json",
"shapeId": "330281",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 10:55:07",
"meta": {}
},
{
"id": 1515,
"ref": "31801",
"isActive": true,
"label": "31801",
"timestamp": 1711638397,
"tripId": "275101766",
"routeId": "80",
"startTime": "10:49:00",
"position": {
"lat": 45.5256,
"lon": -73.60986
},
"bearing": 0,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275101766",
"headsign": "80-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "80",
"routeLongName": "Avenue du Parc",
"shapeLink": "/storage/shapes/stm/800106.json",
"shapeId": "800106",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 10:55:13",
"meta": {}
},
{
"id": 1542,
"ref": "30173",
"isActive": true,
"label": "30173",
"timestamp": 1711638400,
"tripId": "274239369",
"routeId": "17",
"startTime": "11:07:00",
"position": {
"lat": 45.51335,
"lon": -73.68147
},
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274239369",
"headsign": "17-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "17",
"routeLongName": "Décarie",
"shapeLink": "/storage/shapes/stm/170093.json",
"shapeId": "170093",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:00:09",
"meta": {}
},
{
"id": 1546,
"ref": "30863",
"isActive": true,
"label": "30863",
"timestamp": 1711638407,
"tripId": "276159967",
"routeId": "121",
"startTime": "10:28:00",
"position": {
"lat": 45.55282,
"lon": -73.65504
},
"bearing": 25,
"speed": 26,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159967",
"headsign": "121-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "121",
"routeLongName": "Sauvé / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/1210266.json",
"shapeId": "1210266",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 11:00:11",
"meta": {}
},
{
"id": 1557,
"ref": "39072",
"isActive": true,
"label": "39072",
"timestamp": 1711638400,
"tripId": "274627060",
"routeId": "49",
"startTime": "10:28:00",
"position": {
"lat": 45.6153,
"lon": -73.63021
},
"bearing": 197,
"speed": 9,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627060",
"headsign": "49-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "49",
"routeLongName": "Maurice-Duplessis",
"shapeLink": "/storage/shapes/stm/490345.json",
"shapeId": "490345",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 11:00:19",
"meta": {}
},
{
"id": 1595,
"ref": "31121",
"isActive": true,
"label": "31121",
"timestamp": 1711638399,
"tripId": "274737489",
"routeId": "136",
"startTime": "10:50:00",
"position": {
"lat": 45.57763,
"lon": -73.59746
},
"bearing": 0,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737489",
"headsign": "136-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "136",
"routeLongName": "Viau",
"shapeLink": "/storage/shapes/stm/1360112.json",
"shapeId": "1360112",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 11:05:16",
"meta": {}
},
{
"id": 1600,
"ref": "38020",
"isActive": true,
"label": "38020",
"timestamp": 1711638404,
"tripId": "274736748",
"routeId": "24",
"startTime": "10:42:00",
"position": {
"lat": 45.50168,
"lon": -73.57674
},
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274736748",
"headsign": "24-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "24",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/240183.json",
"shapeId": "240183",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 11:05:20",
"meta": {}
},
{
"id": 1610,
"ref": "29039",
"isActive": true,
"label": "29039",
"timestamp": 1711638393,
"tripId": "274240057",
"routeId": "72",
"startTime": "10:14:00",
"position": {
"lat": 45.51483,
"lon": -73.68355
},
"bearing": 311,
"speed": 6,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240057",
"headsign": "72-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": "/storage/shapes/stm/720169.json",
"shapeId": "720169",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:10:07",
"meta": {}
},
{
"id": 1612,
"ref": "29058",
"isActive": true,
"label": "29058",
"timestamp": 1711638396,
"tripId": "276174005",
"routeId": "161",
"startTime": "10:48:00",
"position": {
"lat": 45.51159,
"lon": -73.62279
},
"bearing": 216,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174005",
"headsign": "161-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "161",
"routeLongName": "Van Horne",
"shapeLink": "/storage/shapes/stm/1610134.json",
"shapeId": "1610134",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 11:10:07",
"meta": {}
},
{
"id": 1620,
"ref": "37087",
"isActive": true,
"label": "37087",
"timestamp": 1711638405,
"tripId": "275099757",
"routeId": "124",
"startTime": "10:46:00",
"position": {
"lat": 45.49328,
"lon": -73.63519
},
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275099757",
"headsign": "124-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "124",
"routeLongName": "Victoria",
"shapeLink": "/storage/shapes/stm/1240123.json",
"shapeId": "1240123",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 11:10:19",
"meta": {}
},
{
"id": 1625,
"ref": "39006",
"isActive": true,
"label": "39006",
"timestamp": 1711638396,
"tripId": "275102699",
"routeId": "747",
"startTime": "10:43:00",
"position": {
"lat": 45.48254,
"lon": -73.57888
},
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275102699",
"headsign": "747-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "747",
"routeLongName": "YUL Aéroport / Centre-Ville",
"shapeLink": "/storage/shapes/stm/7471232.json",
"shapeId": "7471232",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 11:10:20",
"meta": {}
},
{
"id": 1641,
"ref": "29050",
"isActive": true,
"label": "29050",
"timestamp": 1711638398,
"tripId": "276174276",
"routeId": "18",
"startTime": "11:01:00",
"position": {
"lat": 45.53554,
"lon": -73.60468
},
"bearing": 43,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 6,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174276",
"headsign": "18-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "18",
"routeLongName": "Beaubien",
"shapeLink": "/storage/shapes/stm/180220.json",
"shapeId": "180220",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 11:15:10",
"meta": {}
},
{
"id": 1656,
"ref": "37032",
"isActive": true,
"label": "37032",
"timestamp": 1711638390,
"tripId": "275098349",
"routeId": "16",
"startTime": "11:12:00",
"position": {
"lat": 45.53057,
"lon": -73.62435
},
"bearing": 23,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275098349",
"headsign": "16-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "16",
"routeLongName": "Graham",
"shapeLink": "/storage/shapes/stm/160088.json",
"shapeId": "160088",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 11:15:22",
"meta": {}
},
{
"id": 1674,
"ref": "28094",
"isActive": true,
"label": "28094",
"timestamp": 1711638154,
"tripId": "273970481",
"routeId": "71",
"startTime": "10:41:00",
"position": {
"lat": 45.46785,
"lon": -73.56766
},
"bearing": 25,
"speed": 39,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970481",
"headsign": "71-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "71",
"routeLongName": "Du Centre",
"shapeLink": "/storage/shapes/stm/710077.json",
"shapeId": "710077",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:20:09",
"meta": {}
},
{
"id": 1679,
"ref": "29839",
"isActive": true,
"label": "29839",
"timestamp": 1711638400,
"tripId": "276159427",
"routeId": "439",
"startTime": "10:18:00",
"position": {
"lat": 45.55365,
"lon": -73.55185
},
"bearing": 114,
"speed": 6,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159427",
"headsign": "439-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390240.json",
"shapeId": "4390240",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 11:20:13",
"meta": {}
},
{
"id": 1686,
"ref": "31094",
"isActive": true,
"label": "31094",
"timestamp": 1711638282,
"tripId": "274736627",
"routeId": "24",
"startTime": "10:11:00",
"position": {
"lat": 45.47908,
"lon": -73.61942
},
"bearing": 307,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274736627",
"headsign": "24-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "24",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/240184.json",
"shapeId": "240184",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 11:20:19",
"meta": {}
},
{
"id": 1688,
"ref": "31193",
"isActive": true,
"label": "31193",
"timestamp": 1711638396,
"tripId": "275100194",
"routeId": "162",
"startTime": "11:07:00",
"position": {
"lat": 45.47554,
"lon": -73.6619
},
"bearing": 208,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275100194",
"headsign": "162-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "162",
"routeLongName": "Westminster",
"shapeLink": "/storage/shapes/stm/1620101.json",
"shapeId": "1620101",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 11:20:22",
"meta": {}
},
{
"id": 1690,
"ref": "31821",
"isActive": true,
"label": "31821",
"timestamp": 1711638396,
"tripId": "276159904",
"routeId": "69",
"startTime": "10:30:00",
"position": {
"lat": 45.56774,
"lon": -73.65987
},
"bearing": 195,
"speed": 14,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159904",
"headsign": "69-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "69",
"routeLongName": "Gouin",
"shapeLink": "/storage/shapes/stm/690218.json",
"shapeId": "690218",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 11:20:23",
"meta": {}
},
{
"id": 1695,
"ref": "37017",
"isActive": true,
"label": "37017",
"timestamp": 1711638388,
"tripId": "275098302",
"routeId": "16",
"startTime": "10:41:00",
"position": {
"lat": 45.50768,
"lon": -73.68339
},
"bearing": 223,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275098302",
"headsign": "16-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "16",
"routeLongName": "Graham",
"shapeLink": "/storage/shapes/stm/160088.json",
"shapeId": "160088",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 11:20:24",
"meta": {}
},
{
"id": 1696,
"ref": "37022",
"isActive": true,
"label": "37022",
"timestamp": 1711638394,
"tripId": "275100247",
"routeId": "103",
"startTime": "10:57:00",
"position": {
"lat": 45.47499,
"lon": -73.64224
},
"bearing": 48,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275100247",
"headsign": "103-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "103",
"routeLongName": "Monkland",
"shapeLink": "/storage/shapes/stm/1030154.json",
"shapeId": "1030154",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 11:20:24",
"meta": {}
},
{
"id": 1721,
"ref": "31068",
"isActive": true,
"label": "31068",
"timestamp": 1711638389,
"tripId": "274626830",
"routeId": "187",
"startTime": "10:51:00",
"position": {
"lat": 45.64154,
"lon": -73.50048
},
"bearing": 23,
"speed": 10,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274626830",
"headsign": "187-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "187",
"routeLongName": "René-Lévesque",
"shapeLink": "/storage/shapes/stm/1870219.json",
"shapeId": "1870219",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 11:25:18",
"meta": {}
},
{
"id": 1739,
"ref": "28029",
"isActive": true,
"label": "28029",
"timestamp": 1711638396,
"tripId": "274243022",
"routeId": "174",
"startTime": "11:17:00",
"position": {
"lat": 45.51447,
"lon": -73.6832
},
"bearing": 327,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274243022",
"headsign": "174-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "174",
"routeLongName": "Côte-Vertu-Ouest",
"shapeLink": "/storage/shapes/stm/1740116.json",
"shapeId": "1740116",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:30:08",
"meta": {}
},
{
"id": 1745,
"ref": "29021",
"isActive": true,
"label": "29021",
"timestamp": 1711638404,
"tripId": "276173637",
"routeId": "55",
"startTime": "10:50:00",
"position": {
"lat": 45.51968,
"lon": -73.58542
},
"bearing": 303,
"speed": 14,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276173637",
"headsign": "55-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "55",
"routeLongName": "Boulevard Saint-Laurent",
"shapeLink": "/storage/shapes/stm/550146.json",
"shapeId": "550146",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 11:30:11",
"meta": {}
},
{
"id": 1762,
"ref": "37075",
"isActive": true,
"label": "37075",
"timestamp": 1711638396,
"tripId": "275099851",
"routeId": "128",
"startTime": "10:49:00",
"position": {
"lat": 45.51466,
"lon": -73.69227
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 18,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275099851",
"headsign": "128-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "128",
"routeLongName": "Saint-Laurent",
"shapeLink": "/storage/shapes/stm/1280146.json",
"shapeId": "1280146",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 11:30:26",
"meta": {}
},
{
"id": 1790,
"ref": "30116",
"isActive": true,
"label": "30116",
"timestamp": 1711638404,
"tripId": "274628417",
"routeId": "86",
"startTime": "11:01:00",
"position": {
"lat": 45.69031,
"lon": -73.49746
},
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274628417",
"headsign": "86-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "86",
"routeLongName": "Pointe-aux-Trembles",
"shapeLink": "/storage/shapes/stm/860187.json",
"shapeId": "860187",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 11:35:15",
"meta": {}
},
{
"id": 1794,
"ref": "30819",
"isActive": true,
"label": "30819",
"timestamp": 1711638393,
"tripId": "276159586",
"routeId": "67",
"startTime": "10:56:00",
"position": {
"lat": 45.57545,
"lon": -73.63537
},
"bearing": 123,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159586",
"headsign": "67-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "67",
"routeLongName": "Saint-Michel",
"shapeLink": "/storage/shapes/stm/670109.json",
"shapeId": "670109",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 11:35:18",
"meta": {}
},
{
"id": 1798,
"ref": "31143",
"isActive": true,
"label": "31143",
"timestamp": 1711638405,
"tripId": "276158110",
"routeId": "197",
"startTime": "10:52:00",
"position": {
"lat": 45.56094,
"lon": -73.57376
},
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276158110",
"headsign": "197-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "197",
"routeLongName": "Rosemont",
"shapeLink": "/storage/shapes/stm/1970141.json",
"shapeId": "1970141",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 11:35:22",
"meta": {}
},
{
"id": 1803,
"ref": "36042",
"isActive": true,
"label": "36042",
"timestamp": 1711638390,
"tripId": "274627857",
"routeId": "33",
"startTime": "10:40:00",
"position": {
"lat": 45.60178,
"lon": -73.59792
},
"bearing": 133,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627857",
"headsign": "33-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": "/storage/shapes/stm/330282.json",
"shapeId": "330282",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 11:35:26",
"meta": {}
},
{
"id": 1804,
"ref": "38014",
"isActive": true,
"label": "38014",
"timestamp": 1711638394,
"tripId": "274739013",
"routeId": "168",
"startTime": "10:51:00",
"position": {
"lat": 45.47094,
"lon": -73.53781
},
"bearing": 292,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274739013",
"headsign": "168-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "168",
"routeLongName": "Cité-du-Havre",
"shapeLink": "/storage/shapes/stm/1680163.json",
"shapeId": "1680163",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 11:35:27",
"meta": {}
},
{
"id": 1805,
"ref": "38096",
"isActive": true,
"label": "38096",
"timestamp": 1711638405,
"tripId": "274736706",
"routeId": "24",
"startTime": "10:31:00",
"position": {
"lat": 45.48917,
"lon": -73.59024
},
"bearing": 226,
"speed": 6,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274736706",
"headsign": "24-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "24",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/240184.json",
"shapeId": "240184",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 11:35:28",
"meta": {}
},
{
"id": 1837,
"ref": "31177",
"isActive": true,
"label": "31177",
"timestamp": 1711638388,
"tripId": "274737433",
"routeId": "131",
"startTime": "10:58:00",
"position": {
"lat": 45.57622,
"lon": -73.56776
},
"bearing": 293,
"speed": 15,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737433",
"headsign": "131-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "131",
"routeLongName": "De l'Assomption",
"shapeLink": "/storage/shapes/stm/1310094.json",
"shapeId": "1310094",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 11:40:44",
"meta": {}
},
{
"id": 1839,
"ref": "31181",
"isActive": true,
"label": "31181",
"timestamp": 1711638397,
"tripId": "274738985",
"routeId": "168",
"startTime": "11:00:00",
"position": {
"lat": 45.49895,
"lon": -73.56259
},
"bearing": 133,
"speed": 29,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274738985",
"headsign": "168-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "168",
"routeLongName": "Cité-du-Havre",
"shapeLink": "/storage/shapes/stm/1680164.json",
"shapeId": "1680164",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 11:40:44",
"meta": {}
},
{
"id": 1864,
"ref": "30163",
"isActive": true,
"label": "30163",
"timestamp": 1711638388,
"tripId": "274626751",
"routeId": "49",
"startTime": "10:57:00",
"position": {
"lat": 45.58038,
"lon": -73.6517
},
"bearing": 22,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274626751",
"headsign": "49-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "49",
"routeLongName": "Maurice-Duplessis",
"shapeLink": "/storage/shapes/stm/490344.json",
"shapeId": "490344",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 11:45:32",
"meta": {}
},
{
"id": 1873,
"ref": "36007",
"isActive": true,
"label": "36007",
"timestamp": 1711638405,
"tripId": "274626695",
"routeId": "32",
"startTime": "10:54:00",
"position": {
"lat": 45.57779,
"lon": -73.55727
},
"bearing": 289,
"speed": 14,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274626695",
"headsign": "32-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "32",
"routeLongName": "Lacordaire",
"shapeLink": "/storage/shapes/stm/320164.json",
"shapeId": "320164",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 11:45:50",
"meta": {}
},
{
"id": 1881,
"ref": "28022",
"isActive": true,
"label": "28022",
"timestamp": 1711638398,
"tripId": "274239978",
"routeId": "72",
"startTime": "10:42:00",
"position": {
"lat": 45.48094,
"lon": -73.76112
},
"bearing": 167,
"speed": 16,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274239978",
"headsign": "72-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": "/storage/shapes/stm/720169.json",
"shapeId": "720169",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:50:15",
"meta": {}
},
{
"id": 1883,
"ref": "28061",
"isActive": true,
"label": "28061",
"timestamp": 1711638397,
"tripId": "273973855",
"routeId": "420",
"startTime": "11:05:00",
"position": {
"lat": 45.45973,
"lon": -73.66122
},
"bearing": 60,
"speed": 26,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973855",
"headsign": "420-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "420",
"routeLongName": "Express Notre-Dame-de-Grâce",
"shapeLink": "/storage/shapes/stm/4200113.json",
"shapeId": "4200113",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:50:17",
"meta": {}
},
{
"id": 1896,
"ref": "30171",
"isActive": true,
"label": "30171",
"timestamp": 1711638390,
"tripId": "274243335",
"routeId": "968",
"startTime": "11:00:00",
"position": {
"lat": 45.49952,
"lon": -73.70137
},
"bearing": 221,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274243335",
"headsign": "968-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "968",
"routeLongName": "Trainbus Roxboro / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/9680027.json",
"shapeId": "9680027",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:50:33",
"meta": {}
},
{
"id": 1904,
"ref": "37107",
"isActive": true,
"label": "37107",
"timestamp": 1711638405,
"tripId": "275101093",
"routeId": "485",
"startTime": "10:35:00",
"position": {
"lat": 45.46299,
"lon": -73.8245
},
"bearing": 325,
"speed": 63,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275101093",
"headsign": "485-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "485",
"routeLongName": "Express Antoine-Faucon",
"shapeLink": "/storage/shapes/stm/4850080.json",
"shapeId": "4850080",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 11:50:52",
"meta": {}
},
{
"id": 1937,
"ref": "30808",
"isActive": true,
"label": "30808",
"timestamp": 1711638400,
"tripId": "276159525",
"routeId": "67",
"startTime": "10:21:00",
"position": {
"lat": 45.5477,
"lon": -73.5621
},
"bearing": 114,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159525",
"headsign": "67-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "67",
"routeLongName": "Saint-Michel",
"shapeLink": "/storage/shapes/stm/670109.json",
"shapeId": "670109",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 11:55:39",
"meta": {}
},
{
"id": 1969,
"ref": "28054",
"isActive": true,
"label": "28054",
"timestamp": 1711638404,
"tripId": "276157086",
"routeId": "48",
"startTime": "11:03:00",
"position": {
"lat": 45.57001,
"lon": -73.65845
},
"bearing": 20,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157086",
"headsign": "48-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": "/storage/shapes/stm/480414.json",
"shapeId": "480414",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 12:00:20",
"meta": {}
},
{
"id": 1982,
"ref": "38043",
"isActive": true,
"label": "38043",
"timestamp": 1711638398,
"tripId": "274241588",
"routeId": "208",
"startTime": "10:44:00",
"position": {
"lat": 45.49782,
"lon": -73.78518
},
"bearing": 236,
"speed": 18,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241588",
"headsign": "208-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "208",
"routeLongName": "Brunswick",
"shapeLink": "/storage/shapes/stm/2080104.json",
"shapeId": "2080104",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 12:01:00",
"meta": {}
},
{
"id": 1983,
"ref": "38059",
"isActive": true,
"label": "38059",
"timestamp": 1711638394,
"tripId": "274242456",
"routeId": "215",
"startTime": "11:01:00",
"position": {
"lat": 45.47238,
"lon": -73.81952
},
"bearing": 55,
"speed": 45,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242456",
"headsign": "215-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "215",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/2150156.json",
"shapeId": "2150156",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 12:01:01",
"meta": {}
},
{
"id": 1998,
"ref": "29122",
"isActive": true,
"label": "29122",
"timestamp": 1711638404,
"tripId": "273973669",
"routeId": "405",
"startTime": "10:54:00",
"position": {
"lat": 45.42242,
"lon": -73.87224
},
"bearing": 67,
"speed": 34,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973669",
"headsign": "405-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "405",
"routeLongName": "Express Bord-du-Lac",
"shapeLink": "/storage/shapes/stm/4050077.json",
"shapeId": "4050077",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 12:05:30",
"meta": {}
},
{
"id": 2000,
"ref": "30022",
"isActive": true,
"label": "30022",
"timestamp": 1711638403,
"tripId": "275099118",
"routeId": "105",
"startTime": "10:50:00",
"position": {
"lat": 45.45837,
"lon": -73.63821
},
"bearing": 220,
"speed": 32,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275099118",
"headsign": "105-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "105",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/1050147.json",
"shapeId": "1050147",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 12:05:34",
"meta": {}
},
{
"id": 2051,
"ref": "29023",
"isActive": true,
"label": "29023",
"timestamp": 1711638391,
"tripId": "276173888",
"routeId": "99",
"startTime": "11:00:00",
"position": {
"lat": 45.55999,
"lon": -73.60491
},
"bearing": 211,
"speed": 23,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276173888",
"headsign": "99-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "99",
"routeLongName": "Villeray",
"shapeLink": "/storage/shapes/stm/990064.json",
"shapeId": "990064",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 12:15:26",
"meta": {}
},
{
"id": 2070,
"ref": "28053",
"isActive": true,
"label": "28053",
"timestamp": 1711638399,
"tripId": "273974090",
"routeId": "495",
"startTime": "10:34:00",
"position": {
"lat": 45.4251,
"lon": -73.65855
},
"bearing": 314,
"speed": 18,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273974090",
"headsign": "495-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "495",
"routeLongName": "Express Lachine / LaSalle",
"shapeLink": "/storage/shapes/stm/4950131.json",
"shapeId": "4950131",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 12:20:23",
"meta": {}
},
{
"id": 2081,
"ref": "30204",
"isActive": true,
"label": "30204",
"timestamp": 1711638404,
"tripId": "276156964",
"routeId": "48",
"startTime": "10:20:00",
"position": {
"lat": 45.57084,
"lon": -73.6583
},
"bearing": 199,
"speed": 18,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276156964",
"headsign": "48-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": "/storage/shapes/stm/480411.json",
"shapeId": "480411",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 12:20:45",
"meta": {}
},
{
"id": 2083,
"ref": "31054",
"isActive": true,
"label": "31054",
"timestamp": 1711638388,
"tripId": "275100538",
"routeId": "171",
"startTime": "10:43:00",
"position": {
"lat": 45.51369,
"lon": -73.68359
},
"bearing": 0,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275100538",
"headsign": "171-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "171",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/1710224.json",
"shapeId": "1710224",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 12:20:53",
"meta": {}
},
{
"id": 2109,
"ref": "30241",
"isActive": true,
"label": "30241",
"timestamp": 1711638391,
"tripId": "274242293",
"routeId": "209",
"startTime": "11:00:00",
"position": {
"lat": 45.44801,
"lon": -73.74236
},
"bearing": 201,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242293",
"headsign": "209-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "209",
"routeLongName": "Des Sources",
"shapeLink": "/storage/shapes/stm/2090079.json",
"shapeId": "2090079",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 12:30:46",
"meta": {}
},
{
"id": 2143,
"ref": "30055",
"isActive": true,
"label": "30055",
"timestamp": 1711638390,
"tripId": "274849171",
"routeId": "51",
"startTime": "10:30:00",
"position": {
"lat": 45.50716,
"lon": -73.61533
},
"bearing": 33,
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274849171",
"headsign": "51-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": "/storage/shapes/stm/510185.json",
"shapeId": "510185",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 12:50:25",
"meta": {}
},
{
"id": 2146,
"ref": "32005",
"isActive": true,
"label": "32005",
"timestamp": 1711638396,
"tripId": "276174226",
"routeId": "144",
"startTime": "10:50:00",
"position": {
"lat": 45.49104,
"lon": -73.58744
},
"bearing": 127,
"speed": 45,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174226",
"headsign": "144-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "144",
"routeLongName": "Avenue des Pins",
"shapeLink": "/storage/shapes/stm/1440093.json",
"shapeId": "1440093",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 12:50:40",
"meta": {}
},
{
"id": 2150,
"ref": "37029",
"isActive": true,
"label": "37029",
"timestamp": 1711638400,
"tripId": "275099676",
"routeId": "124",
"startTime": "11:00:00",
"position": {
"lat": 45.48029,
"lon": -73.61124
},
"bearing": 37,
"speed": 18,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275099676",
"headsign": "124-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "124",
"routeLongName": "Victoria",
"shapeLink": "/storage/shapes/stm/1240125.json",
"shapeId": "1240125",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 12:50:40",
"meta": {}
},
{
"id": 2153,
"ref": "38048",
"isActive": true,
"label": "38048",
"timestamp": 1711638407,
"tripId": "274242154",
"routeId": "201",
"startTime": "10:44:00",
"position": {
"lat": 45.4291,
"lon": -73.82521
},
"bearing": 253,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242154",
"headsign": "201-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "201",
"routeLongName": "Saint-Charles / Saint-Jean",
"shapeLink": "/storage/shapes/stm/2010205.json",
"shapeId": "2010205",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 12:50:42",
"meta": {}
},
{
"id": 2157,
"ref": "39026",
"isActive": true,
"label": "39026",
"timestamp": 1711638405,
"tripId": "274739522",
"routeId": "176",
"startTime": "11:07:00",
"position": {
"lat": 45.44802,
"lon": -73.55489
},
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274739522",
"headsign": "176-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "176",
"routeLongName": "Berlioz",
"shapeLink": "/storage/shapes/stm/1760006.json",
"shapeId": "1760006",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 12:50:43",
"meta": {}
},
{
"id": 2158,
"ref": "39030",
"isActive": true,
"label": "39030",
"timestamp": 1711638407,
"tripId": "274737112",
"routeId": "85",
"startTime": "11:36:00",
"position": {
"lat": 45.62503,
"lon": -73.5517
},
"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": 3,
"label": "Congestion"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737112",
"headsign": "85-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "85",
"routeLongName": "Hochelaga",
"shapeLink": "/storage/shapes/stm/850201.json",
"shapeId": "850201",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 12:50:43",
"meta": {}
},
{
"id": 2162,
"ref": "39100",
"isActive": true,
"label": "39100",
"timestamp": 1711638284,
"tripId": "274626426",
"routeId": "192",
"startTime": "10:21:00",
"position": {
"lat": 45.54611,
"lon": -73.6385
},
"bearing": 212,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274626426",
"headsign": "192-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "192",
"routeLongName": "Robert",
"shapeLink": "/storage/shapes/stm/1920151.json",
"shapeId": "1920151",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 12:50:44",
"meta": {}
},
{
"id": 2163,
"ref": "39110",
"isActive": true,
"label": "39110",
"timestamp": 1711638389,
"tripId": "274627617",
"routeId": "189",
"startTime": "11:02:00",
"position": {
"lat": 45.69252,
"lon": -73.48848
},
"bearing": 190,
"speed": 27,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627617",
"headsign": "189-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "189",
"routeLongName": "Notre-Dame",
"shapeLink": "/storage/shapes/stm/1890204.json",
"shapeId": "1890204",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 12:50:44",
"meta": {}
},
{
"id": 2167,
"ref": "29061",
"isActive": true,
"label": "29061",
"timestamp": 1711638399,
"tripId": "276174207",
"routeId": "55",
"startTime": "10:30:00",
"position": {
"lat": 45.52651,
"lon": -73.60402
},
"bearing": 124,
"speed": 33,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174207",
"headsign": "55-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "55",
"routeLongName": "Boulevard Saint-Laurent",
"shapeLink": "/storage/shapes/stm/550145.json",
"shapeId": "550145",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 12:55:32",
"meta": {}
},
{
"id": 2170,
"ref": "31076",
"isActive": true,
"label": "31076",
"timestamp": 1711638389,
"tripId": "276174666",
"routeId": "161",
"startTime": "11:13:00",
"position": {
"lat": 45.46262,
"lon": -73.67113
},
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174666",
"headsign": "161-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "161",
"routeLongName": "Van Horne",
"shapeLink": "/storage/shapes/stm/1610137.json",
"shapeId": "1610137",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 12:55:59",
"meta": {}
},
{
"id": 2180,
"ref": "29846",
"isActive": true,
"label": "29846",
"timestamp": 1711638395,
"tripId": "276159245",
"routeId": "439",
"startTime": "10:59:00",
"position": {
"lat": 45.54794,
"lon": -73.54286
},
"bearing": 286,
"speed": 16,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159245",
"headsign": "439-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390241.json",
"shapeId": "4390241",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 13:05:23",
"meta": {}
},
{
"id": 2181,
"ref": "29053",
"isActive": true,
"label": "29053",
"timestamp": 1711638405,
"tripId": "276173912",
"routeId": "30",
"startTime": "10:51:00",
"position": {
"lat": 45.54482,
"lon": -73.62251
},
"bearing": 116,
"speed": 23,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276173912",
"headsign": "30-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "30",
"routeLongName": "Saint-Denis / Saint-Hubert",
"shapeLink": "/storage/shapes/stm/300085.json",
"shapeId": "300085",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 13:10:21",
"meta": {}
},
{
"id": 2185,
"ref": "37106",
"isActive": true,
"label": "37106",
"timestamp": 1711638396,
"tripId": "275099254",
"routeId": "105",
"startTime": "10:49:00",
"position": {
"lat": 45.47416,
"lon": -73.60901
},
"bearing": 34,
"speed": 5,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275099254",
"headsign": "105-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "105",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/1050144.json",
"shapeId": "1050144",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 13:20:38",
"meta": {}
},
{
"id": 2189,
"ref": "36030",
"isActive": true,
"label": "36030",
"timestamp": 1711638402,
"tripId": "274628312",
"routeId": "28",
"startTime": "10:32:00",
"position": {
"lat": 45.59624,
"lon": -73.52016
},
"bearing": 199,
"speed": 16,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274628312",
"headsign": "28-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "28",
"routeLongName": "Honoré-Beaugrand",
"shapeLink": "/storage/shapes/stm/280921.json",
"shapeId": "280921",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 13:50:30",
"meta": {}
},
{
"id": 2224,
"ref": "31806",
"isActive": true,
"label": "31806",
"timestamp": 1711638401,
"tripId": "275102186",
"routeId": "165",
"startTime": "11:03:00",
"position": {
"lat": 45.51599,
"lon": -73.64411
},
"bearing": 234,
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275102186",
"headsign": "165-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "165",
"routeLongName": "Côte-des-Neiges",
"shapeLink": "/storage/shapes/stm/1650117.json",
"shapeId": "1650117",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 19:35:22",
"meta": {}
},
{
"id": 2323,
"ref": "38081",
"isActive": true,
"label": "38081",
"timestamp": 1711638393,
"tripId": "274242548",
"routeId": "215",
"startTime": "10:33:00",
"position": {
"lat": 45.51197,
"lon": -73.72335
},
"bearing": 87,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242548",
"headsign": "215-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "215",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/2150156.json",
"shapeId": "2150156",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 20:05:26",
"meta": {}
},
{
"id": 2470,
"ref": "30215",
"isActive": true,
"label": "30215",
"timestamp": 1711638394,
"tripId": "274627568",
"routeId": "86",
"startTime": "10:15:00",
"position": {
"lat": 45.65574,
"lon": -73.49136
},
"bearing": 330,
"speed": 45,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627568",
"headsign": "86-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "86",
"routeLongName": "Pointe-aux-Trembles",
"shapeLink": "/storage/shapes/stm/860181.json",
"shapeId": "860181",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-23 02:22:10",
"meta": {}
},
{
"id": 2473,
"ref": "36018",
"isActive": true,
"label": "36018",
"timestamp": 1711638398,
"tripId": "274626985",
"routeId": "432",
"startTime": "11:04:00",
"position": {
"lat": 45.63298,
"lon": -73.60693
},
"bearing": 225,
"speed": 17,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274626985",
"headsign": "432-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "432",
"routeLongName": "Express Lacordaire",
"shapeLink": "/storage/shapes/stm/4320137.json",
"shapeId": "4320137",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-23 10:24:03",
"meta": {}
},
{
"id": 2497,
"ref": "36048",
"isActive": true,
"label": "36048",
"timestamp": 1711638390,
"tripId": "274626703",
"routeId": "141",
"startTime": "10:34:00",
"position": {
"lat": 45.57268,
"lon": -73.58619
},
"bearing": 209,
"speed": 32,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274626703",
"headsign": "141-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": "/storage/shapes/stm/1410573.json",
"shapeId": "1410573",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-23 21:08:14",
"meta": {}
},
{
"id": 2501,
"ref": "38042",
"isActive": true,
"label": "38042",
"timestamp": 1711638392,
"tripId": "274239749",
"routeId": "468",
"startTime": "10:44:00",
"position": {
"lat": 45.51893,
"lon": -73.74294
},
"bearing": 217,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274239749",
"headsign": "468-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "468",
"routeLongName": "Express Pierrefonds / Gouin",
"shapeLink": "/storage/shapes/stm/4680086.json",
"shapeId": "4680086",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-24 11:20:06",
"meta": {}
},
{
"id": 2507,
"ref": "30178",
"isActive": true,
"label": "30178",
"timestamp": 1711638402,
"tripId": "274738332",
"routeId": "811",
"startTime": "10:40:00",
"position": {
"lat": 45.58164,
"lon": -73.5693
},
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274738332",
"headsign": "811-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "811",
"routeLongName": "Navette Services santé",
"shapeLink": "/storage/shapes/stm/8110006.json",
"shapeId": "8110006",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-24 13:02:06",
"meta": {}
},
{
"id": 2512,
"ref": "31017",
"isActive": true,
"label": "31017",
"timestamp": 1711638394,
"tripId": "276173823",
"routeId": "18",
"startTime": "10:32:00",
"position": {
"lat": 45.55645,
"lon": -73.58504
},
"bearing": 211,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276173823",
"headsign": "18-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "18",
"routeLongName": "Beaubien",
"shapeLink": "/storage/shapes/stm/180218.json",
"shapeId": "180218",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-24 17:28:09",
"meta": {}
},
{
"id": 2514,
"ref": "30826",
"isActive": true,
"label": "30826",
"timestamp": 1711638400,
"tripId": "276159414",
"routeId": "439",
"startTime": "10:39:00",
"position": {
"lat": 45.57185,
"lon": -73.60319
},
"bearing": 303,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159414",
"headsign": "439-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390238.json",
"shapeId": "4390238",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-24 18:54:12",
"meta": {}
},
{
"id": 2523,
"ref": "31066",
"isActive": true,
"label": "31066",
"timestamp": 1711638390,
"tripId": "274736340",
"routeId": "10",
"startTime": "11:15:00",
"position": {
"lat": 45.52374,
"lon": -73.55162
},
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274736340",
"headsign": "10-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "10",
"routeLongName": "De Lorimier",
"shapeLink": "/storage/shapes/stm/100069.json",
"shapeId": "100069",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-25 09:46:02",
"meta": {}
},
{
"id": 2535,
"ref": "31122",
"isActive": true,
"label": "31122",
"timestamp": 1711638399,
"tripId": "276156839",
"routeId": "45",
"startTime": "11:02:00",
"position": {
"lat": 45.52807,
"lon": -73.55732
},
"bearing": 294,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276156839",
"headsign": "45-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "45",
"routeLongName": "Papineau",
"shapeLink": "/storage/shapes/stm/450172.json",
"shapeId": "450172",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-25 10:38:09",
"meta": {}
},
{
"id": 2537,
"ref": "30087",
"isActive": true,
"label": "30087",
"timestamp": 1711638394,
"tripId": "274849540",
"routeId": "97",
"startTime": "10:38:00",
"position": {
"lat": 45.54772,
"lon": -73.56172
},
"bearing": 293,
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274849540",
"headsign": "97-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "97",
"routeLongName": "Avenue-du-Mont-Royal",
"shapeLink": "/storage/shapes/stm/970203.json",
"shapeId": "970203",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-25 10:50:07",
"meta": {}
},
{
"id": 2546,
"ref": "37067",
"isActive": true,
"label": "37067",
"timestamp": 1711638398,
"tripId": "275100116",
"routeId": "160",
"startTime": "10:31:00",
"position": {
"lat": 45.49207,
"lon": -73.64771
},
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275100116",
"headsign": "160-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "160",
"routeLongName": "Barclay",
"shapeLink": "/storage/shapes/stm/1600115.json",
"shapeId": "1600115",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-25 11:18:23",
"meta": {}
},
{
"id": 2556,
"ref": "27522",
"isActive": true,
"label": "27522",
"timestamp": 1711638405,
"tripId": "273973020",
"routeId": "195",
"startTime": "11:03:00",
"position": {
"lat": 45.44483,
"lon": -73.61575
},
"bearing": 305,
"speed": 28,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973020",
"headsign": "195-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "195",
"routeLongName": "Sherbrooke / Notre-Dame",
"shapeLink": "/storage/shapes/stm/1950167.json",
"shapeId": "1950167",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-25 11:36:06",
"meta": {}
},
{
"id": 2557,
"ref": "36041",
"isActive": true,
"label": "36041",
"timestamp": 1711638407,
"tripId": "274628853",
"routeId": "432",
"startTime": "10:33:00",
"position": {
"lat": 45.58258,
"lon": -73.5721
},
"bearing": 115,
"speed": 51,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274628853",
"headsign": "432-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "432",
"routeLongName": "Express Lacordaire",
"shapeLink": "/storage/shapes/stm/4320137.json",
"shapeId": "4320137",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-25 11:36:27",
"meta": {}
},
{
"id": 2559,
"ref": "36032",
"isActive": true,
"label": "36032",
"timestamp": 1711638392,
"tripId": "274627236",
"routeId": "86",
"startTime": "10:44:00",
"position": {
"lat": 45.63977,
"lon": -73.49028
},
"bearing": 8,
"speed": 8,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627236",
"headsign": "86-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "86",
"routeLongName": "Pointe-aux-Trembles",
"shapeLink": "/storage/shapes/stm/860181.json",
"shapeId": "860181",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-25 11:38:27",
"meta": {}
},
{
"id": 2580,
"ref": "39126",
"isActive": true,
"label": "39126",
"timestamp": 1711638390,
"tripId": "274627416",
"routeId": "192",
"startTime": "10:43:00",
"position": {
"lat": 45.58434,
"lon": -73.60509
},
"bearing": 0,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627416",
"headsign": "192-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "192",
"routeLongName": "Robert",
"shapeLink": "/storage/shapes/stm/1920150.json",
"shapeId": "1920150",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-25 12:10:41",
"meta": {}
},
{
"id": 2583,
"ref": "29089",
"isActive": true,
"label": "29089",
"timestamp": 1711638402,
"tripId": "273973748",
"routeId": "405",
"startTime": "11:17:00",
"position": {
"lat": 45.40367,
"lon": -73.94014
},
"bearing": 259,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973748",
"headsign": "405-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "405",
"routeLongName": "Express Bord-du-Lac",
"shapeLink": "/storage/shapes/stm/4050077.json",
"shapeId": "4050077",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-25 12:16:14",
"meta": {}
},
{
"id": 2592,
"ref": "31176",
"isActive": true,
"label": "31176",
"timestamp": 1711638392,
"tripId": "274737267",
"routeId": "94",
"startTime": "11:11:00",
"position": {
"lat": 45.5617,
"lon": -73.61485
},
"bearing": 111,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737267",
"headsign": "94-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "94",
"routeLongName": "D'Iberville",
"shapeLink": "/storage/shapes/stm/940089.json",
"shapeId": "940089",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-25 12:52:39",
"meta": {}
},
{
"id": 2609,
"ref": "30817",
"isActive": true,
"label": "30817",
"timestamp": 1711638391,
"tripId": "276159830",
"routeId": "69",
"startTime": "11:07:00",
"position": {
"lat": 45.53158,
"lon": -73.7188
},
"bearing": 218,
"speed": 11,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159830",
"headsign": "69-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "69",
"routeLongName": "Gouin",
"shapeLink": "/storage/shapes/stm/690217.json",
"shapeId": "690217",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-25 20:10:23",
"meta": {}
},
{
"id": 2612,
"ref": "29030",
"isActive": true,
"label": "29030",
"timestamp": 1711638403,
"tripId": "276174815",
"routeId": "161",
"startTime": "11:02:00",
"position": {
"lat": 45.5314,
"lon": -73.59814
},
"bearing": 215,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174815",
"headsign": "161-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "161",
"routeLongName": "Van Horne",
"shapeLink": "/storage/shapes/stm/1610134.json",
"shapeId": "1610134",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-25 20:26:20",
"meta": {}
},
{
"id": 2613,
"ref": "38029",
"isActive": true,
"label": "38029",
"timestamp": 1711638399,
"tripId": "274737393",
"routeId": "125",
"startTime": "10:26:00",
"position": {
"lat": 45.56173,
"lon": -73.54658
},
"bearing": 204,
"speed": 18,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737393",
"headsign": "125-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "125",
"routeLongName": "Ontario",
"shapeLink": "/storage/shapes/stm/1250180.json",
"shapeId": "1250180",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-25 20:30:34",
"meta": {}
},
{
"id": 2626,
"ref": "38061",
"isActive": true,
"label": "38061",
"timestamp": 1711638395,
"tripId": "274241519",
"routeId": "64",
"startTime": "11:02:00",
"position": {
"lat": 45.52731,
"lon": -73.71246
},
"bearing": 127,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241519",
"headsign": "64-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "64",
"routeLongName": "Grenet",
"shapeLink": "/storage/shapes/stm/640141.json",
"shapeId": "640141",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-25 21:40:42",
"meta": {}
},
{
"id": 2631,
"ref": "39107",
"isActive": true,
"label": "39107",
"timestamp": 1711638395,
"tripId": "274627791",
"routeId": "44",
"startTime": "10:50:00",
"position": {
"lat": 45.60876,
"lon": -73.58327
},
"bearing": 214,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627791",
"headsign": "44-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "44",
"routeLongName": "Armand-Bombardier",
"shapeLink": "/storage/shapes/stm/440168.json",
"shapeId": "440168",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-25 22:02:51",
"meta": {}
},
{
"id": 2632,
"ref": "38025",
"isActive": true,
"label": "38025",
"timestamp": 1711638395,
"tripId": "274736552",
"routeId": "24",
"startTime": "11:03:00",
"position": {
"lat": 45.4773,
"lon": -73.61546
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274736552",
"headsign": "24-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "24",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/240183.json",
"shapeId": "240183",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-25 22:04:41",
"meta": {}
},
{
"id": 2639,
"ref": "38050",
"isActive": true,
"label": "38050",
"timestamp": 1711638402,
"tripId": "274241782",
"routeId": "204",
"startTime": "10:30:00",
"position": {
"lat": 45.44974,
"lon": -73.74487
},
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241782",
"headsign": "204-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "204",
"routeLongName": "Cardinal",
"shapeLink": "/storage/shapes/stm/2040210.json",
"shapeId": "2040210",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-26 10:22:09",
"meta": {}
},
{
"id": 2640,
"ref": "37020",
"isActive": true,
"label": "37020",
"timestamp": 1711638394,
"tripId": "275100872",
"routeId": "175",
"startTime": "10:41:00",
"position": {
"lat": 45.49286,
"lon": -73.75182
},
"bearing": 329,
"speed": 27,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275100872",
"headsign": "175-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "175",
"routeLongName": "Griffith / Saint-François",
"shapeLink": "/storage/shapes/stm/1750104.json",
"shapeId": "1750104",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-26 10:30:11",
"meta": {}
},
{
"id": 2647,
"ref": "37098",
"isActive": true,
"label": "37098",
"timestamp": 1711638387,
"tripId": "275101127",
"routeId": "485",
"startTime": "10:06:00",
"position": {
"lat": 45.45919,
"lon": -73.89353
},
"bearing": 0,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275101127",
"headsign": "485-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "485",
"routeLongName": "Express Antoine-Faucon",
"shapeLink": "/storage/shapes/stm/4850080.json",
"shapeId": "4850080",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-26 11:04:19",
"meta": {}
},
{
"id": 2651,
"ref": "29084",
"isActive": true,
"label": "29084",
"timestamp": 1711638405,
"tripId": "273971547",
"routeId": "58",
"startTime": "10:58:00",
"position": {
"lat": 45.43169,
"lon": -73.59423
},
"bearing": 13,
"speed": 30,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273971547",
"headsign": "58-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "58",
"routeLongName": "Wellington",
"shapeLink": "/storage/shapes/stm/580127.json",
"shapeId": "580127",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-26 11:18:11",
"meta": {}
},
{
"id": 2652,
"ref": "32013",
"isActive": true,
"label": "32013",
"timestamp": 1711638399,
"tripId": "276173668",
"routeId": "179",
"startTime": "11:04:00",
"position": {
"lat": 45.52029,
"lon": -73.62614
},
"bearing": 214,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276173668",
"headsign": "179-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "179",
"routeLongName": "De l'Acadie",
"shapeLink": "/storage/shapes/stm/1790187.json",
"shapeId": "1790187",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-26 11:20:31",
"meta": {}
},
{
"id": 2662,
"ref": "39048",
"isActive": true,
"label": "39048",
"timestamp": 1711638286,
"tripId": "274627159",
"routeId": "189",
"startTime": "10:24:00",
"position": {
"lat": 45.59634,
"lon": -73.53452
},
"bearing": 293,
"speed": 9,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627159",
"headsign": "189-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "189",
"routeLongName": "Notre-Dame",
"shapeLink": "/storage/shapes/stm/1890204.json",
"shapeId": "1890204",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-26 12:10:42",
"meta": {}
},
{
"id": 2665,
"ref": "31208",
"isActive": true,
"label": "31208",
"timestamp": 1711638403,
"tripId": "276174189",
"routeId": "30",
"startTime": "10:21:00",
"position": {
"lat": 45.51472,
"lon": -73.55982
},
"bearing": 124,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174189",
"headsign": "30-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "30",
"routeLongName": "Saint-Denis / Saint-Hubert",
"shapeLink": "/storage/shapes/stm/300085.json",
"shapeId": "300085",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-26 12:14:37",
"meta": {}
},
{
"id": 2669,
"ref": "38078",
"isActive": true,
"label": "38078",
"timestamp": 1711638397,
"tripId": "274240962",
"routeId": "196",
"startTime": "11:07:00",
"position": {
"lat": 45.51332,
"lon": -73.68324
},
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240962",
"headsign": "196-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "196",
"routeLongName": "Parc-Industriel-Lachine",
"shapeLink": "/storage/shapes/stm/1960207.json",
"shapeId": "1960207",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-26 12:44:46",
"meta": {}
},
{
"id": 2680,
"ref": "39063",
"isActive": true,
"label": "39063",
"timestamp": 1711638388,
"tripId": "274628293",
"routeId": "49",
"startTime": "10:32:00",
"position": {
"lat": 45.62195,
"lon": -73.60533
},
"bearing": 59,
"speed": 36,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274628293",
"headsign": "49-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "49",
"routeLongName": "Maurice-Duplessis",
"shapeLink": "/storage/shapes/stm/490344.json",
"shapeId": "490344",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-26 20:46:40",
"meta": {}
},
{
"id": 2685,
"ref": "30873",
"isActive": true,
"label": "30873",
"timestamp": 1711638403,
"tripId": "276160238",
"routeId": "467",
"startTime": "10:48:00",
"position": {
"lat": 45.56375,
"lon": -73.60933
},
"bearing": 0,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276160238",
"headsign": "467-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "467",
"routeLongName": "Express Saint-Michel",
"shapeLink": "/storage/shapes/stm/4670072.json",
"shapeId": "4670072",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-26 21:54:32",
"meta": {}
},
{
"id": 2690,
"ref": "29119",
"isActive": true,
"label": "29119",
"timestamp": 1711638402,
"tripId": "273973347",
"routeId": "211",
"startTime": "11:05:00",
"position": {
"lat": 45.40536,
"lon": -73.92439
},
"bearing": 96,
"speed": 23,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973347",
"headsign": "211-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "211",
"routeLongName": "Bord-du-Lac",
"shapeLink": "/storage/shapes/stm/2110142.json",
"shapeId": "2110142",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-27 09:38:04",
"meta": {}
},
{
"id": 2693,
"ref": "30142",
"isActive": true,
"label": "30142",
"timestamp": 1711637927,
"tripId": "274627836",
"routeId": "33",
"startTime": "10:03:00",
"position": {
"lat": 45.62799,
"lon": -73.61571
},
"bearing": 145,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627836",
"headsign": "33-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": "/storage/shapes/stm/330281.json",
"shapeId": "330281",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-27 10:42:05",
"meta": {}
},
{
"id": 2705,
"ref": "29116",
"isActive": true,
"label": "29116",
"timestamp": 1711638391,
"tripId": "273974251",
"routeId": "496",
"startTime": "10:35:00",
"position": {
"lat": 45.44726,
"lon": -73.73375
},
"bearing": 288,
"speed": 37,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273974251",
"headsign": "496-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "496",
"routeLongName": "Express Victoria",
"shapeLink": "/storage/shapes/stm/4960094.json",
"shapeId": "4960094",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-27 12:00:16",
"meta": {}
},
{
"id": 2707,
"ref": "30114",
"isActive": true,
"label": "30114",
"timestamp": 1711638387,
"tripId": "274626553",
"routeId": "187",
"startTime": "10:53:00",
"position": {
"lat": 45.64803,
"lon": -73.49789
},
"bearing": 217,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274626553",
"headsign": "187-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "187",
"routeLongName": "René-Lévesque",
"shapeLink": "/storage/shapes/stm/1870218.json",
"shapeId": "1870218",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-27 12:32:26",
"meta": {}
},
{
"id": 2712,
"ref": "37033",
"isActive": true,
"label": "37033",
"timestamp": 1711638394,
"tripId": "275098889",
"routeId": "103",
"startTime": "10:45:00",
"position": {
"lat": 45.46043,
"lon": -73.66003
},
"bearing": 231,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275098889",
"headsign": "103-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "103",
"routeLongName": "Monkland",
"shapeLink": "/storage/shapes/stm/1030166.json",
"shapeId": "1030166",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-27 19:40:27",
"meta": {}
},
{
"id": 2715,
"ref": "37016",
"isActive": true,
"label": "37016",
"timestamp": 1711638398,
"tripId": "275100476",
"routeId": "171",
"startTime": "10:32:00",
"position": {
"lat": 45.5045,
"lon": -73.70982
},
"bearing": 214,
"speed": 12,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275100476",
"headsign": "171-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "171",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/1710224.json",
"shapeId": "1710224",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-27 20:28:33",
"meta": {}
},
{
"id": 2716,
"ref": "31230",
"isActive": true,
"label": "31230",
"timestamp": 1711638404,
"tripId": "274737858",
"routeId": "185",
"startTime": "10:48:00",
"position": {
"lat": 45.56516,
"lon": -73.5544
},
"bearing": 14,
"speed": 14,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737858",
"headsign": "185-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "185",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/1850126.json",
"shapeId": "1850126",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-27 20:34:32",
"meta": {}
},
{
"id": 2718,
"ref": "39128",
"isActive": true,
"label": "39128",
"timestamp": 1711638391,
"tripId": "274626610",
"routeId": "26",
"startTime": "11:17:00",
"position": {
"lat": 45.61384,
"lon": -73.5405
},
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274626610",
"headsign": "26-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "26",
"routeLongName": "Mercier-Est",
"shapeLink": "/storage/shapes/stm/260102.json",
"shapeId": "260102",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-27 21:06:43",
"meta": {}
},
{
"id": 2722,
"ref": "38041",
"isActive": true,
"label": "38041",
"timestamp": 1711638393,
"tripId": "274243213",
"routeId": "468",
"startTime": "10:56:00",
"position": {
"lat": 45.48028,
"lon": -73.86491
},
"bearing": 46,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274243213",
"headsign": "468-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "468",
"routeLongName": "Express Pierrefonds / Gouin",
"shapeLink": "/storage/shapes/stm/4680089.json",
"shapeId": "4680089",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-27 21:16:42",
"meta": {}
},
{
"id": 2723,
"ref": "30169",
"isActive": true,
"label": "30169",
"timestamp": 1711638396,
"tripId": "274239401",
"routeId": "117",
"startTime": "10:52:00",
"position": {
"lat": 45.51614,
"lon": -73.68118
},
"bearing": 0,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274239401",
"headsign": "117-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "117",
"routeLongName": "O'Brien",
"shapeLink": "/storage/shapes/stm/1170074.json",
"shapeId": "1170074",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-27 21:18:32",
"meta": {}
},
{
"id": 2726,
"ref": "29066",
"isActive": true,
"label": "29066",
"timestamp": 1711638401,
"tripId": "276174487",
"routeId": "161",
"startTime": "10:25:00",
"position": {
"lat": 45.5274,
"lon": -73.60808
},
"bearing": 58,
"speed": 1,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 44,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174487",
"headsign": "161-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "161",
"routeLongName": "Van Horne",
"shapeLink": "/storage/shapes/stm/1610137.json",
"shapeId": "1610137",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-27 21:38:19",
"meta": {}
},
{
"id": 2743,
"ref": "31091",
"isActive": true,
"label": "31091",
"timestamp": 1711638399,
"tripId": "274736379",
"routeId": "15",
"startTime": "11:00:00",
"position": {
"lat": 45.49779,
"lon": -73.57512
},
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274736379",
"headsign": "15-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "15",
"routeLongName": "Sainte-Catherine",
"shapeLink": "/storage/shapes/stm/150078.json",
"shapeId": "150078",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-28 11:20:19",
"meta": {}
},
{
"id": 2747,
"ref": "37100",
"isActive": true,
"label": "37100",
"timestamp": 1711638392,
"tripId": "275100692",
"routeId": "171",
"startTime": "10:54:00",
"position": {
"lat": 45.52948,
"lon": -73.68469
},
"bearing": 142,
"speed": 18,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275100692",
"headsign": "171-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "171",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/1710224.json",
"shapeId": "1710224",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-28 12:16:39",
"meta": {}
},
{
"id": 2751,
"ref": "31134",
"isActive": true,
"label": "31134",
"timestamp": 1711638407,
"tripId": "276157556",
"routeId": "140",
"startTime": "10:44:00",
"position": {
"lat": 45.57628,
"lon": -73.64685
},
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157556",
"headsign": "140-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "140",
"routeLongName": "Fleury",
"shapeLink": "/storage/shapes/stm/1400134.json",
"shapeId": "1400134",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-28 13:28:34",
"meta": {}
},
{
"id": 2757,
"ref": "30213",
"isActive": true,
"label": "30213",
"timestamp": 1711638397,
"tripId": "274626922",
"routeId": "189",
"startTime": "11:22:00",
"position": {
"lat": 45.69746,
"lon": -73.49147
},
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274626922",
"headsign": "189-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "189",
"routeLongName": "Notre-Dame",
"shapeLink": "/storage/shapes/stm/1890204.json",
"shapeId": "1890204",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-28 19:06:15",
"meta": {}
},
{
"id": 2760,
"ref": "31077",
"isActive": true,
"label": "31077",
"timestamp": 1711638401,
"tripId": "274736561",
"routeId": "24",
"startTime": "10:53:00",
"position": {
"lat": 45.51947,
"lon": -73.56887
},
"bearing": 212,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274736561",
"headsign": "24-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "24",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/240184.json",
"shapeId": "240184",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-28 20:50:31",
"meta": {}
},
{
"id": 2777,
"ref": "30030",
"isActive": true,
"label": "30030",
"timestamp": 1711638403,
"tripId": "274848859",
"routeId": "51",
"startTime": "10:14:00",
"position": {
"lat": 45.47382,
"lon": -73.63908
},
"bearing": 209,
"speed": 24,
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274848859",
"headsign": "51-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": "/storage/shapes/stm/510191.json",
"shapeId": "510191",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-29 11:02:10",
"meta": {}
},
{
"id": 2784,
"ref": "30880",
"isActive": true,
"label": "30880",
"timestamp": 1711638391,
"tripId": "276159446",
"routeId": "439",
"startTime": "11:18:00",
"position": {
"lat": 45.61858,
"lon": -73.6076
},
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159446",
"headsign": "439-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390240.json",
"shapeId": "4390240",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-29 12:20:35",
"meta": {}
},
{
"id": 2785,
"ref": "37051",
"isActive": true,
"label": "37051",
"timestamp": 1711638400,
"tripId": "275099962",
"routeId": "160",
"startTime": "10:56:00",
"position": {
"lat": 45.52396,
"lon": -73.60529
},
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275099962",
"headsign": "160-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "160",
"routeLongName": "Barclay",
"shapeLink": "/storage/shapes/stm/1600115.json",
"shapeId": "1600115",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-29 12:30:43",
"meta": {}
},
{
"id": 2786,
"ref": "31120",
"isActive": true,
"label": "31120",
"timestamp": 1711638404,
"tripId": "276157686",
"routeId": "140",
"startTime": "11:02:00",
"position": {
"lat": 45.55335,
"lon": -73.66171
},
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157686",
"headsign": "140-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "140",
"routeLongName": "Fleury",
"shapeLink": "/storage/shapes/stm/1400133.json",
"shapeId": "1400133",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-29 12:38:38",
"meta": {}
},
{
"id": 2795,
"ref": "30854",
"isActive": true,
"label": "30854",
"timestamp": 1711638396,
"tripId": "276159557",
"routeId": "67",
"startTime": "10:33:00",
"position": {
"lat": 45.55268,
"lon": -73.57882
},
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159557",
"headsign": "67-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "67",
"routeLongName": "Saint-Michel",
"shapeLink": "/storage/shapes/stm/670109.json",
"shapeId": "670109",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-29 20:46:29",
"meta": {}
},
{
"id": 2797,
"ref": "30233",
"isActive": true,
"label": "30233",
"timestamp": 1711638399,
"tripId": "274240126",
"routeId": "202",
"startTime": "11:08:00",
"position": {
"lat": 45.4656,
"lon": -73.83115
},
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240126",
"headsign": "202-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "202",
"routeLongName": "Dawson",
"shapeLink": "/storage/shapes/stm/2020182.json",
"shapeId": "2020182",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-29 21:00:31",
"meta": {}
},
{
"id": 2798,
"ref": "37026",
"isActive": true,
"label": "37026",
"timestamp": 1711638407,
"tripId": "275100751",
"routeId": "171",
"startTime": "11:05:00",
"position": {
"lat": 45.55571,
"lon": -73.66802
},
"bearing": 200,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275100751",
"headsign": "171-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "171",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/1710224.json",
"shapeId": "1710224",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-29 21:00:38",
"meta": {}
},
{
"id": 2802,
"ref": "31128",
"isActive": true,
"label": "31128",
"timestamp": 1711638392,
"tripId": "276157811",
"routeId": "180",
"startTime": "11:06:00",
"position": {
"lat": 45.55035,
"lon": -73.6564
},
"bearing": 31,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157811",
"headsign": "180-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "180",
"routeLongName": "De Salaberry",
"shapeLink": "/storage/shapes/stm/1800107.json",
"shapeId": "1800107",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-29 21:42:38",
"meta": {}
},
{
"id": 2806,
"ref": "32025",
"isActive": true,
"label": "32025",
"timestamp": 1711638392,
"tripId": "274628254",
"routeId": "449",
"startTime": "11:07:00",
"position": {
"lat": 45.58956,
"lon": -73.54004
},
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274628254",
"headsign": "449-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "449",
"routeLongName": "Express Rivière-des-Prairies",
"shapeLink": "/storage/shapes/stm/4490191.json",
"shapeId": "4490191",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-29 22:46:38",
"meta": {}
},
{
"id": 2815,
"ref": "39069",
"isActive": true,
"label": "39069",
"timestamp": 1711638389,
"tripId": "274630463",
"routeId": "444",
"startTime": "11:00:00",
"position": {
"lat": 45.60872,
"lon": -73.57417
},
"bearing": 299,
"speed": 54,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274630463",
"headsign": "444-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "444",
"routeLongName": "Express Cégep Marie-Victorin",
"shapeLink": "/storage/shapes/stm/4440032.json",
"shapeId": "4440032",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-30 20:34:18",
"meta": {}
},
{
"id": 2820,
"ref": "31026",
"isActive": true,
"label": "31026",
"timestamp": 1711638404,
"tripId": "276173598",
"routeId": "31",
"startTime": "10:47:00",
"position": {
"lat": 45.55514,
"lon": -73.66788
},
"bearing": 314,
"speed": 14,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276173598",
"headsign": "31-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "31",
"routeLongName": "Saint-Denis",
"shapeLink": "/storage/shapes/stm/310072.json",
"shapeId": "310072",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-12-01 11:14:05",
"meta": {}
},
{
"id": 2823,
"ref": "31132",
"isActive": true,
"label": "31132",
"timestamp": 1711638407,
"tripId": "276156829",
"routeId": "45",
"startTime": "10:30:00",
"position": {
"lat": 45.55527,
"lon": -73.62327
},
"bearing": 301,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276156829",
"headsign": "45-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "45",
"routeLongName": "Papineau",
"shapeLink": "/storage/shapes/stm/450172.json",
"shapeId": "450172",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-12-01 23:26:09",
"meta": {}
},
{
"id": 2824,
"ref": "31832",
"isActive": true,
"label": "31832",
"timestamp": 1711638391,
"tripId": "276159277",
"routeId": "439",
"startTime": "10:30:00",
"position": {
"lat": 45.56523,
"lon": -73.58849
},
"bearing": 120,
"speed": 18,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159277",
"headsign": "439-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390240.json",
"shapeId": "4390240",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-12-02 02:06:10",
"meta": {}
},
{
"id": 2828,
"ref": "31200",
"isActive": true,
"label": "31200",
"timestamp": 1711638397,
"tripId": "274736679",
"routeId": "24",
"startTime": "10:52:00",
"position": {
"lat": 45.48215,
"lon": -73.59979
},
"bearing": 44,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274736679",
"headsign": "24-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "24",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/240183.json",
"shapeId": "240183",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-12-02 10:54:14",
"meta": {}
},
{
"id": 2837,
"ref": "39060",
"isActive": true,
"label": "39060",
"timestamp": 1711638407,
"tripId": "274627509",
"routeId": "44",
"startTime": "10:29:00",
"position": {
"lat": 45.58987,
"lon": -73.53998
},
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627509",
"headsign": "44-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "44",
"routeLongName": "Armand-Bombardier",
"shapeLink": "/storage/shapes/stm/440168.json",
"shapeId": "440168",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-12-02 13:36:39",
"meta": {}
},
{
"id": 2858,
"ref": "31015",
"isActive": true,
"label": "31015",
"timestamp": 1711638407,
"tripId": "276174554",
"routeId": "18",
"startTime": "10:37:00",
"position": {
"lat": 45.56115,
"lon": -73.58095
},
"bearing": 25,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174554",
"headsign": "18-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "18",
"routeLongName": "Beaubien",
"shapeLink": "/storage/shapes/stm/180220.json",
"shapeId": "180220",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-12-03 12:02:28",
"meta": {}
},
{
"id": 2859,
"ref": "30122",
"isActive": true,
"label": "30122",
"timestamp": 1711638402,
"tripId": "274628354",
"routeId": "141",
"startTime": "11:18: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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274628354",
"headsign": "141-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": "/storage/shapes/stm/1410573.json",
"shapeId": "1410573",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-12-03 12:06:21",
"meta": {}
},
{
"id": 2863,
"ref": "31059",
"isActive": true,
"label": "31059",
"timestamp": 1711638402,
"tripId": "275098505",
"routeId": "93",
"startTime": "10:42:00",
"position": {
"lat": 45.56421,
"lon": -73.59354
},
"bearing": 35,
"speed": 18,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275098505",
"headsign": "93-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "93",
"routeLongName": "Jean-Talon",
"shapeLink": "/storage/shapes/stm/930083.json",
"shapeId": "930083",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-12-03 12:36:38",
"meta": {}
},
{
"id": 2864,
"ref": "30078",
"isActive": true,
"label": "30078",
"timestamp": 1711638403,
"tripId": "274626799",
"routeId": "189",
"startTime": "10:48:00",
"position": {
"lat": 45.62155,
"lon": -73.50568
},
"bearing": 22,
"speed": 27,
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274626799",
"headsign": "189-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "189",
"routeLongName": "Notre-Dame",
"shapeLink": "/storage/shapes/stm/1890206.json",
"shapeId": "1890206",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-12-03 12:50:26",
"meta": {}
},
{
"id": 2867,
"ref": "29065",
"isActive": true,
"label": "29065",
"timestamp": 1711638395,
"tripId": "276173613",
"routeId": "18",
"startTime": "10:25:00",
"position": {
"lat": 45.58197,
"lon": -73.5643
},
"bearing": 22,
"speed": 46,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276173613",
"headsign": "18-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "18",
"routeLongName": "Beaubien",
"shapeLink": "/storage/shapes/stm/180220.json",
"shapeId": "180220",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-12-03 13:14:21",
"meta": {}
},
{
"id": 2869,
"ref": "30834",
"isActive": true,
"label": "30834",
"timestamp": 1711638393,
"tripId": "276160255",
"routeId": "467",
"startTime": "11:00:00",
"position": {
"lat": 45.57598,
"lon": -73.63662
},
"bearing": 120,
"speed": 37,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276160255",
"headsign": "467-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "467",
"routeLongName": "Express Saint-Michel",
"shapeLink": "/storage/shapes/stm/4670073.json",
"shapeId": "4670073",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-12-03 20:10:22",
"meta": {}
},
{
"id": 2871,
"ref": "30033",
"isActive": true,
"label": "30033",
"timestamp": 1711638407,
"tripId": "274628509",
"routeId": "28",
"startTime": "10:42:00",
"position": {
"lat": 45.60464,
"lon": -73.54638
},
"bearing": 278,
"speed": 28,
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274628509",
"headsign": "28-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "28",
"routeLongName": "Honoré-Beaugrand",
"shapeLink": "/storage/shapes/stm/280922.json",
"shapeId": "280922",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-12-03 20:26:23",
"meta": {}
},
{
"id": 2873,
"ref": "29102",
"isActive": true,
"label": "29102",
"timestamp": 1711638404,
"tripId": "273972358",
"routeId": "112",
"startTime": "10:37:00",
"position": {
"lat": 45.42309,
"lon": -73.64144
},
"bearing": 286,
"speed": 22,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972358",
"headsign": "112-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "112",
"routeLongName": "Airlie",
"shapeLink": "/storage/shapes/stm/1120163.json",
"shapeId": "1120163",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-03 20:28:21",
"meta": {}
},
{
"id": 2877,
"ref": "39070",
"isActive": true,
"label": "39070",
"timestamp": 1711638407,
"tripId": "274626306",
"routeId": "86",
"startTime": "10:02:00",
"position": {
"lat": 45.65657,
"lon": -73.56758
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 98,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274626306",
"headsign": "86-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "86",
"routeLongName": "Pointe-aux-Trembles",
"shapeLink": "/storage/shapes/stm/860187.json",
"shapeId": "860187",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-12-03 21:18:43",
"meta": {}
},
{
"id": 2878,
"ref": "36902",
"isActive": true,
"label": "36902",
"timestamp": 1711638392,
"tripId": "273969707",
"routeId": "36",
"startTime": "10:30:00",
"position": {
"lat": 45.48606,
"lon": -73.5702
},
"bearing": 41,
"speed": 18,
"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": [
1,
2,
3,
22
],
"tags": [
1,
4
],
"trip": {
"id": "273969707",
"headsign": "36-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "36",
"routeLongName": "Monk",
"shapeLink": "/storage/shapes/stm/360145.json",
"shapeId": "360145",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-03 21:30:40",
"meta": {}
},
{
"id": 2879,
"ref": "31022",
"isActive": true,
"label": "31022",
"timestamp": 1711638399,
"tripId": "276174685",
"routeId": "66",
"startTime": "10:50:00",
"position": {
"lat": 45.48099,
"lon": -73.62257
},
"bearing": 214,
"speed": 18,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174685",
"headsign": "66-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "66",
"routeLongName": "The Boulevard",
"shapeLink": "/storage/shapes/stm/660098.json",
"shapeId": "660098",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-12-03 21:58:31",
"meta": {}
},
{
"id": 2888,
"ref": "30225",
"isActive": true,
"label": "30225",
"timestamp": 1711638389,
"tripId": "276173627",
"routeId": "55",
"startTime": "10:16:00",
"position": {
"lat": 45.54774,
"lon": -73.66237
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 44,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276173627",
"headsign": "55-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "55",
"routeLongName": "Boulevard Saint-Laurent",
"shapeLink": "/storage/shapes/stm/550146.json",
"shapeId": "550146",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-12-04 12:08:26",
"meta": {}
},
{
"id": 2890,
"ref": "30236",
"isActive": true,
"label": "30236",
"timestamp": 1711638399,
"tripId": "274240689",
"routeId": "177",
"startTime": "10:52:00",
"position": {
"lat": 45.4925,
"lon": -73.71024
},
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240689",
"headsign": "177-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "177",
"routeLongName": "Thimens",
"shapeLink": "/storage/shapes/stm/1770132.json",
"shapeId": "1770132",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-04 12:10:24",
"meta": {}
},
{
"id": 2907,
"ref": "30805",
"isActive": true,
"label": "30805",
"timestamp": 1711638397,
"tripId": "276159539",
"routeId": "67",
"startTime": "10:28:00",
"position": {
"lat": 45.57547,
"lon": -73.63512
},
"bearing": 298,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159539",
"headsign": "67-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "67",
"routeLongName": "Saint-Michel",
"shapeLink": "/storage/shapes/stm/670110.json",
"shapeId": "670110",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-12-04 21:46:31",
"meta": {}
},
{
"id": 2910,
"ref": "37039",
"isActive": true,
"label": "37039",
"timestamp": 1711638389,
"tripId": "275099897",
"routeId": "128",
"startTime": "11:18:00",
"position": {
"lat": 45.52042,
"lon": -73.67166
},
"bearing": 205,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275099897",
"headsign": "128-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "128",
"routeLongName": "Saint-Laurent",
"shapeLink": "/storage/shapes/stm/1280146.json",
"shapeId": "1280146",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-12-05 03:04:13",
"meta": {}
},
{
"id": 2914,
"ref": "31011",
"isActive": true,
"label": "31011",
"timestamp": 1711638394,
"tripId": "276173727",
"routeId": "161",
"startTime": "10:21:00",
"position": {
"lat": 45.46171,
"lon": -73.66796
},
"bearing": 206,
"speed": 9,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276173727",
"headsign": "161-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "161",
"routeLongName": "Van Horne",
"shapeLink": "/storage/shapes/stm/1610134.json",
"shapeId": "1610134",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-12-05 10:38:09",
"meta": {}
},
{
"id": 2915,
"ref": "39133",
"isActive": true,
"label": "39133",
"timestamp": 1711638404,
"tripId": "274628175",
"routeId": "40",
"startTime": "10:58:00",
"position": {
"lat": 45.6131,
"lon": -73.60072
},
"bearing": 67,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274628175",
"headsign": "40-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "40",
"routeLongName": "Henri-Bourassa-Est",
"shapeLink": "/storage/shapes/stm/400084.json",
"shapeId": "400084",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-12-05 11:12:25",
"meta": {}
},
{
"id": 2917,
"ref": "37068",
"isActive": true,
"label": "37068",
"timestamp": 1711638312,
"tripId": "275098796",
"routeId": "103",
"startTime": "10:42:00",
"position": {
"lat": 45.47903,
"lon": -73.61967
},
"bearing": 4,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275098796",
"headsign": "103-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "103",
"routeLongName": "Monkland",
"shapeLink": "/storage/shapes/stm/1030154.json",
"shapeId": "1030154",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-12-05 11:20:23",
"meta": {}
},
{
"id": 2922,
"ref": "31202",
"isActive": true,
"label": "31202",
"timestamp": 1711638400,
"tripId": "276174931",
"routeId": "179",
"startTime": "10:34:00",
"position": {
"lat": 45.53681,
"lon": -73.68625
},
"bearing": 303,
"speed": 45,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174931",
"headsign": "179-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "179",
"routeLongName": "De l'Acadie",
"shapeLink": "/storage/shapes/stm/1790187.json",
"shapeId": "1790187",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-12-05 13:12:45",
"meta": {}
},
{
"id": 2924,
"ref": "28007",
"isActive": true,
"label": "28007",
"timestamp": 1711638400,
"tripId": "273969951",
"routeId": "57",
"startTime": "11:03:00",
"position": {
"lat": 45.49266,
"lon": -73.58063
},
"bearing": 40,
"speed": 4,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273969951",
"headsign": "57-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "57",
"routeLongName": "Pointe-Saint-Charles",
"shapeLink": "/storage/shapes/stm/570097.json",
"shapeId": "570097",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-05 16:58:06",
"meta": {}
},
{
"id": 2926,
"ref": "36047",
"isActive": true,
"label": "36047",
"timestamp": 1711638402,
"tripId": "274628487",
"routeId": "187",
"startTime": "10:32:00",
"position": {
"lat": 45.60555,
"lon": -73.52969
},
"bearing": 203,
"speed": 39,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274628487",
"headsign": "187-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "187",
"routeLongName": "René-Lévesque",
"shapeLink": "/storage/shapes/stm/1870218.json",
"shapeId": "1870218",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-12-05 20:04:28",
"meta": {}
},
{
"id": 2934,
"ref": "31083",
"isActive": true,
"label": "31083",
"timestamp": 1711638395,
"tripId": "275100352",
"routeId": "160",
"startTime": "10:56:00",
"position": {
"lat": 45.50183,
"lon": -73.63501
},
"bearing": 0,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275100352",
"headsign": "160-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "160",
"routeLongName": "Barclay",
"shapeLink": "/storage/shapes/stm/1600121.json",
"shapeId": "1600121",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-12-05 22:44:29",
"meta": {}
},
{
"id": 2936,
"ref": "36010",
"isActive": true,
"label": "36010",
"timestamp": 1711638391,
"tripId": "274626667",
"routeId": "186",
"startTime": "11:00:00",
"position": {
"lat": 45.60861,
"lon": -73.52774
},
"bearing": 20,
"speed": 14,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274626667",
"headsign": "186-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "186",
"routeLongName": "Sherbrooke-Est",
"shapeLink": "/storage/shapes/stm/1860250.json",
"shapeId": "1860250",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-12-06 11:16:21",
"meta": {}
},
{
"id": 2940,
"ref": "30820",
"isActive": true,
"label": "30820",
"timestamp": 1711638388,
"tripId": "276159889",
"routeId": "69",
"startTime": "11:02:00",
"position": {
"lat": 45.61085,
"lon": -73.60824
},
"bearing": 142,
"speed": 14,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159889",
"headsign": "69-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "69",
"routeLongName": "Gouin",
"shapeLink": "/storage/shapes/stm/690218.json",
"shapeId": "690218",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-12-06 11:38:23",
"meta": {}
},
{
"id": 2953,
"ref": "32015",
"isActive": true,
"label": "32015",
"timestamp": 1711638396,
"tripId": "274628577",
"routeId": "186",
"startTime": "10:40:00",
"position": {
"lat": 45.63146,
"lon": -73.51659
},
"bearing": 200,
"speed": 54,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274628577",
"headsign": "186-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "186",
"routeLongName": "Sherbrooke-Est",
"shapeLink": "/storage/shapes/stm/1860244.json",
"shapeId": "1860244",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-12-06 20:50:34",
"meta": {}
},
{
"id": 2955,
"ref": "30256",
"isActive": true,
"label": "30256",
"timestamp": 1711638398,
"tripId": "274626267",
"routeId": "32",
"startTime": "10:30:00",
"position": {
"lat": 45.60057,
"lon": -73.61314
},
"bearing": 318,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274626267",
"headsign": "32-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "32",
"routeLongName": "Lacordaire",
"shapeLink": "/storage/shapes/stm/320164.json",
"shapeId": "320164",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-12-06 21:12:33",
"meta": {}
},
{
"id": 2958,
"ref": "30080",
"isActive": true,
"label": "30080",
"timestamp": 1711638407,
"tripId": "274628616",
"routeId": "81",
"startTime": "10:43:00",
"position": {
"lat": 45.64777,
"lon": -73.56747
},
"bearing": 234,
"speed": 44,
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274628616",
"headsign": "81-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "81",
"routeLongName": "Saint-Jean-Baptiste",
"shapeLink": "/storage/shapes/stm/810018.json",
"shapeId": "810018",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-12-06 22:14:21",
"meta": {}
},
{
"id": 2960,
"ref": "29081",
"isActive": true,
"label": "29081",
"timestamp": 1711637966,
"tripId": "273973364",
"routeId": "211",
"startTime": "10:06:00",
"position": {
"lat": 45.48203,
"lon": -73.57942
},
"bearing": 319,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973364",
"headsign": "211-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "211",
"routeLongName": "Bord-du-Lac",
"shapeLink": "/storage/shapes/stm/2110142.json",
"shapeId": "2110142",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-07 12:48:05",
"meta": {}
},
{
"id": 2961,
"ref": "29148",
"isActive": true,
"label": "29148",
"timestamp": 1711638404,
"tripId": "273970923",
"routeId": "112",
"startTime": "10:50:00",
"position": {
"lat": 45.42519,
"lon": -73.61475
},
"bearing": 48,
"speed": 15,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970923",
"headsign": "112-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "112",
"routeLongName": "Airlie",
"shapeLink": "/storage/shapes/stm/1120165.json",
"shapeId": "1120165",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-07 14:38:06",
"meta": {}
},
{
"id": 2964,
"ref": "32031",
"isActive": true,
"label": "32031",
"timestamp": 1711638396,
"tripId": "275100410",
"routeId": "166",
"startTime": "10:50:00",
"position": {
"lat": 45.48548,
"lon": -73.62761
},
"bearing": 214,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275100410",
"headsign": "166-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "166",
"routeLongName": "Queen-Mary",
"shapeLink": "/storage/shapes/stm/1660192.json",
"shapeId": "1660192",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-12-07 18:42:14",
"meta": {}
},
{
"id": 2971,
"ref": "31063",
"isActive": true,
"label": "31063",
"timestamp": 1711638393,
"tripId": "274626728",
"routeId": "43",
"startTime": "10:36:00",
"position": {
"lat": 45.61124,
"lon": -73.60841
},
"bearing": 313,
"speed": 14,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274626728",
"headsign": "43-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "43",
"routeLongName": "Monselet",
"shapeLink": "/storage/shapes/stm/430202.json",
"shapeId": "430202",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-12-09 10:22:08",
"meta": {}
},
{
"id": 2973,
"ref": "31133",
"isActive": true,
"label": "31133",
"timestamp": 1711638311,
"tripId": "276157337",
"routeId": "56",
"startTime": "10:56:00",
"position": {
"lat": 45.55697,
"lon": -73.6674
},
"bearing": 185,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157337",
"headsign": "56-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "56",
"routeLongName": "Saint-Hubert",
"shapeLink": "/storage/shapes/stm/560032.json",
"shapeId": "560032",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-12-09 10:30:04",
"meta": {}
},
{
"id": 2992,
"ref": "32019",
"isActive": true,
"label": "32019",
"timestamp": 1711638010,
"tripId": "274627340",
"routeId": "48",
"startTime": "10:05:00",
"position": {
"lat": 45.55734,
"lon": -73.6674
},
"bearing": 180,
"speed": 32,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627340",
"headsign": "48-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": "/storage/shapes/stm/480412.json",
"shapeId": "480412",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-12-09 20:26:31",
"meta": {}
},
{
"id": 2995,
"ref": "30028",
"isActive": true,
"label": "30028",
"timestamp": 1711638401,
"tripId": "274849621",
"routeId": "51",
"startTime": "10:50:00",
"position": {
"lat": 45.51595,
"lon": -73.59999
},
"bearing": 265,
"speed": 35,
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274849621",
"headsign": "51-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": "/storage/shapes/stm/510191.json",
"shapeId": "510191",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2019-12-10 10:24:07",
"meta": {}
},
{
"id": 2996,
"ref": "30181",
"isActive": true,
"label": "30181",
"timestamp": 1711638403,
"tripId": "273973047",
"routeId": "191",
"startTime": "10:55:00",
"position": {
"lat": 45.4389,
"lon": -73.71928
},
"bearing": 85,
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "273973047",
"headsign": "191-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "191",
"routeLongName": "Broadway / Provost",
"shapeLink": "/storage/shapes/stm/1910884.json",
"shapeId": "1910884",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-10 10:40:07",
"meta": {}
},
{
"id": 3001,
"ref": "37094",
"isActive": true,
"label": "37094",
"timestamp": 1711638395,
"tripId": "275101072",
"routeId": "485",
"startTime": "11:03:00",
"position": {
"lat": 45.48764,
"lon": -73.58246
},
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275101072",
"headsign": "485-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "485",
"routeLongName": "Express Antoine-Faucon",
"shapeLink": "/storage/shapes/stm/4850080.json",
"shapeId": "4850080",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-12-10 12:30:43",
"meta": {}
},
{
"id": 3003,
"ref": "31809",
"isActive": true,
"label": "31809",
"timestamp": 1711638406,
"tripId": "275102462",
"routeId": "470",
"startTime": "11:04:00",
"position": {
"lat": 45.51456,
"lon": -73.6833
},
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275102462",
"headsign": "470-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "470",
"routeLongName": "Express Pierrefonds",
"shapeLink": "/storage/shapes/stm/4700246.json",
"shapeId": "4700246",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-12-10 16:50:17",
"meta": {}
},
{
"id": 3005,
"ref": "28011",
"isActive": true,
"label": "28011",
"timestamp": 1711638400,
"tripId": "274241762",
"routeId": "203",
"startTime": "10:31:00",
"position": {
"lat": 45.4454,
"lon": -73.7597
},
"bearing": 94,
"speed": 15,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241762",
"headsign": "203-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "203",
"routeLongName": "Carson",
"shapeLink": "/storage/shapes/stm/2030107.json",
"shapeId": "2030107",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-10 19:14:06",
"meta": {}
},
{
"id": 3014,
"ref": "37063",
"isActive": true,
"label": "37063",
"timestamp": 1711638403,
"tripId": "275101052",
"routeId": "171",
"startTime": "10:54:00",
"position": {
"lat": 45.51376,
"lon": -73.68328
},
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275101052",
"headsign": "171-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "171",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/1710198.json",
"shapeId": "1710198",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-12-11 12:36:45",
"meta": {}
},
{
"id": 3030,
"ref": "29031",
"isActive": true,
"label": "29031",
"timestamp": 1711638395,
"tripId": "276174028",
"routeId": "66",
"startTime": "10:56:00",
"position": {
"lat": 45.4803,
"lon": -73.62303
},
"bearing": 30,
"speed": 21,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174028",
"headsign": "66-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "66",
"routeLongName": "The Boulevard",
"shapeLink": "/storage/shapes/stm/660100.json",
"shapeId": "660100",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-12-12 13:20:17",
"meta": {}
},
{
"id": 3040,
"ref": "27529",
"isActive": true,
"label": "27529",
"timestamp": 1711638394,
"tripId": "276158122",
"routeId": "197",
"startTime": "10:10:00",
"position": {
"lat": 45.58258,
"lon": -73.54134
},
"bearing": 277,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276158122",
"headsign": "197-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "197",
"routeLongName": "Rosemont",
"shapeLink": "/storage/shapes/stm/1970142.json",
"shapeId": "1970142",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-12-12 20:36:14",
"meta": {}
},
{
"id": 3042,
"ref": "39144",
"isActive": true,
"label": "39144",
"timestamp": 1711638406,
"tripId": "274626355",
"routeId": "26",
"startTime": "10:48:00",
"position": {
"lat": 45.6019,
"lon": -73.53188
},
"bearing": 204,
"speed": 36,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274626355",
"headsign": "26-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "26",
"routeLongName": "Mercier-Est",
"shapeLink": "/storage/shapes/stm/260102.json",
"shapeId": "260102",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-12-12 21:26:44",
"meta": {}
},
{
"id": 3060,
"ref": "31023",
"isActive": true,
"label": "31023",
"timestamp": 1711638395,
"tripId": "273973945",
"routeId": "211",
"startTime": "10:23:00",
"position": {
"lat": 45.42852,
"lon": -73.85334
},
"bearing": 243,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "273973945",
"headsign": "211-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "211",
"routeLongName": "Bord-du-Lac",
"shapeLink": "/storage/shapes/stm/2110141.json",
"shapeId": "2110141",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-13 20:02:22",
"meta": {}
},
{
"id": 3071,
"ref": "37105",
"isActive": true,
"label": "37105",
"timestamp": 1711638401,
"tripId": "275100077",
"routeId": "160",
"startTime": "10:29:00",
"position": {
"lat": 45.53094,
"lon": -73.6078
},
"bearing": 31,
"speed": 27,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275100077",
"headsign": "160-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "160",
"routeLongName": "Barclay",
"shapeLink": "/storage/shapes/stm/1600121.json",
"shapeId": "1600121",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-12-15 10:46:05",
"meta": {}
},
{
"id": 3077,
"ref": "30238",
"isActive": true,
"label": "30238",
"timestamp": 1711638404,
"tripId": "274240442",
"routeId": "174",
"startTime": "10:47:00",
"position": {
"lat": 45.47564,
"lon": -73.73149
},
"bearing": 220,
"speed": 27,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240442",
"headsign": "174-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "174",
"routeLongName": "Côte-Vertu-Ouest",
"shapeLink": "/storage/shapes/stm/1740116.json",
"shapeId": "1740116",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-16 20:28:26",
"meta": {}
},
{
"id": 3078,
"ref": "27507",
"isActive": true,
"label": "27507",
"timestamp": 1711638404,
"tripId": "273973727",
"routeId": "425",
"startTime": "10:29:00",
"position": {
"lat": 45.44834,
"lon": -73.74403
},
"bearing": 356,
"speed": 13,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973727",
"headsign": "425-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "425",
"routeLongName": "Express Anse-à-l'Orme",
"shapeLink": "/storage/shapes/stm/4250077.json",
"shapeId": "4250077",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-16 20:36:16",
"meta": {}
},
{
"id": 3084,
"ref": "31810",
"isActive": true,
"label": "31810",
"timestamp": 1711638402,
"tripId": "275102361",
"routeId": "470",
"startTime": "10:23:00",
"position": {
"lat": 45.50468,
"lon": -73.69466
},
"bearing": 42,
"speed": 63,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275102361",
"headsign": "470-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "470",
"routeLongName": "Express Pierrefonds",
"shapeLink": "/storage/shapes/stm/4700247.json",
"shapeId": "4700247",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-12-17 11:20:23",
"meta": {}
},
{
"id": 3102,
"ref": "33843",
"isActive": true,
"label": "33843",
"timestamp": 1711638402,
"tripId": "275101675",
"routeId": "80",
"startTime": "10:33:00",
"position": {
"lat": 45.50739,
"lon": -73.56927
},
"bearing": 134,
"speed": 18,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275101675",
"headsign": "80-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "80",
"routeLongName": "Avenue du Parc",
"shapeLink": "/storage/shapes/stm/800107.json",
"shapeId": "800107",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-12-18 01:54:15",
"meta": {}
},
{
"id": 3104,
"ref": "29108",
"isActive": true,
"label": "29108",
"timestamp": 1711638401,
"tripId": "273969856",
"routeId": "37",
"startTime": "10:38:00",
"position": {
"lat": 45.4623,
"lon": -73.57587
},
"bearing": 94,
"speed": 7,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273969856",
"headsign": "37-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "37",
"routeLongName": "Jolicoeur",
"shapeLink": "/storage/shapes/stm/370145.json",
"shapeId": "370145",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-18 11:30:12",
"meta": {}
},
{
"id": 3109,
"ref": "39145",
"isActive": true,
"label": "39145",
"timestamp": 1711638404,
"tripId": "274627040",
"routeId": "33",
"startTime": "10:55:00",
"position": {
"lat": 45.61998,
"lon": -73.61792
},
"bearing": 148,
"speed": 6,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627040",
"headsign": "33-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": "/storage/shapes/stm/330282.json",
"shapeId": "330282",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-12-18 12:38:49",
"meta": {}
},
{
"id": 3117,
"ref": "40008",
"isActive": true,
"label": "40008",
"timestamp": 1711638403,
"tripId": "273971698",
"routeId": "113",
"startTime": "10:54:00",
"position": {
"lat": 45.4285,
"lon": -73.62231
},
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273971698",
"headsign": "113-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "113",
"routeLongName": "Lapierre",
"shapeLink": "/storage/shapes/stm/1130148.json",
"shapeId": "1130148",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-19 10:08:06",
"meta": {}
},
{
"id": 3127,
"ref": "40003",
"isActive": true,
"label": "40003",
"timestamp": 1711638389,
"tripId": "273971837",
"routeId": "108",
"startTime": "11:13:00",
"position": {
"lat": 45.4893,
"lon": -73.58305
},
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273971837",
"headsign": "108-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "108",
"routeLongName": "Bannantyne",
"shapeLink": "/storage/shapes/stm/1080075.json",
"shapeId": "1080075",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-19 12:38:50",
"meta": {}
},
{
"id": 3128,
"ref": "40029",
"isActive": true,
"label": "40029",
"timestamp": 1711638388,
"tripId": "273972530",
"routeId": "113",
"startTime": "10:37:00",
"position": {
"lat": 45.43667,
"lon": -73.61471
},
"bearing": 79,
"speed": 12,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972530",
"headsign": "113-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "113",
"routeLongName": "Lapierre",
"shapeLink": "/storage/shapes/stm/1130146.json",
"shapeId": "1130146",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-19 12:38:50",
"meta": {}
},
{
"id": 3130,
"ref": "40018",
"isActive": true,
"label": "40018",
"timestamp": 1711638405,
"tripId": "273972221",
"routeId": "425",
"startTime": "10:04:00",
"position": {
"lat": 45.48785,
"lon": -73.58272
},
"bearing": 317,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972221",
"headsign": "425-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "425",
"routeLongName": "Express Anse-à-l'Orme",
"shapeLink": "/storage/shapes/stm/4250077.json",
"shapeId": "4250077",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-19 12:40:53",
"meta": {}
},
{
"id": 3132,
"ref": "40015",
"isActive": true,
"label": "40015",
"timestamp": 1711638015,
"tripId": "273970083",
"routeId": "58",
"startTime": "10:30:00",
"position": {
"lat": 45.47031,
"lon": -73.56567
},
"bearing": 24,
"speed": 27,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970083",
"headsign": "58-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "58",
"routeLongName": "Wellington",
"shapeLink": "/storage/shapes/stm/580127.json",
"shapeId": "580127",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-19 13:00:50",
"meta": {}
},
{
"id": 3143,
"ref": "29851",
"isActive": true,
"label": "29851",
"timestamp": 1711638394,
"tripId": "276159333",
"routeId": "439",
"startTime": "09:59:00",
"position": {
"lat": 45.61145,
"lon": -73.66019
},
"bearing": 322,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159333",
"headsign": "439-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390241.json",
"shapeId": "4390241",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-12-20 12:14:17",
"meta": {}
},
{
"id": 3145,
"ref": "38082",
"isActive": true,
"label": "38082",
"timestamp": 1711638407,
"tripId": "274240550",
"routeId": "170",
"startTime": "10:56:00",
"position": {
"lat": 45.52256,
"lon": -73.70693
},
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240550",
"headsign": "170-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "170",
"routeLongName": "Keller",
"shapeLink": "/storage/shapes/stm/1700165.json",
"shapeId": "1700165",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-20 21:48:36",
"meta": {}
},
{
"id": 3146,
"ref": "30197",
"isActive": true,
"label": "30197",
"timestamp": 1711638401,
"tripId": "274629027",
"routeId": "141",
"startTime": "11:00:00",
"position": {
"lat": 45.57104,
"lon": -73.5875
},
"bearing": 31,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 54,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274629027",
"headsign": "141-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": "/storage/shapes/stm/1410578.json",
"shapeId": "1410578",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-12-20 22:28:25",
"meta": {}
},
{
"id": 3154,
"ref": "30182",
"isActive": true,
"label": "30182",
"timestamp": 1711638395,
"tripId": "276174319",
"routeId": "18",
"startTime": "10:42:00",
"position": {
"lat": 45.57427,
"lon": -73.56952
},
"bearing": 209,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174319",
"headsign": "18-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "18",
"routeLongName": "Beaubien",
"shapeLink": "/storage/shapes/stm/180218.json",
"shapeId": "180218",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-12-23 12:02:22",
"meta": {}
},
{
"id": 3155,
"ref": "33811",
"isActive": true,
"label": "33811",
"timestamp": 1711638405,
"tripId": "275102484",
"routeId": "470",
"startTime": "11:13:00",
"position": {
"lat": 45.46498,
"lon": -73.89178
},
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275102484",
"headsign": "470-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "470",
"routeLongName": "Express Pierrefonds",
"shapeLink": "/storage/shapes/stm/4700247.json",
"shapeId": "4700247",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2019-12-23 12:20:41",
"meta": {}
},
{
"id": 3160,
"ref": "40034",
"isActive": true,
"label": "40034",
"timestamp": 1711638405,
"tripId": "273974200",
"routeId": "123",
"startTime": "11:11:00",
"position": {
"lat": 45.45472,
"lon": -73.64064
},
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273974200",
"headsign": "123-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "123",
"routeLongName": "Dollard",
"shapeLink": "/storage/shapes/stm/1230109.json",
"shapeId": "1230109",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-23 21:02:37",
"meta": {}
},
{
"id": 3167,
"ref": "31110",
"isActive": true,
"label": "31110",
"timestamp": 1711638401,
"tripId": "276174826",
"routeId": "18",
"startTime": "10:12:00",
"position": {
"lat": 45.53329,
"lon": -73.60567
},
"bearing": 212,
"speed": 18,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174826",
"headsign": "18-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "18",
"routeLongName": "Beaubien",
"shapeLink": "/storage/shapes/stm/180218.json",
"shapeId": "180218",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-12-24 22:24:31",
"meta": {}
},
{
"id": 3170,
"ref": "30200",
"isActive": true,
"label": "30200",
"timestamp": 1711638393,
"tripId": "274628076",
"routeId": "141",
"startTime": "10:30:00",
"position": {
"lat": 45.60852,
"lon": -73.55779
},
"bearing": 11,
"speed": 18,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274628076",
"headsign": "141-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": "/storage/shapes/stm/1410578.json",
"shapeId": "1410578",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-12-27 11:14:11",
"meta": {}
},
{
"id": 3173,
"ref": "40038",
"isActive": true,
"label": "40038",
"timestamp": 1711638405,
"tripId": "273969723",
"routeId": "36",
"startTime": "10:59:00",
"position": {
"lat": 45.45679,
"lon": -73.59538
},
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273969723",
"headsign": "36-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "36",
"routeLongName": "Monk",
"shapeLink": "/storage/shapes/stm/360145.json",
"shapeId": "360145",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-27 22:10:45",
"meta": {}
},
{
"id": 3186,
"ref": "29110",
"isActive": true,
"label": "29110",
"timestamp": 1711638402,
"tripId": "273974293",
"routeId": "496",
"startTime": "11:02:00",
"position": {
"lat": 45.48559,
"lon": -73.57714
},
"bearing": 306,
"speed": 23,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273974293",
"headsign": "496-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "496",
"routeLongName": "Express Victoria",
"shapeLink": "/storage/shapes/stm/4960094.json",
"shapeId": "4960094",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-31 22:30:15",
"meta": {}
},
{
"id": 3189,
"ref": "28123",
"isActive": true,
"label": "28123",
"timestamp": 1711638389,
"tripId": "273973161",
"routeId": "191",
"startTime": "10:25:00",
"position": {
"lat": 45.46856,
"lon": -73.59573
},
"bearing": 61,
"speed": 23,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973161",
"headsign": "191-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "191",
"routeLongName": "Broadway / Provost",
"shapeLink": "/storage/shapes/stm/1910884.json",
"shapeId": "1910884",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-01-01 17:14:05",
"meta": {}
},
{
"id": 3218,
"ref": "40043",
"isActive": true,
"label": "40043",
"timestamp": 1711638397,
"tripId": "273973321",
"routeId": "491",
"startTime": "11:07:00",
"position": {
"lat": 45.43762,
"lon": -73.69016
},
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973321",
"headsign": "491-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "491",
"routeLongName": "Express Lachine",
"shapeLink": "/storage/shapes/stm/4910078.json",
"shapeId": "4910078",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-01-08 23:39:02",
"meta": {}
},
{
"id": 3223,
"ref": "40041",
"isActive": true,
"label": "40041",
"timestamp": 1711638317,
"tripId": "273972000",
"routeId": "195",
"startTime": "10:08:00",
"position": {
"lat": 45.44709,
"lon": -73.60506
},
"bearing": 97,
"speed": 27,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 70,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972000",
"headsign": "195-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "195",
"routeLongName": "Sherbrooke / Notre-Dame",
"shapeLink": "/storage/shapes/stm/1950168.json",
"shapeId": "1950168",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-01-09 19:40:57",
"meta": {}
},
{
"id": 3235,
"ref": "33806",
"isActive": true,
"label": "33806",
"timestamp": 1711638393,
"tripId": "275101742",
"routeId": "80",
"startTime": "10:18:00",
"position": {
"lat": 45.51036,
"lon": -73.56485
},
"bearing": 0,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275101742",
"headsign": "80-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "80",
"routeLongName": "Avenue du Parc",
"shapeLink": "/storage/shapes/stm/800107.json",
"shapeId": "800107",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2020-01-13 11:50:50",
"meta": {}
},
{
"id": 3241,
"ref": "40046",
"isActive": true,
"label": "40046",
"timestamp": 1711638402,
"tripId": "273969519",
"routeId": "12",
"startTime": "10:47:00",
"position": {
"lat": 45.46758,
"lon": -73.53849
},
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273969519",
"headsign": "12-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "12",
"routeLongName": "Île-des-Soeurs",
"shapeLink": "/storage/shapes/stm/120112.json",
"shapeId": "120112",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-01-14 11:14:45",
"meta": {}
},
{
"id": 3244,
"ref": "29099",
"isActive": true,
"label": "29099",
"timestamp": 1711638393,
"tripId": "273974026",
"routeId": "491",
"startTime": "11:23:00",
"position": {
"lat": 45.48335,
"lon": -73.58035
},
"bearing": 51,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273974026",
"headsign": "491-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "491",
"routeLongName": "Express Lachine",
"shapeLink": "/storage/shapes/stm/4910077.json",
"shapeId": "4910077",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-01-14 20:10:24",
"meta": {}
},
{
"id": 3247,
"ref": "40052",
"isActive": true,
"label": "40052",
"timestamp": 1711638396,
"tripId": "273970964",
"routeId": "110",
"startTime": "10:50:00",
"position": {
"lat": 45.41773,
"lon": -73.61855
},
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970964",
"headsign": "110-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "110",
"routeLongName": "Centrale",
"shapeLink": "/storage/shapes/stm/1100202.json",
"shapeId": "1100202",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-01-15 10:48:31",
"meta": {}
},
{
"id": 3249,
"ref": "40002",
"isActive": true,
"label": "40002",
"timestamp": 1711638397,
"tripId": "273970437",
"routeId": "63",
"startTime": "10:55:00",
"position": {
"lat": 45.47288,
"lon": -73.61278
},
"bearing": 122,
"speed": 18,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970437",
"headsign": "63-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "63",
"routeLongName": "Girouard",
"shapeLink": "/storage/shapes/stm/630363.json",
"shapeId": "630363",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-01-15 11:16:44",
"meta": {}
},
{
"id": 3250,
"ref": "28012",
"isActive": true,
"label": "28012",
"timestamp": 1711638394,
"tripId": "273970804",
"routeId": "78",
"startTime": "10:45:00",
"position": {
"lat": 45.45058,
"lon": -73.59646
},
"bearing": 256,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970804",
"headsign": "78-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "78",
"routeLongName": "Laurendeau",
"shapeLink": "/storage/shapes/stm/780087.json",
"shapeId": "780087",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-01-15 12:06:23",
"meta": {}
},
{
"id": 3251,
"ref": "29024",
"isActive": true,
"label": "29024",
"timestamp": 1711638394,
"tripId": "276173973",
"routeId": "95",
"startTime": "10:29:00",
"position": {
"lat": 45.54586,
"lon": -73.60401
},
"bearing": 217,
"speed": 21,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276173973",
"headsign": "95-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "95",
"routeLongName": "Bélanger",
"shapeLink": "/storage/shapes/stm/950100.json",
"shapeId": "950100",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2020-01-15 20:36:30",
"meta": {}
},
{
"id": 3257,
"ref": "33819",
"isActive": true,
"label": "33819",
"timestamp": 1711638407,
"tripId": "275102164",
"routeId": "165",
"startTime": "10:45:00",
"position": {
"lat": 45.49615,
"lon": -73.6219
},
"bearing": 0,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275102164",
"headsign": "165-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "165",
"routeLongName": "Côte-des-Neiges",
"shapeLink": "/storage/shapes/stm/1650117.json",
"shapeId": "1650117",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2020-01-16 21:01:00",
"meta": {}
},
{
"id": 3260,
"ref": "40035",
"isActive": true,
"label": "40035",
"timestamp": 1711638393,
"tripId": "273972051",
"routeId": "110",
"startTime": "10:17:00",
"position": {
"lat": 45.44596,
"lon": -73.67813
},
"bearing": 267,
"speed": 18,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972051",
"headsign": "110-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "110",
"routeLongName": "Centrale",
"shapeLink": "/storage/shapes/stm/1100202.json",
"shapeId": "1100202",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-01-17 14:07:00",
"meta": {}
},
{
"id": 3262,
"ref": "40012",
"isActive": true,
"label": "40012",
"timestamp": 1711638404,
"tripId": "273971182",
"routeId": "102",
"startTime": "11:07:00",
"position": {
"lat": 45.47382,
"lon": -73.60346
},
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273971182",
"headsign": "102-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "102",
"routeLongName": "Somerled",
"shapeLink": "/storage/shapes/stm/1020074.json",
"shapeId": "1020074",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-01-17 16:46:50",
"meta": {}
},
{
"id": 3268,
"ref": "31028",
"isActive": true,
"label": "31028",
"timestamp": 1711638403,
"tripId": "276174393",
"routeId": "18",
"startTime": "10:13:00",
"position": {
"lat": 45.58841,
"lon": -73.56046
},
"bearing": 22,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174393",
"headsign": "18-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "18",
"routeLongName": "Beaubien",
"shapeLink": "/storage/shapes/stm/180220.json",
"shapeId": "180220",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2020-01-20 20:46:52",
"meta": {}
},
{
"id": 3272,
"ref": "40051",
"isActive": true,
"label": "40051",
"timestamp": 1711638403,
"tripId": "273970015",
"routeId": "57",
"startTime": "10:34:00",
"position": {
"lat": 45.48127,
"lon": -73.55522
},
"bearing": 271,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970015",
"headsign": "57-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "57",
"routeLongName": "Pointe-Saint-Charles",
"shapeLink": "/storage/shapes/stm/570097.json",
"shapeId": "570097",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-01-20 23:51:02",
"meta": {}
},
{
"id": 3277,
"ref": "31861",
"isActive": true,
"label": "31861",
"timestamp": 1711638393,
"tripId": "276160182",
"routeId": "121",
"startTime": "10:40:00",
"position": {
"lat": 45.53144,
"lon": -73.66724
},
"bearing": 22,
"speed": 54,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276160182",
"headsign": "121-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "121",
"routeLongName": "Sauvé / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/1210266.json",
"shapeId": "1210266",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2020-01-21 17:56:37",
"meta": {}
},
{
"id": 3282,
"ref": "30161",
"isActive": true,
"label": "30161",
"timestamp": 1711638402,
"tripId": "274626901",
"routeId": "40",
"startTime": "11:21:00",
"position": {
"lat": 45.6746,
"lon": -73.50549
},
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274626901",
"headsign": "40-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "40",
"routeLongName": "Henri-Bourassa-Est",
"shapeLink": "/storage/shapes/stm/400083.json",
"shapeId": "400083",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2020-01-22 12:38:47",
"meta": {}
},
{
"id": 3297,
"ref": "40059",
"isActive": true,
"label": "40059",
"timestamp": 1711638390,
"tripId": "273974162",
"routeId": "495",
"startTime": "11:03:00",
"position": {
"lat": 45.44915,
"lon": -73.613
},
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273974162",
"headsign": "495-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "495",
"routeLongName": "Express Lachine / LaSalle",
"shapeLink": "/storage/shapes/stm/4950131.json",
"shapeId": "4950131",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-01-27 12:34:08",
"meta": {}
},
{
"id": 3305,
"ref": "40025",
"isActive": true,
"label": "40025",
"timestamp": 1711638387,
"tripId": "273969595",
"routeId": "35",
"startTime": "10:58:00",
"position": {
"lat": 45.4851,
"lon": -73.57164
},
"bearing": 48,
"speed": 45,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273969595",
"headsign": "35-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "35",
"routeLongName": "Griffintown",
"shapeLink": "/storage/shapes/stm/350013.json",
"shapeId": "350013",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-01-28 12:49:09",
"meta": {}
},
{
"id": 3306,
"ref": "31047",
"isActive": true,
"label": "31047",
"timestamp": 1711638392,
"tripId": "274738084",
"routeId": "777",
"startTime": "10:57:00",
"position": {
"lat": 45.50135,
"lon": -73.54422
},
"bearing": 185,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274738084",
"headsign": "777-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "777",
"routeLongName": "Jean-Drapeau / Casino / Bonaventure",
"shapeLink": "/storage/shapes/stm/7770041.json",
"shapeId": "7770041",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2020-01-28 20:36:06",
"meta": {}
},
{
"id": 3318,
"ref": "31849",
"isActive": true,
"label": "31849",
"timestamp": 1711638405,
"tripId": "276160021",
"routeId": "121",
"startTime": "10:37:00",
"position": {
"lat": 45.52756,
"lon": -73.66975
},
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276160021",
"headsign": "121-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "121",
"routeLongName": "Sauvé / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/1210245.json",
"shapeId": "1210245",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2020-02-03 17:11:06",
"meta": {}
},
{
"id": 3319,
"ref": "33841",
"isActive": true,
"label": "33841",
"timestamp": 1711638393,
"tripId": "275101688",
"routeId": "80",
"startTime": "10:35:00",
"position": {
"lat": 45.53024,
"lon": -73.63615
},
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275101688",
"headsign": "80-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "80",
"routeLongName": "Avenue du Parc",
"shapeLink": "/storage/shapes/stm/800106.json",
"shapeId": "800106",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2020-02-04 00:34:03",
"meta": {}
},
{
"id": 3321,
"ref": "37007",
"isActive": true,
"label": "37007",
"timestamp": 1711638395,
"tripId": "275099840",
"routeId": "128",
"startTime": "10:31:00",
"position": {
"lat": 45.51139,
"lon": -73.67861
},
"bearing": 45,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275099840",
"headsign": "128-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "128",
"routeLongName": "Saint-Laurent",
"shapeLink": "/storage/shapes/stm/1280151.json",
"shapeId": "1280151",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2020-02-04 01:15:06",
"meta": {}
},
{
"id": 3324,
"ref": "38017",
"isActive": true,
"label": "38017",
"timestamp": 1711638392,
"tripId": "274737004",
"routeId": "74",
"startTime": "10:48:00",
"position": {
"lat": 45.48028,
"lon": -73.54245
},
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737004",
"headsign": "74-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "74",
"routeLongName": "Bridge",
"shapeLink": "/storage/shapes/stm/740071.json",
"shapeId": "740071",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2020-02-05 03:04:07",
"meta": {}
},
{
"id": 3327,
"ref": "40050",
"isActive": true,
"label": "40050",
"timestamp": 1711638397,
"tripId": "273970890",
"routeId": "90",
"startTime": "10:54:00",
"position": {
"lat": 45.47361,
"lon": -73.60381
},
"bearing": 0,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970890",
"headsign": "90-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "90",
"routeLongName": "Saint-Jacques",
"shapeLink": "/storage/shapes/stm/900254.json",
"shapeId": "900254",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-02-05 15:56:05",
"meta": {}
},
{
"id": 3332,
"ref": "29035",
"isActive": true,
"label": "29035",
"timestamp": 1711638396,
"tripId": "276174075",
"routeId": "46",
"startTime": "10:57:00",
"position": {
"lat": 45.5275,
"lon": -73.59708
},
"bearing": 127,
"speed": 29,
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174075",
"headsign": "46-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "46",
"routeLongName": "Casgrain",
"shapeLink": "/storage/shapes/stm/460057.json",
"shapeId": "460057",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2020-02-06 16:27:03",
"meta": {}
},
{
"id": 3346,
"ref": "39113",
"isActive": true,
"label": "39113",
"timestamp": 1711638396,
"tripId": "274627089",
"routeId": "141",
"startTime": "10:44:00",
"position": {
"lat": 45.59373,
"lon": -73.57357
},
"bearing": 211,
"speed": 14,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627089",
"headsign": "141-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": "/storage/shapes/stm/1410573.json",
"shapeId": "1410573",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2020-02-11 01:29:09",
"meta": {}
},
{
"id": 3360,
"ref": "30239",
"isActive": true,
"label": "30239",
"timestamp": 1711638391,
"tripId": "274239458",
"routeId": "64",
"startTime": "11:25:00",
"position": {
"lat": 45.5146,
"lon": -73.68383
},
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274239458",
"headsign": "64-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "64",
"routeLongName": "Grenet",
"shapeLink": "/storage/shapes/stm/640164.json",
"shapeId": "640164",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-02-15 01:06:04",
"meta": {}
},
{
"id": 3362,
"ref": "27516",
"isActive": true,
"label": "27516",
"timestamp": 1711638402,
"tripId": "273971870",
"routeId": "109",
"startTime": "10:57:00",
"position": {
"lat": 45.44886,
"lon": -73.61198
},
"bearing": 303,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273971870",
"headsign": "109-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "109",
"routeLongName": "Boulevard Shevchenko",
"shapeLink": "/storage/shapes/stm/1090086.json",
"shapeId": "1090086",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-02-15 22:43:03",
"meta": {}
},
{
"id": 3369,
"ref": "29154",
"isActive": true,
"label": "29154",
"timestamp": 1711638006,
"tripId": "275102732",
"routeId": "747",
"startTime": "10:24:00",
"position": {
"lat": 45.51514,
"lon": -73.56072
},
"bearing": 82,
"speed": 1,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275102732",
"headsign": "747-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "747",
"routeLongName": "YUL Aéroport / Centre-Ville",
"shapeLink": "/storage/shapes/stm/7471231.json",
"shapeId": "7471231",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2020-02-19 21:04:03",
"meta": {}
},
{
"id": 3370,
"ref": "30113",
"isActive": true,
"label": "30113",
"timestamp": 1711638404,
"tripId": "276173849",
"routeId": "55",
"startTime": "10:33:00",
"position": {
"lat": 45.52377,
"lon": -73.59441
},
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276173849",
"headsign": "55-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "55",
"routeLongName": "Boulevard Saint-Laurent",
"shapeLink": "/storage/shapes/stm/550146.json",
"shapeId": "550146",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2020-02-20 02:03:04",
"meta": {}
},
{
"id": 3378,
"ref": "31008",
"isActive": true,
"label": "31008",
"timestamp": 1711638396,
"tripId": "275102884",
"routeId": "747",
"startTime": "10:55:00",
"position": {
"lat": 45.44775,
"lon": -73.63805
},
"bearing": 52,
"speed": 72,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275102884",
"headsign": "747-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "747",
"routeLongName": "YUL Aéroport / Centre-Ville",
"shapeLink": "/storage/shapes/stm/7471231.json",
"shapeId": "7471231",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2020-02-26 03:25:06",
"meta": {}
},
{
"id": 3391,
"ref": "33815",
"isActive": true,
"label": "33815",
"timestamp": 1711638404,
"tripId": "275102431",
"routeId": "470",
"startTime": "10:37:00",
"position": {
"lat": 45.4766,
"lon": -73.8382
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 6,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275102431",
"headsign": "470-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "470",
"routeLongName": "Express Pierrefonds",
"shapeLink": "/storage/shapes/stm/4700246.json",
"shapeId": "4700246",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2020-02-28 22:00:06",
"meta": {}
},
{
"id": 3399,
"ref": "30129",
"isActive": true,
"label": "30129",
"timestamp": 1711638407,
"tripId": "274628220",
"routeId": "141",
"startTime": "11:02:00",
"position": {
"lat": 45.60704,
"lon": -73.53807
},
"bearing": 303,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274628220",
"headsign": "141-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": "/storage/shapes/stm/1410573.json",
"shapeId": "1410573",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2020-03-03 17:37:06",
"meta": {}
},
{
"id": 3404,
"ref": "29818",
"isActive": true,
"label": "29818",
"timestamp": 1711638404,
"tripId": "275102058",
"routeId": "165",
"startTime": "10:49:00",
"position": {
"lat": 45.49677,
"lon": -73.62327
},
"bearing": 303,
"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": [
1,
2,
3,
22
],
"tags": [
9
],
"trip": {
"id": "275102058",
"headsign": "165-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "165",
"routeLongName": "Côte-des-Neiges",
"shapeLink": "/storage/shapes/stm/1650125.json",
"shapeId": "1650125",
"serviceId": "24M-H50M000S-85-S",
"blockId": null
},
"createdAt": "2020-03-04 17:15:04",
"meta": {}
},
{
"id": 6417,
"ref": "30120",
"isActive": true,
"label": "30120",
"timestamp": 1711638393,
"tripId": "274627486",
"routeId": "49",
"startTime": "10:04:00",
"position": {
"lat": 45.66759,
"lon": -73.54793
},
"bearing": 0,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627486",
"headsign": "49-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "49",
"routeLongName": "Maurice-Duplessis",
"shapeLink": "/storage/shapes/stm/490344.json",
"shapeId": "490344",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2020-03-05 14:40:03",
"meta": {}
},
{
"id": 6913,
"ref": "39901",
"isActive": true,
"label": "39901",
"timestamp": 1711638391,
"tripId": "273969690",
"routeId": "36",
"startTime": "11:01:00",
"position": {
"lat": 45.49335,
"lon": -73.57126
},
"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": [
1,
2,
3,
22
],
"tags": [
1,
4
],
"trip": {
"id": "273969690",
"headsign": "36-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "36",
"routeLongName": "Monk",
"shapeLink": "/storage/shapes/stm/360144.json",
"shapeId": "360144",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-03-12 15:26:16",
"meta": {}
},
{
"id": 7023,
"ref": "30207",
"isActive": true,
"label": "30207",
"timestamp": 1711638391,
"tripId": "276174587",
"routeId": "129",
"startTime": "11:15:00",
"position": {
"lat": 45.48293,
"lon": -73.63541
},
"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": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174587",
"headsign": "129-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "129",
"routeLongName": "Côte-Sainte-Catherine",
"shapeLink": "/storage/shapes/stm/1290221.json",
"shapeId": "1290221",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2020-03-23 17:02:09",
"meta": {}
},
{
"id": 7093,
"ref": "31064",
"isActive": true,
"label": "31064",
"timestamp": 1711638404,
"tripId": "274736589",
"routeId": "24",
"startTime": "10:22:00",
"position": {
"lat": 45.52258,
"lon": -73.56599
},
"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": 3,
"label": "Congestion"
},
"occupancyStatus": {
"data": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274736589",
"headsign": "24-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "24",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/240183.json",
"shapeId": "240183",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2020-04-09 14:08:06",
"meta": {}
},
{
"id": 7117,
"ref": "30119",
"isActive": true,
"label": "30119",
"timestamp": 1711638405,
"tripId": "276174947",
"routeId": "129",
"startTime": "10:52:00",
"position": {
"lat": 45.50036,
"lon": -73.62594
},
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276174947",
"headsign": "129-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "129",
"routeLongName": "Côte-Sainte-Catherine",
"shapeLink": "/storage/shapes/stm/1290221.json",
"shapeId": "1290221",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2020-04-22 10:41:03",
"meta": {}
},
{
"id": 7408,
"ref": "40090",
"isActive": true,
"label": "40090",
"timestamp": 1711638405,
"tripId": "273969485",
"routeId": "12",
"startTime": "10:50:00",
"position": {
"lat": 45.46806,
"lon": -73.53873
},
"bearing": 331,
"speed": 45,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273969485",
"headsign": "12-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "12",
"routeLongName": "Île-des-Soeurs",
"shapeLink": "/storage/shapes/stm/120111.json",
"shapeId": "120111",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-08-04 05:02:05",
"meta": {}
},
{
"id": 7414,
"ref": "40089",
"isActive": true,
"label": "40089",
"timestamp": 1711638391,
"tripId": "273971497",
"routeId": "106",
"startTime": "11:09:00",
"position": {
"lat": 45.4255,
"lon": -73.64801
},
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273971497",
"headsign": "106-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "106",
"routeLongName": "Newman",
"shapeLink": "/storage/shapes/stm/1060131.json",
"shapeId": "1060131",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-08-07 05:53:08",
"meta": {}
},
{
"id": 7417,
"ref": "40101",
"isActive": true,
"label": "40101",
"timestamp": 1711638407,
"tripId": "273971769",
"routeId": "108",
"startTime": "10:41:00",
"position": {
"lat": 45.44357,
"lon": -73.57706
},
"bearing": 228,
"speed": 27,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273971769",
"headsign": "108-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "108",
"routeLongName": "Bannantyne",
"shapeLink": "/storage/shapes/stm/1080075.json",
"shapeId": "1080075",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-08-07 06:39:09",
"meta": {}
},
{
"id": 7425,
"ref": "40104",
"isActive": true,
"label": "40104",
"timestamp": 1711638399,
"tripId": "273969500",
"routeId": "12",
"startTime": "11:16:00",
"position": {
"lat": 45.44841,
"lon": -73.56104
},
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273969500",
"headsign": "12-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "12",
"routeLongName": "Île-des-Soeurs",
"shapeLink": "/storage/shapes/stm/120112.json",
"shapeId": "120112",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-08-12 05:50:05",
"meta": {}
},
{
"id": 7426,
"ref": "40106",
"isActive": true,
"label": "40106",
"timestamp": 1711638405,
"tripId": "273969881",
"routeId": "37",
"startTime": "10:29:00",
"position": {
"lat": 45.46368,
"lon": -73.58777
},
"bearing": 271,
"speed": 18,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273969881",
"headsign": "37-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "37",
"routeLongName": "Jolicoeur",
"shapeLink": "/storage/shapes/stm/370148.json",
"shapeId": "370148",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-08-12 06:53:07",
"meta": {}
},
{
"id": 7427,
"ref": "40103",
"isActive": true,
"label": "40103",
"timestamp": 1711638404,
"tripId": "273971437",
"routeId": "106",
"startTime": "11:03:00",
"position": {
"lat": 45.44672,
"lon": -73.61111
},
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273971437",
"headsign": "106-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "106",
"routeLongName": "Newman",
"shapeLink": "/storage/shapes/stm/1060130.json",
"shapeId": "1060130",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-08-12 07:14:07",
"meta": {}
},
{
"id": 7703,
"ref": "40084",
"isActive": true,
"label": "40084",
"timestamp": 1711638388,
"tripId": "273970868",
"routeId": "90",
"startTime": "11:08: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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970868",
"headsign": "90-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "90",
"routeLongName": "Saint-Jacques",
"shapeLink": "/storage/shapes/stm/900252.json",
"shapeId": "900252",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-08-13 15:52:05",
"meta": {}
},
{
"id": 7892,
"ref": "40121",
"isActive": true,
"label": "40121",
"timestamp": 1711638396,
"tripId": "273969787",
"routeId": "37",
"startTime": "11:04:00",
"position": {
"lat": 45.47318,
"lon": -73.60533
},
"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": 3,
"label": "Congestion"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273969787",
"headsign": "37-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "37",
"routeLongName": "Jolicoeur",
"shapeLink": "/storage/shapes/stm/370145.json",
"shapeId": "370145",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-08-20 15:11:09",
"meta": {}
},
{
"id": 7910,
"ref": "40087",
"isActive": true,
"label": "40087",
"timestamp": 1711638407,
"tripId": "273971239",
"routeId": "102",
"startTime": "11:03:00",
"position": {
"lat": 45.46307,
"lon": -73.64198
},
"bearing": 28,
"speed": 6,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273971239",
"headsign": "102-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "102",
"routeLongName": "Somerled",
"shapeLink": "/storage/shapes/stm/1020075.json",
"shapeId": "1020075",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-08-22 05:07:05",
"meta": {}
},
{
"id": 8097,
"ref": "40064",
"isActive": true,
"label": "40064",
"timestamp": 1711638394,
"tripId": "273969810",
"routeId": "37",
"startTime": "10:53:00",
"position": {
"lat": 45.45724,
"lon": -73.58762
},
"bearing": 91,
"speed": 36,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273969810",
"headsign": "37-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "37",
"routeLongName": "Jolicoeur",
"shapeLink": "/storage/shapes/stm/370148.json",
"shapeId": "370148",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-08-24 16:46:06",
"meta": {}
},
{
"id": 8415,
"ref": "40099",
"isActive": true,
"label": "40099",
"timestamp": 1711638390,
"tripId": "273972993",
"routeId": "191",
"startTime": "11:24:00",
"position": {
"lat": 45.44861,
"lon": -73.7427
},
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972993",
"headsign": "191-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "191",
"routeLongName": "Broadway / Provost",
"shapeLink": "/storage/shapes/stm/1910884.json",
"shapeId": "1910884",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-08-25 15:37:06",
"meta": {}
},
{
"id": 8487,
"ref": "40083",
"isActive": true,
"label": "40083",
"timestamp": 1711638391,
"tripId": "273970268",
"routeId": "107",
"startTime": "11:09:00",
"position": {
"lat": 45.44395,
"lon": -73.57684
},
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970268",
"headsign": "107-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "107",
"routeLongName": "Verdun",
"shapeLink": "/storage/shapes/stm/1070131.json",
"shapeId": "1070131",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-08-26 10:58:06",
"meta": {}
},
{
"id": 8602,
"ref": "40075",
"isActive": true,
"label": "40075",
"timestamp": 1711638393,
"tripId": "273969750",
"routeId": "36",
"startTime": "10:33:00",
"position": {
"lat": 45.46865,
"lon": -73.59546
},
"bearing": 248,
"speed": 27,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273969750",
"headsign": "36-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "36",
"routeLongName": "Monk",
"shapeLink": "/storage/shapes/stm/360144.json",
"shapeId": "360144",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-08-28 22:49:05",
"meta": {}
},
{
"id": 8630,
"ref": "40077",
"isActive": true,
"label": "40077",
"timestamp": 1711638395,
"tripId": "273971647",
"routeId": "58",
"startTime": "10:54:00",
"position": {
"lat": 45.45457,
"lon": -73.56775
},
"bearing": 183,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273971647",
"headsign": "58-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "58",
"routeLongName": "Wellington",
"shapeLink": "/storage/shapes/stm/580123.json",
"shapeId": "580123",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-08-31 07:38:10",
"meta": {}
},
{
"id": 8765,
"ref": "40067",
"isActive": true,
"label": "40067",
"timestamp": 1711638397,
"tripId": "273973303",
"routeId": "211",
"startTime": "10:35:00",
"position": {
"lat": 45.44347,
"lon": -73.74374
},
"bearing": 98,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973303",
"headsign": "211-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "211",
"routeLongName": "Bord-du-Lac",
"shapeLink": "/storage/shapes/stm/2110142.json",
"shapeId": "2110142",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-09-08 07:44:14",
"meta": {}
},
{
"id": 8784,
"ref": "40080",
"isActive": true,
"label": "40080",
"timestamp": 1711638406,
"tripId": "273970750",
"routeId": "78",
"startTime": "10:44:00",
"position": {
"lat": 45.47923,
"lon": -73.58438
},
"bearing": 25,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970750",
"headsign": "78-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "78",
"routeLongName": "Laurendeau",
"shapeLink": "/storage/shapes/stm/780088.json",
"shapeId": "780088",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-09-10 04:56:03",
"meta": {}
},
{
"id": 8807,
"ref": "40078",
"isActive": true,
"label": "40078",
"timestamp": 1711638407,
"tripId": "273971352",
"routeId": "104",
"startTime": "10:54:00",
"position": {
"lat": 45.47912,
"lon": -73.60332
},
"bearing": 0,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273971352",
"headsign": "104-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "104",
"routeLongName": "Cavendish",
"shapeLink": "/storage/shapes/stm/1040115.json",
"shapeId": "1040115",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-09-12 11:28:06",
"meta": {}
},
{
"id": 8838,
"ref": "40073",
"isActive": true,
"label": "40073",
"timestamp": 1711638407,
"tripId": "273972320",
"routeId": "112",
"startTime": "11:08:00",
"position": {
"lat": 45.45691,
"lon": -73.58224
},
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972320",
"headsign": "112-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "112",
"routeLongName": "Airlie",
"shapeLink": "/storage/shapes/stm/1120163.json",
"shapeId": "1120163",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-09-17 17:20:19",
"meta": {}
},
{
"id": 8848,
"ref": "40095",
"isActive": true,
"label": "40095",
"timestamp": 1711638393,
"tripId": "273969983",
"routeId": "57",
"startTime": "10:46:00",
"position": {
"lat": 45.48038,
"lon": -73.56552
},
"bearing": 51,
"speed": 45,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273969983",
"headsign": "57-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "57",
"routeLongName": "Pointe-Saint-Charles",
"shapeLink": "/storage/shapes/stm/570099.json",
"shapeId": "570099",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-09-18 15:36:11",
"meta": {}
},
{
"id": 8860,
"ref": "31182",
"isActive": true,
"label": "31182",
"timestamp": 1711638117,
"tripId": "274737791",
"routeId": "185",
"startTime": "10:16:00",
"position": {
"lat": 45.53289,
"lon": -73.55061
},
"bearing": 119,
"speed": 10,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737791",
"headsign": "185-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "185",
"routeLongName": "Sherbrooke",
"shapeLink": "/storage/shapes/stm/1850127.json",
"shapeId": "1850127",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2020-09-21 08:37:07",
"meta": {}
},
{
"id": 8894,
"ref": "40076",
"isActive": true,
"label": "40076",
"timestamp": 1711638391,
"tripId": "273974377",
"routeId": "211",
"startTime": "10:55:00",
"position": {
"lat": 45.44731,
"lon": -73.67323
},
"bearing": 272,
"speed": 63,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273974377",
"headsign": "211-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "211",
"routeLongName": "Bord-du-Lac",
"shapeLink": "/storage/shapes/stm/2110141.json",
"shapeId": "2110141",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-09-24 17:16:12",
"meta": {}
},
{
"id": 8895,
"ref": "40088",
"isActive": true,
"label": "40088",
"timestamp": 1711638402,
"tripId": "273971470",
"routeId": "106",
"startTime": "10:56:00",
"position": {
"lat": 45.42897,
"lon": -73.63866
},
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273971470",
"headsign": "106-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "106",
"routeLongName": "Newman",
"shapeLink": "/storage/shapes/stm/1060131.json",
"shapeId": "1060131",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-09-24 20:55:06",
"meta": {}
},
{
"id": 8897,
"ref": "40068",
"isActive": true,
"label": "40068",
"timestamp": 1711638393,
"tripId": "273973193",
"routeId": "191",
"startTime": "11:04:00",
"position": {
"lat": 45.47905,
"lon": -73.58196
},
"bearing": 232,
"speed": 14,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973193",
"headsign": "191-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "191",
"routeLongName": "Broadway / Provost",
"shapeLink": "/storage/shapes/stm/1910883.json",
"shapeId": "1910883",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-09-25 05:29:05",
"meta": {}
},
{
"id": 8907,
"ref": "40092",
"isActive": true,
"label": "40092",
"timestamp": 1711638397,
"tripId": "273973875",
"routeId": "420",
"startTime": "10:36:00",
"position": {
"lat": 45.49607,
"lon": -73.56748
},
"bearing": 309,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973875",
"headsign": "420-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "420",
"routeLongName": "Express Notre-Dame-de-Grâce",
"shapeLink": "/storage/shapes/stm/4200113.json",
"shapeId": "4200113",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-09-28 06:18:05",
"meta": {}
},
{
"id": 8911,
"ref": "30146",
"isActive": true,
"label": "30146",
"timestamp": 1711638400,
"tripId": "276173738",
"routeId": "161",
"startTime": "10:40:00",
"position": {
"lat": 45.50241,
"lon": -73.63083
},
"bearing": 31,
"speed": 27,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
7
],
"trip": {
"id": "276173738",
"headsign": "161-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "161",
"routeLongName": "Van Horne",
"shapeLink": "/storage/shapes/stm/1610137.json",
"shapeId": "1610137",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2020-09-29 06:01:05",
"meta": {}
},
{
"id": 8913,
"ref": "40066",
"isActive": true,
"label": "40066",
"timestamp": 1711637932,
"tripId": "273972204",
"routeId": "110",
"startTime": "09:58:00",
"position": {
"lat": 45.44699,
"lon": -73.6045
},
"bearing": 215,
"speed": 18,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 75,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972204",
"headsign": "110-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "110",
"routeLongName": "Centrale",
"shapeLink": "/storage/shapes/stm/1100199.json",
"shapeId": "1100199",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-09-29 17:32:12",
"meta": {}
},
{
"id": 8917,
"ref": "40111",
"isActive": true,
"label": "40111",
"timestamp": 1711638398,
"tripId": "273970599",
"routeId": "71",
"startTime": "10:50:00",
"position": {
"lat": 45.48038,
"lon": -73.5662
},
"bearing": 229,
"speed": 45,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970599",
"headsign": "71-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "71",
"routeLongName": "Du Centre",
"shapeLink": "/storage/shapes/stm/710076.json",
"shapeId": "710076",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-09-30 07:33:10",
"meta": {}
},
{
"id": 9050,
"ref": "40143",
"isActive": true,
"label": "40143",
"timestamp": 1711638392,
"tripId": "274243097",
"routeId": "419",
"startTime": "11:01:00",
"position": {
"lat": 45.42775,
"lon": -73.92057
},
"bearing": 50,
"speed": 18,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274243097",
"headsign": "419-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "419",
"routeLongName": "Express John Abbott",
"shapeLink": "/storage/shapes/stm/4190062.json",
"shapeId": "4190062",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-10-05 15:36:13",
"meta": {}
},
{
"id": 9080,
"ref": "40156",
"isActive": true,
"label": "40156",
"timestamp": 1711638388,
"tripId": "274242346",
"routeId": "205",
"startTime": "11:05:00",
"position": {
"lat": 45.46542,
"lon": -73.83145
},
"bearing": 326,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242346",
"headsign": "205-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "205",
"routeLongName": "Gouin",
"shapeLink": "/storage/shapes/stm/2050109.json",
"shapeId": "2050109",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-10-09 14:17:07",
"meta": {}
},
{
"id": 9081,
"ref": "40122",
"isActive": true,
"label": "40122",
"timestamp": 1711638399,
"tripId": "274242702",
"routeId": "217",
"startTime": "10:54:00",
"position": {
"lat": 45.43729,
"lon": -73.84858
},
"bearing": 251,
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242702",
"headsign": "217-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "217",
"routeLongName": "Anse-à-l'Orme",
"shapeLink": "/storage/shapes/stm/2170104.json",
"shapeId": "2170104",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-10-09 14:52:11",
"meta": {}
},
{
"id": 9082,
"ref": "40157",
"isActive": true,
"label": "40157",
"timestamp": 1711638387,
"tripId": "274243193",
"routeId": "468",
"startTime": "10:27:00",
"position": {
"lat": 45.52866,
"lon": -73.72576
},
"bearing": 63,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274243193",
"headsign": "468-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "468",
"routeLongName": "Express Pierrefonds / Gouin",
"shapeLink": "/storage/shapes/stm/4680089.json",
"shapeId": "4680089",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-10-09 15:08:10",
"meta": {}
},
{
"id": 9101,
"ref": "40130",
"isActive": true,
"label": "40130",
"timestamp": 1711638392,
"tripId": "274242576",
"routeId": "204",
"startTime": "10:42:00",
"position": {
"lat": 45.44964,
"lon": -73.79399
},
"bearing": 258,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242576",
"headsign": "204-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "204",
"routeLongName": "Cardinal",
"shapeLink": "/storage/shapes/stm/2040211.json",
"shapeId": "2040211",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-10-14 15:46:09",
"meta": {}
},
{
"id": 9205,
"ref": "40129",
"isActive": true,
"label": "40129",
"timestamp": 1711638388,
"tripId": "274239343",
"routeId": "17",
"startTime": "10:49:00",
"position": {
"lat": 45.48029,
"lon": -73.62304
},
"bearing": 32,
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274239343",
"headsign": "17-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "17",
"routeLongName": "Décarie",
"shapeLink": "/storage/shapes/stm/170094.json",
"shapeId": "170094",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 08:02:12",
"meta": {}
},
{
"id": 9207,
"ref": "40132",
"isActive": true,
"label": "40132",
"timestamp": 1711638403,
"tripId": "274239320",
"routeId": "17",
"startTime": "10:33:00",
"position": {
"lat": 45.47305,
"lon": -73.59846
},
"bearing": 98,
"speed": 12,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274239320",
"headsign": "17-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "17",
"routeLongName": "Décarie",
"shapeLink": "/storage/shapes/stm/170093.json",
"shapeId": "170093",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 08:02:12",
"meta": {}
},
{
"id": 9208,
"ref": "40134",
"isActive": true,
"label": "40134",
"timestamp": 1711638405,
"tripId": "274241408",
"routeId": "202",
"startTime": "10:20:00",
"position": {
"lat": 45.48293,
"lon": -73.69499
},
"bearing": 41,
"speed": 45,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 54,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241408",
"headsign": "202-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "202",
"routeLongName": "Dawson",
"shapeLink": "/storage/shapes/stm/2020182.json",
"shapeId": "2020182",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 08:02:12",
"meta": {}
},
{
"id": 9210,
"ref": "40137",
"isActive": true,
"label": "40137",
"timestamp": 1711638399,
"tripId": "274240510",
"routeId": "170",
"startTime": "10:54:00",
"position": {
"lat": 45.52467,
"lon": -73.71172
},
"bearing": 128,
"speed": 6,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240510",
"headsign": "170-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "170",
"routeLongName": "Keller",
"shapeLink": "/storage/shapes/stm/1700170.json",
"shapeId": "1700170",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 08:02:12",
"meta": {}
},
{
"id": 9213,
"ref": "40142",
"isActive": true,
"label": "40142",
"timestamp": 1711638403,
"tripId": "274239821",
"routeId": "70",
"startTime": "11:07:00",
"position": {
"lat": 45.51397,
"lon": -73.68354
},
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274239821",
"headsign": "70-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "70",
"routeLongName": "Bois-Franc",
"shapeLink": "/storage/shapes/stm/700182.json",
"shapeId": "700182",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 08:02:12",
"meta": {}
},
{
"id": 9214,
"ref": "40144",
"isActive": true,
"label": "40144",
"timestamp": 1711638403,
"tripId": "274243241",
"routeId": "468",
"startTime": "11:11:00",
"position": {
"lat": 45.51423,
"lon": -73.6841
},
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274243241",
"headsign": "468-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "468",
"routeLongName": "Express Pierrefonds / Gouin",
"shapeLink": "/storage/shapes/stm/4680086.json",
"shapeId": "4680086",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 08:02:12",
"meta": {}
},
{
"id": 9217,
"ref": "40149",
"isActive": true,
"label": "40149",
"timestamp": 1711638394,
"tripId": "274241835",
"routeId": "201",
"startTime": "10:18:00",
"position": {
"lat": 45.43969,
"lon": -73.82659
},
"bearing": 70,
"speed": 27,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241835",
"headsign": "201-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "201",
"routeLongName": "Saint-Charles / Saint-Jean",
"shapeLink": "/storage/shapes/stm/2010204.json",
"shapeId": "2010204",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 08:02:12",
"meta": {}
},
{
"id": 9220,
"ref": "40155",
"isActive": true,
"label": "40155",
"timestamp": 1711638404,
"tripId": "274240851",
"routeId": "196",
"startTime": "10:45:00",
"position": {
"lat": 45.44452,
"lon": -73.69286
},
"bearing": 355,
"speed": 54,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240851",
"headsign": "196-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "196",
"routeLongName": "Parc-Industriel-Lachine",
"shapeLink": "/storage/shapes/stm/1960208.json",
"shapeId": "1960208",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 08:02:12",
"meta": {}
},
{
"id": 9223,
"ref": "40161",
"isActive": true,
"label": "40161",
"timestamp": 1711638393,
"tripId": "274241225",
"routeId": "201",
"startTime": "10:52:00",
"position": {
"lat": 45.49291,
"lon": -73.8497
},
"bearing": 0,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241225",
"headsign": "201-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "201",
"routeLongName": "Saint-Charles / Saint-Jean",
"shapeLink": "/storage/shapes/stm/2010204.json",
"shapeId": "2010204",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 08:02:12",
"meta": {}
},
{
"id": 9228,
"ref": "40177",
"isActive": true,
"label": "40177",
"timestamp": 1711638399,
"tripId": "274239993",
"routeId": "72",
"startTime": "11:10:00",
"position": {
"lat": 45.46526,
"lon": -73.83131
},
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274239993",
"headsign": "72-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": "/storage/shapes/stm/720169.json",
"shapeId": "720169",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 08:02:12",
"meta": {}
},
{
"id": 9232,
"ref": "40185",
"isActive": true,
"label": "40185",
"timestamp": 1711638407,
"tripId": "274242480",
"routeId": "215",
"startTime": "10:32:00",
"position": {
"lat": 45.48432,
"lon": -73.78938
},
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242480",
"headsign": "215-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "215",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/2150155.json",
"shapeId": "2150155",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 08:02:12",
"meta": {}
},
{
"id": 9234,
"ref": "40187",
"isActive": true,
"label": "40187",
"timestamp": 1711638394,
"tripId": "274240377",
"routeId": "164",
"startTime": "10:55:00",
"position": {
"lat": 45.51819,
"lon": -73.72704
},
"bearing": 32,
"speed": 9,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240377",
"headsign": "164-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "164",
"routeLongName": "Dudemaine",
"shapeLink": "/storage/shapes/stm/1640156.json",
"shapeId": "1640156",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 08:02:13",
"meta": {}
},
{
"id": 9238,
"ref": "40197",
"isActive": true,
"label": "40197",
"timestamp": 1711638403,
"tripId": "274241106",
"routeId": "208",
"startTime": "10:57:00",
"position": {
"lat": 45.48275,
"lon": -73.814
},
"bearing": 96,
"speed": 9,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241106",
"headsign": "208-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "208",
"routeLongName": "Brunswick",
"shapeLink": "/storage/shapes/stm/2080102.json",
"shapeId": "2080102",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 08:02:13",
"meta": {}
},
{
"id": 9240,
"ref": "40204",
"isActive": true,
"label": "40204",
"timestamp": 1711638387,
"tripId": "274242038",
"routeId": "206",
"startTime": "11:00:00",
"position": {
"lat": 45.49834,
"lon": -73.81168
},
"bearing": 235,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242038",
"headsign": "206-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "206",
"routeLongName": "Roger-Pilon",
"shapeLink": "/storage/shapes/stm/2060106.json",
"shapeId": "2060106",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 08:02:13",
"meta": {}
},
{
"id": 9245,
"ref": "40152",
"isActive": true,
"label": "40152",
"timestamp": 1711638400,
"tripId": "274241862",
"routeId": "204",
"startTime": "11:04:00",
"position": {
"lat": 45.46678,
"lon": -73.83066
},
"bearing": 55,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241862",
"headsign": "204-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "204",
"routeLongName": "Cardinal",
"shapeLink": "/storage/shapes/stm/2040210.json",
"shapeId": "2040210",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 08:08:15",
"meta": {}
},
{
"id": 9249,
"ref": "40123",
"isActive": true,
"label": "40123",
"timestamp": 1711638387,
"tripId": "274243074",
"routeId": "419",
"startTime": "10:45:00",
"position": {
"lat": 45.40982,
"lon": -73.93883
},
"bearing": 173,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274243074",
"headsign": "419-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "419",
"routeLongName": "Express John Abbott",
"shapeLink": "/storage/shapes/stm/4190061.json",
"shapeId": "4190061",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 13:09:06",
"meta": {}
},
{
"id": 9252,
"ref": "40136",
"isActive": true,
"label": "40136",
"timestamp": 1711638387,
"tripId": "274240749",
"routeId": "177",
"startTime": "10:48:00",
"position": {
"lat": 45.50038,
"lon": -73.70007
},
"bearing": 41,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240749",
"headsign": "177-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "177",
"routeLongName": "Thimens",
"shapeLink": "/storage/shapes/stm/1770130.json",
"shapeId": "1770130",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 15:45:16",
"meta": {}
},
{
"id": 9253,
"ref": "40198",
"isActive": true,
"label": "40198",
"timestamp": 1711638399,
"tripId": "274240173",
"routeId": "164",
"startTime": "11:11:00",
"position": {
"lat": 45.55569,
"lon": -73.66738
},
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240173",
"headsign": "164-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "164",
"routeLongName": "Dudemaine",
"shapeLink": "/storage/shapes/stm/1640153.json",
"shapeId": "1640153",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-01 15:50:13",
"meta": {}
},
{
"id": 9257,
"ref": "40125",
"isActive": true,
"label": "40125",
"timestamp": 1711638405,
"tripId": "274242846",
"routeId": "205",
"startTime": "10:35:00",
"position": {
"lat": 45.51043,
"lon": -73.81046
},
"bearing": 229,
"speed": 18,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242846",
"headsign": "205-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "205",
"routeLongName": "Gouin",
"shapeLink": "/storage/shapes/stm/2050109.json",
"shapeId": "2050109",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-02 05:52:05",
"meta": {}
},
{
"id": 9263,
"ref": "40217",
"isActive": true,
"label": "40217",
"timestamp": 1711638398,
"tripId": "273971384",
"routeId": "104",
"startTime": "10:18:00",
"position": {
"lat": 45.46952,
"lon": -73.66585
},
"bearing": 22,
"speed": 6,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273971384",
"headsign": "104-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "104",
"routeLongName": "Cavendish",
"shapeLink": "/storage/shapes/stm/1040115.json",
"shapeId": "1040115",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-02 16:09:15",
"meta": {}
},
{
"id": 9265,
"ref": "40219",
"isActive": true,
"label": "40219",
"timestamp": 1711638402,
"tripId": "273974182",
"routeId": "495",
"startTime": "10:51:00",
"position": {
"lat": 45.44162,
"lon": -73.69252
},
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273974182",
"headsign": "495-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "495",
"routeLongName": "Express Lachine / LaSalle",
"shapeLink": "/storage/shapes/stm/4950132.json",
"shapeId": "4950132",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-03 06:57:10",
"meta": {}
},
{
"id": 9266,
"ref": "40220",
"isActive": true,
"label": "40220",
"timestamp": 1711638398,
"tripId": "273972706",
"routeId": "123",
"startTime": "10:54:00",
"position": {
"lat": 45.42621,
"lon": -73.62569
},
"bearing": 305,
"speed": 12,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972706",
"headsign": "123-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "123",
"routeLongName": "Dollard",
"shapeLink": "/storage/shapes/stm/1230108.json",
"shapeId": "1230108",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-03 16:10:16",
"meta": {}
},
{
"id": 9268,
"ref": "40218",
"isActive": true,
"label": "40218",
"timestamp": 1711638393,
"tripId": "273972073",
"routeId": "123",
"startTime": "10:41:00",
"position": {
"lat": 45.41953,
"lon": -73.6114
},
"bearing": 70,
"speed": 27,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972073",
"headsign": "123-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "123",
"routeLongName": "Dollard",
"shapeLink": "/storage/shapes/stm/1230109.json",
"shapeId": "1230109",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-03 17:08:16",
"meta": {}
},
{
"id": 9269,
"ref": "40212",
"isActive": true,
"label": "40212",
"timestamp": 1711638402,
"tripId": "274241491",
"routeId": "64",
"startTime": "10:57:00",
"position": {
"lat": 45.52555,
"lon": -73.70968
},
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241491",
"headsign": "64-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "64",
"routeLongName": "Grenet",
"shapeLink": "/storage/shapes/stm/640164.json",
"shapeId": "640164",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-04 05:21:03",
"meta": {}
},
{
"id": 9277,
"ref": "40229",
"isActive": true,
"label": "40229",
"timestamp": 1711638407,
"tripId": "273972790",
"routeId": "107",
"startTime": "10:08:00",
"position": {
"lat": 45.501,
"lon": -73.57702
},
"bearing": 158,
"speed": 12,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972790",
"headsign": "107-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "107",
"routeLongName": "Verdun",
"shapeLink": "/storage/shapes/stm/1070131.json",
"shapeId": "1070131",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-07 17:08:16",
"meta": {}
},
{
"id": 9282,
"ref": "40214",
"isActive": true,
"label": "40214",
"timestamp": 1711638392,
"tripId": "274239648",
"routeId": "68",
"startTime": "10:43:00",
"position": {
"lat": 45.50803,
"lon": -73.82126
},
"bearing": 144,
"speed": 18,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274239648",
"headsign": "68-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "68",
"routeLongName": "Pierrefonds",
"shapeLink": "/storage/shapes/stm/680404.json",
"shapeId": "680404",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-09 15:39:15",
"meta": {}
},
{
"id": 9287,
"ref": "40169",
"isActive": true,
"label": "40169",
"timestamp": 1711638401,
"tripId": "274242012",
"routeId": "208",
"startTime": "10:30:00",
"position": {
"lat": 45.51049,
"lon": -73.81668
},
"bearing": 67,
"speed": 45,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242012",
"headsign": "208-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "208",
"routeLongName": "Brunswick",
"shapeLink": "/storage/shapes/stm/2080102.json",
"shapeId": "2080102",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-10 14:51:08",
"meta": {}
},
{
"id": 9292,
"ref": "40234",
"isActive": true,
"label": "40234",
"timestamp": 1711638390,
"tripId": "273970945",
"routeId": "90",
"startTime": "10:28:00",
"position": {
"lat": 45.44575,
"lon": -73.64468
},
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970945",
"headsign": "90-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "90",
"routeLongName": "Saint-Jacques",
"shapeLink": "/storage/shapes/stm/900254.json",
"shapeId": "900254",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-13 16:32:08",
"meta": {}
},
{
"id": 9296,
"ref": "40223",
"isActive": true,
"label": "40223",
"timestamp": 1711638402,
"tripId": "273973096",
"routeId": "195",
"startTime": "10:38:00",
"position": {
"lat": 45.43497,
"lon": -73.68266
},
"bearing": 88,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973096",
"headsign": "195-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "195",
"routeLongName": "Sherbrooke / Notre-Dame",
"shapeLink": "/storage/shapes/stm/1950168.json",
"shapeId": "1950168",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-14 23:03:07",
"meta": {}
},
{
"id": 9297,
"ref": "40153",
"isActive": true,
"label": "40153",
"timestamp": 1711638397,
"tripId": "274239900",
"routeId": "70",
"startTime": "11:07:00",
"position": {
"lat": 45.49378,
"lon": -73.73949
},
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274239900",
"headsign": "70-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "70",
"routeLongName": "Bois-Franc",
"shapeLink": "/storage/shapes/stm/700192.json",
"shapeId": "700192",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-15 05:49:04",
"meta": {}
},
{
"id": 9300,
"ref": "40236",
"isActive": true,
"label": "40236",
"timestamp": 1711638390,
"tripId": "273973229",
"routeId": "113",
"startTime": "10:52:00",
"position": {
"lat": 45.42907,
"lon": -73.6389
},
"bearing": 66,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973229",
"headsign": "113-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "113",
"routeLongName": "Lapierre",
"shapeLink": "/storage/shapes/stm/1130146.json",
"shapeId": "1130146",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-15 17:19:15",
"meta": {}
},
{
"id": 9313,
"ref": "40249",
"isActive": true,
"label": "40249",
"timestamp": 1711638401,
"tripId": "273972089",
"routeId": "195",
"startTime": "10:36:00",
"position": {
"lat": 45.43361,
"lon": -73.67462
},
"bearing": 268,
"speed": 12,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972089",
"headsign": "195-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "195",
"routeLongName": "Sherbrooke / Notre-Dame",
"shapeLink": "/storage/shapes/stm/1950167.json",
"shapeId": "1950167",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-18 11:21:07",
"meta": {}
},
{
"id": 9318,
"ref": "40248",
"isActive": true,
"label": "40248",
"timestamp": 1711638393,
"tripId": "273971025",
"routeId": "138",
"startTime": "10:53:00",
"position": {
"lat": 45.47099,
"lon": -73.64622
},
"bearing": 123,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273971025",
"headsign": "138-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "138",
"routeLongName": "Notre-Dame-de-Grâce",
"shapeLink": "/storage/shapes/stm/1380086.json",
"shapeId": "1380086",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-19 06:13:05",
"meta": {}
},
{
"id": 9323,
"ref": "40209",
"isActive": true,
"label": "40209",
"timestamp": 1711638399,
"tripId": "274240344",
"routeId": "164",
"startTime": "10:41:00",
"position": {
"lat": 45.5214,
"lon": -73.71793
},
"bearing": 250,
"speed": 27,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240344",
"headsign": "164-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "164",
"routeLongName": "Dudemaine",
"shapeLink": "/storage/shapes/stm/1640153.json",
"shapeId": "1640153",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-23 06:26:09",
"meta": {}
},
{
"id": 9330,
"ref": "40239",
"isActive": true,
"label": "40239",
"timestamp": 1711638405,
"tripId": "273972124",
"routeId": "106",
"startTime": "10:44:00",
"position": {
"lat": 45.42093,
"lon": -73.65147
},
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972124",
"headsign": "106-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "106",
"routeLongName": "Newman",
"shapeLink": "/storage/shapes/stm/1060130.json",
"shapeId": "1060130",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-12-29 16:25:13",
"meta": {}
},
{
"id": 9353,
"ref": "40241",
"isActive": true,
"label": "40241",
"timestamp": 1711638393,
"tripId": "273972565",
"routeId": "110",
"startTime": "10:26:00",
"position": {
"lat": 45.42028,
"lon": -73.60834
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 58,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972565",
"headsign": "110-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "110",
"routeLongName": "Centrale",
"shapeLink": "/storage/shapes/stm/1100199.json",
"shapeId": "1100199",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2021-01-13 17:18:13",
"meta": {}
},
{
"id": 9358,
"ref": "40233",
"isActive": true,
"label": "40233",
"timestamp": 1711638403,
"tripId": "273970318",
"routeId": "61",
"startTime": "11:04:00",
"position": {
"lat": 45.45832,
"lon": -73.56742
},
"bearing": 0,
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970318",
"headsign": "61-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "61",
"routeLongName": "Wellington",
"shapeLink": "/storage/shapes/stm/610108.json",
"shapeId": "610108",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2021-01-15 13:04:10",
"meta": {}
},
{
"id": 9359,
"ref": "40242",
"isActive": true,
"label": "40242",
"timestamp": 1711638287,
"tripId": "273971524",
"routeId": "106",
"startTime": "10:43:00",
"position": {
"lat": 45.44649,
"lon": -73.60448
},
"bearing": 233,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273971524",
"headsign": "106-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "106",
"routeLongName": "Newman",
"shapeLink": "/storage/shapes/stm/1060131.json",
"shapeId": "1060131",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2021-01-15 17:19:12",
"meta": {}
},
{
"id": 9362,
"ref": "40245",
"isActive": true,
"label": "40245",
"timestamp": 1711638395,
"tripId": "273972468",
"routeId": "113",
"startTime": "11:07:00",
"position": {
"lat": 45.42508,
"lon": -73.64851
},
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972468",
"headsign": "113-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "113",
"routeLongName": "Lapierre",
"shapeLink": "/storage/shapes/stm/1130146.json",
"shapeId": "1130146",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2021-01-20 14:49:07",
"meta": {}
},
{
"id": 9740,
"ref": "40246",
"isActive": true,
"label": "40246",
"timestamp": 1711638407,
"tripId": "273969622",
"routeId": "35",
"startTime": "10:30:00",
"position": {
"lat": 45.50478,
"lon": -73.57215
},
"bearing": 0,
"speed": 0,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273969622",
"headsign": "35-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "35",
"routeLongName": "Griffintown",
"shapeLink": "/storage/shapes/stm/350013.json",
"shapeId": "350013",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2021-02-01 14:34:08",
"meta": {}
},
{
"id": 10675,
"ref": "41019",
"isActive": true,
"label": "41019",
"timestamp": 1711638391,
"tripId": "980835",
"routeId": "24",
"startTime": "10:56:00",
"position": {
"lat": 45.48145,
"lon": -73.60058
},
"bearing": 0,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "24",
"routeLongName": "Sherbrooke",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2021-07-09 16:06:05",
"meta": {}
},
{
"id": 10686,
"ref": "41020",
"isActive": true,
"label": "41020",
"timestamp": 1711638397,
"tripId": "274849430",
"routeId": "430",
"startTime": "11:02:00",
"position": {
"lat": 45.68605,
"lon": -73.49922
},
"bearing": 193,
"speed": 54,
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274849430",
"headsign": "430-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "430",
"routeLongName": "Express Pointe-aux-Trembles",
"shapeLink": "/storage/shapes/stm/4300151.json",
"shapeId": "4300151",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2021-07-13 18:03:04",
"meta": {}
},
{
"id": 10693,
"ref": "41028",
"isActive": true,
"label": "41028",
"timestamp": 1711638394,
"tripId": "274849248",
"routeId": "97",
"startTime": "11:08:00",
"position": {
"lat": 45.51595,
"lon": -73.58958
},
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274849248",
"headsign": "97-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "97",
"routeLongName": "Avenue-du-Mont-Royal",
"shapeLink": "/storage/shapes/stm/970203.json",
"shapeId": "970203",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2021-07-15 16:45:05",
"meta": {}
},
{
"id": 10721,
"ref": "41001",
"isActive": true,
"label": "41001",
"timestamp": 1711638396,
"tripId": "274849566",
"routeId": "51",
"startTime": "10:38:00",
"position": {
"lat": 45.49774,
"lon": -73.61975
},
"bearing": 303,
"speed": 27,
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274849566",
"headsign": "51-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": "/storage/shapes/stm/510185.json",
"shapeId": "510185",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2021-07-24 09:18:04",
"meta": {}
},
{
"id": 10731,
"ref": "41034",
"isActive": true,
"label": "41034",
"timestamp": 1711638391,
"tripId": "274849306",
"routeId": "51",
"startTime": "10:26:00",
"position": {
"lat": 45.47775,
"lon": -73.63576
},
"bearing": 262,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274849306",
"headsign": "51-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": "/storage/shapes/stm/510191.json",
"shapeId": "510191",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2021-07-27 18:46:04",
"meta": {}
},
{
"id": 10734,
"ref": "41025",
"isActive": true,
"label": "41025",
"timestamp": 1711638400,
"tripId": "274849279",
"routeId": "14",
"startTime": "10:49:00",
"position": {
"lat": 45.51296,
"lon": -73.55807
},
"bearing": 213,
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274849279",
"headsign": "14-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "14",
"routeLongName": "Atateken",
"shapeLink": "/storage/shapes/stm/140063.json",
"shapeId": "140063",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2021-07-28 14:28:05",
"meta": {}
},
{
"id": 10747,
"ref": "41041",
"isActive": true,
"label": "41041",
"timestamp": 1711638405,
"tripId": "274849349",
"routeId": "430",
"startTime": "10:03:00",
"position": {
"lat": 45.49692,
"lon": -73.57301
},
"bearing": 256,
"speed": 12,
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274849349",
"headsign": "430-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "430",
"routeLongName": "Express Pointe-aux-Trembles",
"shapeLink": "/storage/shapes/stm/4300151.json",
"shapeId": "4300151",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2021-08-03 17:22:05",
"meta": {}
},
{
"id": 10748,
"ref": "41042",
"isActive": true,
"label": "41042",
"timestamp": 1711638390,
"tripId": "274849019",
"routeId": "14",
"startTime": "10:54:00",
"position": {
"lat": 45.52203,
"lon": -73.56667
},
"bearing": 306,
"speed": 45,
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274849019",
"headsign": "14-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "14",
"routeLongName": "Atateken",
"shapeLink": "/storage/shapes/stm/140065.json",
"shapeId": "140065",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2021-08-03 17:50:05",
"meta": {}
},
{
"id": 10753,
"ref": "41007",
"isActive": true,
"label": "41007",
"timestamp": 1711638407,
"tripId": "274848920",
"routeId": "51",
"startTime": "11:14:00",
"position": {
"lat": 45.45427,
"lon": -73.64148
},
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274848920",
"headsign": "51-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": "/storage/shapes/stm/510185.json",
"shapeId": "510185",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2021-08-05 05:56:04",
"meta": {}
},
{
"id": 10765,
"ref": "41039",
"isActive": true,
"label": "41039",
"timestamp": 1711638400,
"tripId": "274849748",
"routeId": "51",
"startTime": "10:46:00",
"position": {
"lat": 45.48192,
"lon": -73.63058
},
"bearing": 27,
"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": 5,
"label": "Full"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274849748",
"headsign": "51-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": "/storage/shapes/stm/510185.json",
"shapeId": "510185",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2021-08-10 07:18:04",
"meta": {}
},
{
"id": 10795,
"ref": "41049",
"isActive": true,
"label": "41049",
"timestamp": 1711638389,
"tripId": "274848953",
"routeId": "97",
"startTime": "11:16:00",
"position": {
"lat": 45.55352,
"lon": -73.55175
},
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274848953",
"headsign": "97-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "97",
"routeLongName": "Avenue-du-Mont-Royal",
"shapeLink": "/storage/shapes/stm/970202.json",
"shapeId": "970202",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2021-08-25 15:58:12",
"meta": {}
},
{
"id": 10803,
"ref": "41051",
"isActive": true,
"label": "41051",
"timestamp": 1711638403,
"tripId": "274849454",
"routeId": "97",
"startTime": "10:33:00",
"position": {
"lat": 45.52535,
"lon": -73.58169
},
"bearing": 213,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274849454",
"headsign": "97-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "97",
"routeLongName": "Avenue-du-Mont-Royal",
"shapeLink": "/storage/shapes/stm/970202.json",
"shapeId": "970202",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2021-08-30 05:22:04",
"meta": {}
},
{
"id": 10853,
"ref": "41056",
"isActive": true,
"label": "41056",
"timestamp": 1711638399,
"tripId": "274849505",
"routeId": "51",
"startTime": "10:55:00",
"position": {
"lat": 45.47337,
"lon": -73.63948
},
"bearing": 35,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274849505",
"headsign": "51-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": "/storage/shapes/stm/510185.json",
"shapeId": "510185",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2021-09-07 13:37:04",
"meta": {}
},
{
"id": 10857,
"ref": "41061",
"isActive": true,
"label": "41061",
"timestamp": 1711638388,
"tripId": "274849637",
"routeId": "51",
"startTime": "11:05:00",
"position": {
"lat": 45.45507,
"lon": -73.6414
},
"bearing": 30,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274849637",
"headsign": "51-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": "/storage/shapes/stm/510185.json",
"shapeId": "510185",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2021-09-08 08:01:07",
"meta": {}
},
{
"id": 10861,
"ref": "41058",
"isActive": true,
"label": "41058",
"timestamp": 1711638406,
"tripId": "274864901",
"routeId": "11",
"startTime": "10:42:00",
"position": {
"lat": 45.52767,
"lon": -73.57951
},
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274864901",
"headsign": "11-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "11",
"routeLongName": "Parc-du-Mont-Royal / Ridgewood",
"shapeLink": "/storage/shapes/stm/110156.json",
"shapeId": "110156",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2021-09-08 15:11:05",
"meta": {}
},
{
"id": 10875,
"ref": "41055",
"isActive": true,
"label": "41055",
"timestamp": 1711638402,
"tripId": "274849685",
"routeId": "51",
"startTime": "10:38:00",
"position": {
"lat": 45.49821,
"lon": -73.62059
},
"bearing": 130,
"speed": 45,
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274849685",
"headsign": "51-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": "/storage/shapes/stm/510191.json",
"shapeId": "510191",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2021-09-14 16:36:08",
"meta": {}
},
{
"id": 10876,
"ref": "41059",
"isActive": true,
"label": "41059",
"timestamp": 1711638391,
"tripId": "274849055",
"routeId": "47",
"startTime": "10:53: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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274849055",
"headsign": "47-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "47",
"routeLongName": "Masson",
"shapeLink": "/storage/shapes/stm/470114.json",
"shapeId": "470114",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2021-09-15 05:34:04",
"meta": {}
},
{
"id": 10879,
"ref": "41050",
"isActive": true,
"label": "41050",
"timestamp": 1711638393,
"tripId": "274849133",
"routeId": "97",
"startTime": "10:55:00",
"position": {
"lat": 45.5478,
"lon": -73.56242
},
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274849133",
"headsign": "97-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "97",
"routeLongName": "Avenue-du-Mont-Royal",
"shapeLink": "/storage/shapes/stm/970202.json",
"shapeId": "970202",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2021-09-15 16:54:08",
"meta": {}
},
{
"id": 10880,
"ref": "41065",
"isActive": true,
"label": "41065",
"timestamp": 1711638404,
"tripId": "274849093",
"routeId": "27",
"startTime": "10:49:00",
"position": {
"lat": 45.55676,
"lon": -73.56612
},
"bearing": 297,
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274849093",
"headsign": "27-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "27",
"routeLongName": "Boulevard Saint-Joseph",
"shapeLink": "/storage/shapes/stm/270108.json",
"shapeId": "270108",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2021-09-15 16:58:07",
"meta": {}
},
{
"id": 10881,
"ref": "41064",
"isActive": true,
"label": "41064",
"timestamp": 1711638407,
"tripId": "274849481",
"routeId": "25",
"startTime": "10:52:00",
"position": {
"lat": 45.53478,
"lon": -73.5951
},
"bearing": 0,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274849481",
"headsign": "25-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "25",
"routeLongName": "Angus",
"shapeLink": "/storage/shapes/stm/250055.json",
"shapeId": "250055",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2021-09-15 17:30:06",
"meta": {}
},
{
"id": 10887,
"ref": "41063",
"isActive": true,
"label": "41063",
"timestamp": 1711638394,
"tripId": "274864848",
"routeId": "11",
"startTime": "11:07:00",
"position": {
"lat": 45.52597,
"lon": -73.57465
},
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274864848",
"headsign": "11-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "11",
"routeLongName": "Parc-du-Mont-Royal / Ridgewood",
"shapeLink": "/storage/shapes/stm/110157.json",
"shapeId": "110157",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2021-09-17 15:11:03",
"meta": {}
},
{
"id": 10910,
"ref": "41062",
"isActive": true,
"label": "41062",
"timestamp": 1711638401,
"tripId": "274848877",
"routeId": "47",
"startTime": "10:56:00",
"position": {
"lat": 45.53288,
"lon": -73.59084
},
"bearing": 122,
"speed": 12,
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274848877",
"headsign": "47-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "47",
"routeLongName": "Masson",
"shapeLink": "/storage/shapes/stm/470115.json",
"shapeId": "470115",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2021-09-30 15:12:10",
"meta": {}
},
{
"id": 10923,
"ref": "41046",
"isActive": true,
"label": "41046",
"timestamp": 1711638407,
"tripId": "274849595",
"routeId": "51",
"startTime": "10:21:00",
"position": {
"lat": 45.52074,
"lon": -73.59484
},
"bearing": 33,
"speed": 45,
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274849595",
"headsign": "51-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": "/storage/shapes/stm/510185.json",
"shapeId": "510185",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2021-10-05 06:45:16",
"meta": {}
},
{
"id": 10939,
"ref": "41075",
"isActive": true,
"label": "41075",
"timestamp": 1711638399,
"tripId": "274849370",
"routeId": "51",
"startTime": "11:02:00",
"position": {
"lat": 45.52673,
"lon": -73.58041
},
"bearing": 214,
"speed": 27,
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274849370",
"headsign": "51-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "51",
"routeLongName": "Édouard-Montpetit",
"shapeLink": "/storage/shapes/stm/510191.json",
"shapeId": "510191",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2021-10-13 07:24:03",
"meta": {}
},
{
"id": 10944,
"ref": "41070",
"isActive": true,
"label": "41070",
"timestamp": 1711638391,
"tripId": "274864876",
"routeId": "11",
"startTime": "10:39:00",
"position": {
"lat": 45.49369,
"lon": -73.61243
},
"bearing": 149,
"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": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274864876",
"headsign": "11-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "11",
"routeLongName": "Parc-du-Mont-Royal / Ridgewood",
"shapeLink": "/storage/shapes/stm/110157.json",
"shapeId": "110157",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2021-10-26 17:35:06",
"meta": {}
},
{
"id": 11031,
"ref": "41013",
"isActive": true,
"label": "41013",
"timestamp": 1711638397,
"tripId": "274849712",
"routeId": "25",
"startTime": "10:51:00",
"position": {
"lat": 45.5438,
"lon": -73.57993
},
"bearing": 303,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
6
],
"trip": {
"id": "274849712",
"headsign": "25-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "25",
"routeLongName": "Angus",
"shapeLink": "/storage/shapes/stm/250054.json",
"shapeId": "250054",
"serviceId": "24M-H57M000S-82-S",
"blockId": null
},
"createdAt": "2022-01-13 09:23:05",
"meta": {}
},
{
"id": 11050,
"ref": "41116",
"isActive": true,
"label": "41116",
"timestamp": 1711638397,
"tripId": "276157040",
"routeId": "139",
"startTime": "10:59:00",
"position": {
"lat": 45.58642,
"lon": -73.63275
},
"bearing": 143,
"speed": 6,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157040",
"headsign": "139-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "139",
"routeLongName": "Pie-IX",
"shapeLink": "/storage/shapes/stm/1394405.json",
"shapeId": "1394405",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-01-28 05:13:05",
"meta": {}
},
{
"id": 11051,
"ref": "41111",
"isActive": true,
"label": "41111",
"timestamp": 1711638397,
"tripId": "276156662",
"routeId": "19",
"startTime": "10:49:00",
"position": {
"lat": 45.53339,
"lon": -73.6613
},
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276156662",
"headsign": "19-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "19",
"routeLongName": "Chabanel / Marché Central",
"shapeLink": "/storage/shapes/stm/190036.json",
"shapeId": "190036",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-01-28 05:27:04",
"meta": {}
},
{
"id": 11052,
"ref": "41112",
"isActive": true,
"label": "41112",
"timestamp": 1711638407,
"tripId": "276156713",
"routeId": "41",
"startTime": "10:52: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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276156713",
"headsign": "41-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "41",
"routeLongName": "Quartier Saint-Michel / Ahuntsic",
"shapeLink": "/storage/shapes/stm/410321.json",
"shapeId": "410321",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-01-28 07:09:06",
"meta": {}
},
{
"id": 11054,
"ref": "41095",
"isActive": true,
"label": "41095",
"timestamp": 1711638402,
"tripId": "276156760",
"routeId": "41",
"startTime": "10:33:00",
"position": {
"lat": 45.57127,
"lon": -73.62638
},
"bearing": 301,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276156760",
"headsign": "41-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "41",
"routeLongName": "Quartier Saint-Michel / Ahuntsic",
"shapeLink": "/storage/shapes/stm/410320.json",
"shapeId": "410320",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-01-28 15:32:04",
"meta": {}
},
{
"id": 11065,
"ref": "41078",
"isActive": true,
"label": "41078",
"timestamp": 1711638404,
"tripId": "276159445",
"routeId": "439",
"startTime": "10:09:00",
"position": {
"lat": 45.61281,
"lon": -73.62314
},
"bearing": 54,
"speed": 27,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276159445",
"headsign": "439-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "439",
"routeLongName": "Express Pie-IX",
"shapeLink": "/storage/shapes/stm/4390238.json",
"shapeId": "4390238",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-01-29 15:53:04",
"meta": {}
},
{
"id": 11077,
"ref": "41120",
"isActive": true,
"label": "41120",
"timestamp": 1711638402,
"tripId": "276158135",
"routeId": "197",
"startTime": "10:39:00",
"position": {
"lat": 45.57483,
"lon": -73.56236
},
"bearing": 25,
"speed": 27,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276158135",
"headsign": "197-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "197",
"routeLongName": "Rosemont",
"shapeLink": "/storage/shapes/stm/1970142.json",
"shapeId": "1970142",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-02-07 08:11:04",
"meta": {}
},
{
"id": 11083,
"ref": "41128",
"isActive": true,
"label": "41128",
"timestamp": 1711638405,
"tripId": "276158169",
"routeId": "197",
"startTime": "09:51:00",
"position": {
"lat": 45.61462,
"lon": -73.61965
},
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276158169",
"headsign": "197-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "197",
"routeLongName": "Rosemont",
"shapeLink": "/storage/shapes/stm/1970141.json",
"shapeId": "1970141",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-02-10 05:03:04",
"meta": {}
},
{
"id": 11099,
"ref": "41093",
"isActive": true,
"label": "41093",
"timestamp": 1711638398,
"tripId": "276158316",
"routeId": "469",
"startTime": "11:17:00",
"position": {
"lat": 45.62287,
"lon": -73.62305
},
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276158316",
"headsign": "469-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "469",
"routeLongName": "Express Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/4690081.json",
"shapeId": "4690081",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-02-17 11:29:02",
"meta": {}
},
{
"id": 11102,
"ref": "41092",
"isActive": true,
"label": "41092",
"timestamp": 1711638401,
"tripId": "276157506",
"routeId": "139",
"startTime": "10:29:00",
"position": {
"lat": 45.55967,
"lon": -73.57472
},
"bearing": 31,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157506",
"headsign": "139-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "139",
"routeLongName": "Pie-IX",
"shapeLink": "/storage/shapes/stm/1394405.json",
"shapeId": "1394405",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-02-21 06:12:03",
"meta": {}
},
{
"id": 11155,
"ref": "41081",
"isActive": true,
"label": "41081",
"timestamp": 1711638401,
"tripId": "276157939",
"routeId": "193",
"startTime": "10:46:00",
"position": {
"lat": 45.56793,
"lon": -73.60586
},
"bearing": 210,
"speed": 5,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157939",
"headsign": "193-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "193",
"routeLongName": "Jarry",
"shapeLink": "/storage/shapes/stm/1930135.json",
"shapeId": "1930135",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-03-31 15:19:04",
"meta": {}
},
{
"id": 11163,
"ref": "41096",
"isActive": true,
"label": "41096",
"timestamp": 1711638404,
"tripId": "276157025",
"routeId": "48",
"startTime": "10:35:00",
"position": {
"lat": 45.61193,
"lon": -73.63204
},
"bearing": 200,
"speed": 14,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157025",
"headsign": "48-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": "/storage/shapes/stm/480412.json",
"shapeId": "480412",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-04-07 15:20:05",
"meta": {}
},
{
"id": 12441,
"ref": "42004",
"isActive": true,
"label": "42004",
"timestamp": 1711638395,
"tripId": "276157790",
"routeId": "180",
"startTime": "11:15: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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157790",
"headsign": "180-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "180",
"routeLongName": "De Salaberry",
"shapeLink": "/storage/shapes/stm/1800109.json",
"shapeId": "1800109",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-08-31 05:08:03",
"meta": {}
},
{
"id": 12442,
"ref": "42003",
"isActive": true,
"label": "42003",
"timestamp": 1711638402,
"tripId": "276156773",
"routeId": "41",
"startTime": "11:00:00",
"position": {
"lat": 45.57976,
"lon": -73.62157
},
"bearing": 122,
"speed": 27,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276156773",
"headsign": "41-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "41",
"routeLongName": "Quartier Saint-Michel / Ahuntsic",
"shapeLink": "/storage/shapes/stm/410320.json",
"shapeId": "410320",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-08-31 14:04:05",
"meta": {}
},
{
"id": 12461,
"ref": "42001",
"isActive": true,
"label": "42001",
"timestamp": 1711638389,
"tripId": "276157319",
"routeId": "56",
"startTime": "11:09:00",
"position": {
"lat": 45.5513,
"lon": -73.64273
},
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157319",
"headsign": "56-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "56",
"routeLongName": "Saint-Hubert",
"shapeLink": "/storage/shapes/stm/560032.json",
"shapeId": "560032",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-09-16 16:46:04",
"meta": {}
},
{
"id": 12625,
"ref": "42010",
"isActive": true,
"label": "42010",
"timestamp": 1711638407,
"tripId": "276157069",
"routeId": "48",
"startTime": "10:21:00",
"position": {
"lat": 45.64777,
"lon": -73.58076
},
"bearing": 39,
"speed": 27,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157069",
"headsign": "48-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": "/storage/shapes/stm/480413.json",
"shapeId": "480413",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-10-03 16:14:07",
"meta": {}
},
{
"id": 12651,
"ref": "42021",
"isActive": true,
"label": "42021",
"timestamp": 1711638394,
"tripId": "276158325",
"routeId": "469",
"startTime": "10:50:00",
"position": {
"lat": 45.60263,
"lon": -73.63217
},
"bearing": 0,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276158325",
"headsign": "469-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "469",
"routeLongName": "Express Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/4690081.json",
"shapeId": "4690081",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-10-07 16:17:08",
"meta": {}
},
{
"id": 12655,
"ref": "42030",
"isActive": true,
"label": "42030",
"timestamp": 1711638404,
"tripId": "276157953",
"routeId": "193",
"startTime": "11:05:00",
"position": {
"lat": 45.60457,
"lon": -73.57314
},
"bearing": 210,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157953",
"headsign": "193-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "193",
"routeLongName": "Jarry",
"shapeLink": "/storage/shapes/stm/1930135.json",
"shapeId": "1930135",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-10-10 05:31:05",
"meta": {}
},
{
"id": 12662,
"ref": "42033",
"isActive": true,
"label": "42033",
"timestamp": 1711638402,
"tripId": "276157234",
"routeId": "54",
"startTime": "10:51:00",
"position": {
"lat": 45.53843,
"lon": -73.65454
},
"bearing": 20,
"speed": 36,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157234",
"headsign": "54-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "54",
"routeLongName": "Charland / Chabanel",
"shapeLink": "/storage/shapes/stm/540154.json",
"shapeId": "540154",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-10-12 15:24:04",
"meta": {}
},
{
"id": 12671,
"ref": "42031",
"isActive": true,
"label": "42031",
"timestamp": 1711638403,
"tripId": "276158060",
"routeId": "193",
"startTime": "11:11:00",
"position": {
"lat": 45.53459,
"lon": -73.64378
},
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276158060",
"headsign": "193-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "193",
"routeLongName": "Jarry",
"shapeLink": "/storage/shapes/stm/1930134.json",
"shapeId": "1930134",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-10-18 04:47:05",
"meta": {}
},
{
"id": 12675,
"ref": "42039",
"isActive": true,
"label": "42039",
"timestamp": 1711638406,
"tripId": "276156799",
"routeId": "45",
"startTime": "11:11:00",
"position": {
"lat": 45.57356,
"lon": -73.65862
},
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276156799",
"headsign": "45-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "45",
"routeLongName": "Papineau",
"shapeLink": "/storage/shapes/stm/450173.json",
"shapeId": "450173",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-10-18 16:09:07",
"meta": {}
},
{
"id": 12676,
"ref": "42046",
"isActive": true,
"label": "42046",
"timestamp": 1711638398,
"tripId": "276157196",
"routeId": "54",
"startTime": "10:17:00",
"position": {
"lat": 45.52843,
"lon": -73.66755
},
"bearing": 0,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157196",
"headsign": "54-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "54",
"routeLongName": "Charland / Chabanel",
"shapeLink": "/storage/shapes/stm/540152.json",
"shapeId": "540152",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-10-18 16:50:06",
"meta": {}
},
{
"id": 12677,
"ref": "42045",
"isActive": true,
"label": "42045",
"timestamp": 1711638404,
"tripId": "276158301",
"routeId": "469",
"startTime": "11:00:00",
"position": {
"lat": 45.55903,
"lon": -73.66653
},
"bearing": 28,
"speed": 54,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276158301",
"headsign": "469-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "469",
"routeLongName": "Express Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/4690080.json",
"shapeId": "4690080",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-10-19 15:38:07",
"meta": {}
},
{
"id": 12681,
"ref": "42037",
"isActive": true,
"label": "42037",
"timestamp": 1711638394,
"tripId": "276156735",
"routeId": "41",
"startTime": "10:52:00",
"position": {
"lat": 45.56588,
"lon": -73.64819
},
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276156735",
"headsign": "41-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "41",
"routeLongName": "Quartier Saint-Michel / Ahuntsic",
"shapeLink": "/storage/shapes/stm/410321.json",
"shapeId": "410321",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-10-20 15:09:06",
"meta": {}
},
{
"id": 12708,
"ref": "42017",
"isActive": true,
"label": "42017",
"timestamp": 1711638400,
"tripId": "276156875",
"routeId": "48",
"startTime": "10:49:00",
"position": {
"lat": 45.6016,
"lon": -73.63599
},
"bearing": 322,
"speed": 27,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276156875",
"headsign": "48-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": "/storage/shapes/stm/480413.json",
"shapeId": "480413",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-10-27 06:26:05",
"meta": {}
},
{
"id": 12720,
"ref": "42041",
"isActive": true,
"label": "42041",
"timestamp": 1711638402,
"tripId": "276157865",
"routeId": "140",
"startTime": "10:03:00",
"position": {
"lat": 45.54883,
"lon": -73.67192
},
"bearing": 203,
"speed": 45,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157865",
"headsign": "140-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "140",
"routeLongName": "Fleury",
"shapeLink": "/storage/shapes/stm/1400133.json",
"shapeId": "1400133",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-11-02 16:21:03",
"meta": {}
},
{
"id": 12721,
"ref": "42048",
"isActive": true,
"label": "42048",
"timestamp": 1711638403,
"tripId": "276156999",
"routeId": "48",
"startTime": "10:51:00",
"position": {
"lat": 45.6451,
"lon": -73.58425
},
"bearing": 230,
"speed": 54,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276156999",
"headsign": "48-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": "/storage/shapes/stm/480411.json",
"shapeId": "480411",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-11-03 05:42:06",
"meta": {}
},
{
"id": 12735,
"ref": "42018",
"isActive": true,
"label": "42018",
"timestamp": 1711638389,
"tripId": "276157487",
"routeId": "45",
"startTime": "10:51:00",
"position": {
"lat": 45.55543,
"lon": -73.62404
},
"bearing": 0,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157487",
"headsign": "45-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "45",
"routeLongName": "Papineau",
"shapeLink": "/storage/shapes/stm/450173.json",
"shapeId": "450173",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2022-11-15 06:57:04",
"meta": {}
}
],
"timestamp": 1711638407,
"count": 576,
"geojson": {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"id": 95,
"label": "27017",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54375,
45.57589
]
}
},
{
"type": "Feature",
"properties": {
"id": 106,
"label": "27506",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.67282,
45.44007
]
}
},
{
"type": "Feature",
"properties": {
"id": 119,
"label": "28014",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55661,
45.49443
]
}
},
{
"type": "Feature",
"properties": {
"id": 120,
"label": "28018",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.86359,
45.48119
]
}
},
{
"type": "Feature",
"properties": {
"id": 126,
"label": "28030",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.93115,
45.40524
]
}
},
{
"type": "Feature",
"properties": {
"id": 134,
"label": "28051",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.69262,
45.44189
]
}
},
{
"type": "Feature",
"properties": {
"id": 135,
"label": "28052",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63465,
45.44874
]
}
},
{
"type": "Feature",
"properties": {
"id": 136,
"label": "28057",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.7427,
45.44861
]
}
},
{
"type": "Feature",
"properties": {
"id": 153,
"label": "28106",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.74196,
45.44883
]
}
},
{
"type": "Feature",
"properties": {
"id": 164,
"label": "28128",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.82873,
45.45686
]
}
},
{
"type": "Feature",
"properties": {
"id": 166,
"label": "28131",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.71209,
45.46512
]
}
},
{
"type": "Feature",
"properties": {
"id": 174,
"label": "29019",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57787,
45.49505
]
}
},
{
"type": "Feature",
"properties": {
"id": 178,
"label": "29033",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65179,
45.49601
]
}
},
{
"type": "Feature",
"properties": {
"id": 192,
"label": "29072",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6041,
45.47425
]
}
},
{
"type": "Feature",
"properties": {
"id": 193,
"label": "29074",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63111,
45.43446
]
}
},
{
"type": "Feature",
"properties": {
"id": 199,
"label": "29083",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5835,
45.48507
]
}
},
{
"type": "Feature",
"properties": {
"id": 202,
"label": "29088",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60879,
45.42535
]
}
},
{
"type": "Feature",
"properties": {
"id": 212,
"label": "29120",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.90022,
45.43751
]
}
},
{
"type": "Feature",
"properties": {
"id": 213,
"label": "29125",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57687,
45.48191
]
}
},
{
"type": "Feature",
"properties": {
"id": 215,
"label": "29130",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57227,
45.48542
]
}
},
{
"type": "Feature",
"properties": {
"id": 216,
"label": "29131",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.84943,
45.42982
]
}
},
{
"type": "Feature",
"properties": {
"id": 217,
"label": "29133",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66491,
45.43873
]
}
},
{
"type": "Feature",
"properties": {
"id": 219,
"label": "29139",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.85525,
45.43819
]
}
},
{
"type": "Feature",
"properties": {
"id": 221,
"label": "29141",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64755,
45.47151
]
}
},
{
"type": "Feature",
"properties": {
"id": 227,
"label": "29150",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.73653,
45.44868
]
}
},
{
"type": "Feature",
"properties": {
"id": 230,
"label": "29801",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68739,
45.51066
]
}
},
{
"type": "Feature",
"properties": {
"id": 239,
"label": "29826",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64001,
45.59912
]
}
},
{
"type": "Feature",
"properties": {
"id": 241,
"label": "29830",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65542,
45.55201
]
}
},
{
"type": "Feature",
"properties": {
"id": 261,
"label": "30027",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59673,
45.63836
]
}
},
{
"type": "Feature",
"properties": {
"id": 266,
"label": "30049",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6515,
45.58817
]
}
},
{
"type": "Feature",
"properties": {
"id": 270,
"label": "30059",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.51207,
45.59773
]
}
},
{
"type": "Feature",
"properties": {
"id": 272,
"label": "30070",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54649,
45.65691
]
}
},
{
"type": "Feature",
"properties": {
"id": 282,
"label": "30104",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57703,
45.50214
]
}
},
{
"type": "Feature",
"properties": {
"id": 284,
"label": "30107",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53419,
45.5965
]
}
},
{
"type": "Feature",
"properties": {
"id": 290,
"label": "30126",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66705,
45.55639
]
}
},
{
"type": "Feature",
"properties": {
"id": 295,
"label": "30140",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59197,
45.59243
]
}
},
{
"type": "Feature",
"properties": {
"id": 298,
"label": "30145",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.49261,
45.63911
]
}
},
{
"type": "Feature",
"properties": {
"id": 299,
"label": "30147",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57114,
45.65939
]
}
},
{
"type": "Feature",
"properties": {
"id": 300,
"label": "30149",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64828,
45.48075
]
}
},
{
"type": "Feature",
"properties": {
"id": 309,
"label": "30170",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60027,
45.54816
]
}
},
{
"type": "Feature",
"properties": {
"id": 311,
"label": "30179",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.82938,
45.47522
]
}
},
{
"type": "Feature",
"properties": {
"id": 312,
"label": "30183",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66084,
45.5344
]
}
},
{
"type": "Feature",
"properties": {
"id": 313,
"label": "30185",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56868,
45.60018
]
}
},
{
"type": "Feature",
"properties": {
"id": 315,
"label": "30193",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54217,
45.65952
]
}
},
{
"type": "Feature",
"properties": {
"id": 316,
"label": "30194",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62724,
45.61348
]
}
},
{
"type": "Feature",
"properties": {
"id": 317,
"label": "30195",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.49171,
45.69738
]
}
},
{
"type": "Feature",
"properties": {
"id": 318,
"label": "30198",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61541,
45.54134
]
}
},
{
"type": "Feature",
"properties": {
"id": 320,
"label": "30212",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5729,
45.59159
]
}
},
{
"type": "Feature",
"properties": {
"id": 323,
"label": "30230",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57008,
45.4986
]
}
},
{
"type": "Feature",
"properties": {
"id": 324,
"label": "30231",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.88165,
45.49092
]
}
},
{
"type": "Feature",
"properties": {
"id": 325,
"label": "30232",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.92054,
45.46137
]
}
},
{
"type": "Feature",
"properties": {
"id": 333,
"label": "30253",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.83907,
45.5059
]
}
},
{
"type": "Feature",
"properties": {
"id": 335,
"label": "30255",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.76345,
45.47805
]
}
},
{
"type": "Feature",
"properties": {
"id": 348,
"label": "30836",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55995,
45.54706
]
}
},
{
"type": "Feature",
"properties": {
"id": 349,
"label": "30837",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5338,
45.54726
]
}
},
{
"type": "Feature",
"properties": {
"id": 353,
"label": "30843",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63786,
45.57648
]
}
},
{
"type": "Feature",
"properties": {
"id": 356,
"label": "30850",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.69554,
45.54104
]
}
},
{
"type": "Feature",
"properties": {
"id": 362,
"label": "30869",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6227,
45.58045
]
}
},
{
"type": "Feature",
"properties": {
"id": 364,
"label": "30874",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60981,
45.56384
]
}
},
{
"type": "Feature",
"properties": {
"id": 365,
"label": "30875",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5338,
45.54726
]
}
},
{
"type": "Feature",
"properties": {
"id": 366,
"label": "30878",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.70412,
45.49736
]
}
},
{
"type": "Feature",
"properties": {
"id": 367,
"label": "30879",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61294,
45.60897
]
}
},
{
"type": "Feature",
"properties": {
"id": 373,
"label": "31013",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6674,
45.55738
]
}
},
{
"type": "Feature",
"properties": {
"id": 375,
"label": "31019",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58334,
45.52415
]
}
},
{
"type": "Feature",
"properties": {
"id": 381,
"label": "31042",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56804,
45.49849
]
}
},
{
"type": "Feature",
"properties": {
"id": 382,
"label": "31046",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55588,
45.50874
]
}
},
{
"type": "Feature",
"properties": {
"id": 387,
"label": "31052",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53785,
45.46724
]
}
},
{
"type": "Feature",
"properties": {
"id": 389,
"label": "31060",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56671,
45.51143
]
}
},
{
"type": "Feature",
"properties": {
"id": 394,
"label": "31079",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61166,
45.537
]
}
},
{
"type": "Feature",
"properties": {
"id": 396,
"label": "31093",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63946,
45.54422
]
}
},
{
"type": "Feature",
"properties": {
"id": 399,
"label": "31097",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59648,
45.53325
]
}
},
{
"type": "Feature",
"properties": {
"id": 400,
"label": "31101",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59463,
45.54543
]
}
},
{
"type": "Feature",
"properties": {
"id": 402,
"label": "31108",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56298,
45.53093
]
}
},
{
"type": "Feature",
"properties": {
"id": 403,
"label": "31111",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.82496,
45.46325
]
}
},
{
"type": "Feature",
"properties": {
"id": 405,
"label": "31117",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68156,
45.53451
]
}
},
{
"type": "Feature",
"properties": {
"id": 406,
"label": "31118",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53838,
45.66137
]
}
},
{
"type": "Feature",
"properties": {
"id": 408,
"label": "31123",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64095,
45.54935
]
}
},
{
"type": "Feature",
"properties": {
"id": 410,
"label": "31129",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64678,
45.54321
]
}
},
{
"type": "Feature",
"properties": {
"id": 416,
"label": "31144",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6086,
45.55185
]
}
},
{
"type": "Feature",
"properties": {
"id": 417,
"label": "31146",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53732,
45.58955
]
}
},
{
"type": "Feature",
"properties": {
"id": 418,
"label": "31147",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63131,
45.53907
]
}
},
{
"type": "Feature",
"properties": {
"id": 421,
"label": "31152",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56152,
45.536
]
}
},
{
"type": "Feature",
"properties": {
"id": 422,
"label": "31153",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54219,
45.58448
]
}
},
{
"type": "Feature",
"properties": {
"id": 423,
"label": "31157",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53499,
45.58068
]
}
},
{
"type": "Feature",
"properties": {
"id": 425,
"label": "31161",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56779,
45.51619
]
}
},
{
"type": "Feature",
"properties": {
"id": 426,
"label": "31162",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.50961,
45.59533
]
}
},
{
"type": "Feature",
"properties": {
"id": 427,
"label": "31163",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55338,
45.57122
]
}
},
{
"type": "Feature",
"properties": {
"id": 430,
"label": "31171",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54915,
45.56369
]
}
},
{
"type": "Feature",
"properties": {
"id": 433,
"label": "31175",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54606,
45.56222
]
}
},
{
"type": "Feature",
"properties": {
"id": 434,
"label": "31183",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55552,
45.51556
]
}
},
{
"type": "Feature",
"properties": {
"id": 435,
"label": "31185",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55039,
45.5328
]
}
},
{
"type": "Feature",
"properties": {
"id": 442,
"label": "31204",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63913,
45.57607
]
}
},
{
"type": "Feature",
"properties": {
"id": 445,
"label": "31209",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53411,
45.59622
]
}
},
{
"type": "Feature",
"properties": {
"id": 453,
"label": "31231",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57166,
45.54036
]
}
},
{
"type": "Feature",
"properties": {
"id": 457,
"label": "31235",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56104,
45.44841
]
}
},
{
"type": "Feature",
"properties": {
"id": 472,
"label": "31835",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64232,
45.59627
]
}
},
{
"type": "Feature",
"properties": {
"id": 474,
"label": "31840",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63293,
45.58686
]
}
},
{
"type": "Feature",
"properties": {
"id": 479,
"label": "31851",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57507,
45.56338
]
}
},
{
"type": "Feature",
"properties": {
"id": 481,
"label": "31853",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62056,
45.60713
]
}
},
{
"type": "Feature",
"properties": {
"id": 482,
"label": "31854",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5861,
45.55501
]
}
},
{
"type": "Feature",
"properties": {
"id": 483,
"label": "31856",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55946,
45.54697
]
}
},
{
"type": "Feature",
"properties": {
"id": 484,
"label": "31857",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64526,
45.5688
]
}
},
{
"type": "Feature",
"properties": {
"id": 485,
"label": "31858",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57883,
45.4955
]
}
},
{
"type": "Feature",
"properties": {
"id": 492,
"label": "32012",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6493,
45.47947
]
}
},
{
"type": "Feature",
"properties": {
"id": 497,
"label": "32027",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57557,
45.51036
]
}
},
{
"type": "Feature",
"properties": {
"id": 501,
"label": "32805",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6829,
45.51406
]
}
},
{
"type": "Feature",
"properties": {
"id": 506,
"label": "33803",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63121,
45.50043
]
}
},
{
"type": "Feature",
"properties": {
"id": 508,
"label": "33809",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59432,
45.49461
]
}
},
{
"type": "Feature",
"properties": {
"id": 510,
"label": "33814",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.83675,
45.47491
]
}
},
{
"type": "Feature",
"properties": {
"id": 514,
"label": "33828",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60103,
45.49558
]
}
},
{
"type": "Feature",
"properties": {
"id": 517,
"label": "33834",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64235,
45.50582
]
}
},
{
"type": "Feature",
"properties": {
"id": 518,
"label": "33835",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64037,
45.50458
]
}
},
{
"type": "Feature",
"properties": {
"id": 522,
"label": "36003",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55566,
45.61189
]
}
},
{
"type": "Feature",
"properties": {
"id": 524,
"label": "36008",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61412,
45.61756
]
}
},
{
"type": "Feature",
"properties": {
"id": 542,
"label": "37014",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60547,
45.47308
]
}
},
{
"type": "Feature",
"properties": {
"id": 552,
"label": "37041",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63886,
45.54567
]
}
},
{
"type": "Feature",
"properties": {
"id": 556,
"label": "37055",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65799,
45.49735
]
}
},
{
"type": "Feature",
"properties": {
"id": 557,
"label": "37056",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66929,
45.50598
]
}
},
{
"type": "Feature",
"properties": {
"id": 559,
"label": "37062",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62183,
45.53077
]
}
},
{
"type": "Feature",
"properties": {
"id": 560,
"label": "37064",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.69515,
45.47987
]
}
},
{
"type": "Feature",
"properties": {
"id": 565,
"label": "37077",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63894,
45.48349
]
}
},
{
"type": "Feature",
"properties": {
"id": 568,
"label": "37081",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68276,
45.50002
]
}
},
{
"type": "Feature",
"properties": {
"id": 569,
"label": "37082",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61769,
45.49672
]
}
},
{
"type": "Feature",
"properties": {
"id": 574,
"label": "37103",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63136,
45.45159
]
}
},
{
"type": "Feature",
"properties": {
"id": 576,
"label": "38006",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53172,
45.50975
]
}
},
{
"type": "Feature",
"properties": {
"id": 577,
"label": "38007",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61013,
45.60075
]
}
},
{
"type": "Feature",
"properties": {
"id": 581,
"label": "38019",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55437,
45.62045
]
}
},
{
"type": "Feature",
"properties": {
"id": 582,
"label": "38023",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56359,
45.51758
]
}
},
{
"type": "Feature",
"properties": {
"id": 586,
"label": "38037",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56009,
45.53922
]
}
},
{
"type": "Feature",
"properties": {
"id": 588,
"label": "38044",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.84637,
45.4892
]
}
},
{
"type": "Feature",
"properties": {
"id": 590,
"label": "38046",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.81786,
45.44918
]
}
},
{
"type": "Feature",
"properties": {
"id": 591,
"label": "38047",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.83274,
45.47117
]
}
},
{
"type": "Feature",
"properties": {
"id": 592,
"label": "38049",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.80524,
45.44693
]
}
},
{
"type": "Feature",
"properties": {
"id": 594,
"label": "38053",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66981,
45.55202
]
}
},
{
"type": "Feature",
"properties": {
"id": 603,
"label": "38074",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.82938,
45.46745
]
}
},
{
"type": "Feature",
"properties": {
"id": 604,
"label": "38076",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.76887,
45.44086
]
}
},
{
"type": "Feature",
"properties": {
"id": 605,
"label": "38080",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.85847,
45.45203
]
}
},
{
"type": "Feature",
"properties": {
"id": 608,
"label": "38088",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.574,
45.49498
]
}
},
{
"type": "Feature",
"properties": {
"id": 610,
"label": "38090",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54411,
45.54239
]
}
},
{
"type": "Feature",
"properties": {
"id": 629,
"label": "39032",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57818,
45.5218
]
}
},
{
"type": "Feature",
"properties": {
"id": 635,
"label": "39043",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57513,
45.59188
]
}
},
{
"type": "Feature",
"properties": {
"id": 639,
"label": "39049",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.50914,
45.61482
]
}
},
{
"type": "Feature",
"properties": {
"id": 652,
"label": "39083",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56536,
45.65796
]
}
},
{
"type": "Feature",
"properties": {
"id": 653,
"label": "39084",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5931,
45.63475
]
}
},
{
"type": "Feature",
"properties": {
"id": 657,
"label": "39097",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60873,
45.59668
]
}
},
{
"type": "Feature",
"properties": {
"id": 660,
"label": "39101",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58569,
45.63443
]
}
},
{
"type": "Feature",
"properties": {
"id": 661,
"label": "39102",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58012,
45.61702
]
}
},
{
"type": "Feature",
"properties": {
"id": 662,
"label": "39103",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65114,
45.58921
]
}
},
{
"type": "Feature",
"properties": {
"id": 664,
"label": "39106",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54053,
45.58953
]
}
},
{
"type": "Feature",
"properties": {
"id": 825,
"label": "29009",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64256,
45.55125
]
}
},
{
"type": "Feature",
"properties": {
"id": 826,
"label": "29123",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.67464,
45.44717
]
}
},
{
"type": "Feature",
"properties": {
"id": 830,
"label": "29856",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61729,
45.57787
]
}
},
{
"type": "Feature",
"properties": {
"id": 831,
"label": "30143",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.78185,
45.45224
]
}
},
{
"type": "Feature",
"properties": {
"id": 835,
"label": "30870",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65009,
45.58385
]
}
},
{
"type": "Feature",
"properties": {
"id": 836,
"label": "31065",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5813,
45.62558
]
}
},
{
"type": "Feature",
"properties": {
"id": 848,
"label": "36016",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.51898,
45.64455
]
}
},
{
"type": "Feature",
"properties": {
"id": 851,
"label": "37012",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68085,
45.49914
]
}
},
{
"type": "Feature",
"properties": {
"id": 852,
"label": "37018",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66127,
45.50736
]
}
},
{
"type": "Feature",
"properties": {
"id": 853,
"label": "37042",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.67,
45.55171
]
}
},
{
"type": "Feature",
"properties": {
"id": 854,
"label": "37045",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64117,
45.45536
]
}
},
{
"type": "Feature",
"properties": {
"id": 856,
"label": "37084",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62173,
45.46752
]
}
},
{
"type": "Feature",
"properties": {
"id": 857,
"label": "38009",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62045,
45.58552
]
}
},
{
"type": "Feature",
"properties": {
"id": 858,
"label": "38021",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53472,
45.56832
]
}
},
{
"type": "Feature",
"properties": {
"id": 859,
"label": "38022",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53275,
45.5783
]
}
},
{
"type": "Feature",
"properties": {
"id": 860,
"label": "38039",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.83125,
45.46641
]
}
},
{
"type": "Feature",
"properties": {
"id": 1048,
"label": "36013",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58847,
45.56985
]
}
},
{
"type": "Feature",
"properties": {
"id": 1110,
"label": "27534",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57228,
45.45247
]
}
},
{
"type": "Feature",
"properties": {
"id": 1114,
"label": "39039",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56019,
45.51489
]
}
},
{
"type": "Feature",
"properties": {
"id": 1134,
"label": "29100",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64539,
45.44536
]
}
},
{
"type": "Feature",
"properties": {
"id": 1135,
"label": "31127",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63208,
45.60239
]
}
},
{
"type": "Feature",
"properties": {
"id": 1136,
"label": "39013",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56743,
45.50169
]
}
},
{
"type": "Feature",
"properties": {
"id": 1137,
"label": "30023",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66602,
45.51149
]
}
},
{
"type": "Feature",
"properties": {
"id": 1139,
"label": "31210",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61852,
45.5786
]
}
},
{
"type": "Feature",
"properties": {
"id": 1155,
"label": "29134",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5961,
45.47873
]
}
},
{
"type": "Feature",
"properties": {
"id": 1158,
"label": "39105",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5733,
45.59158
]
}
},
{
"type": "Feature",
"properties": {
"id": 1163,
"label": "37036",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57972,
45.49587
]
}
},
{
"type": "Feature",
"properties": {
"id": 1186,
"label": "31113",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61122,
45.56192
]
}
},
{
"type": "Feature",
"properties": {
"id": 1187,
"label": "31115",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.51042,
45.59233
]
}
},
{
"type": "Feature",
"properties": {
"id": 1188,
"label": "37013",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6445,
45.51552
]
}
},
{
"type": "Feature",
"properties": {
"id": 1189,
"label": "37074",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61989,
45.47879
]
}
},
{
"type": "Feature",
"properties": {
"id": 1194,
"label": "29836",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.70246,
45.49939
]
}
},
{
"type": "Feature",
"properties": {
"id": 1196,
"label": "30097",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56902,
45.50727
]
}
},
{
"type": "Feature",
"properties": {
"id": 1198,
"label": "30112",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58196,
45.61889
]
}
},
{
"type": "Feature",
"properties": {
"id": 1204,
"label": "31136",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64224,
45.54694
]
}
},
{
"type": "Feature",
"properties": {
"id": 1222,
"label": "32003",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56734,
45.59115
]
}
},
{
"type": "Feature",
"properties": {
"id": 1227,
"label": "39092",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58216,
45.60491
]
}
},
{
"type": "Feature",
"properties": {
"id": 1231,
"label": "29854",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64925,
45.5862
]
}
},
{
"type": "Feature",
"properties": {
"id": 1234,
"label": "30110",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5427,
45.58259
]
}
},
{
"type": "Feature",
"properties": {
"id": 1238,
"label": "36045",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54937,
45.59739
]
}
},
{
"type": "Feature",
"properties": {
"id": 1247,
"label": "28020",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.70133,
45.51845
]
}
},
{
"type": "Feature",
"properties": {
"id": 1248,
"label": "28056",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59348,
45.43393
]
}
},
{
"type": "Feature",
"properties": {
"id": 1250,
"label": "29004",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56273,
45.58458
]
}
},
{
"type": "Feature",
"properties": {
"id": 1260,
"label": "31194",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54443,
45.54574
]
}
},
{
"type": "Feature",
"properties": {
"id": 1264,
"label": "37049",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66273,
45.51722
]
}
},
{
"type": "Feature",
"properties": {
"id": 1296,
"label": "29156",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65861,
45.44295
]
}
},
{
"type": "Feature",
"properties": {
"id": 1298,
"label": "30008",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61662,
45.51825
]
}
},
{
"type": "Feature",
"properties": {
"id": 1300,
"label": "31025",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61964,
45.54571
]
}
},
{
"type": "Feature",
"properties": {
"id": 1306,
"label": "31189",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.83349,
45.46713
]
}
},
{
"type": "Feature",
"properties": {
"id": 1307,
"label": "31855",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57189,
45.50866
]
}
},
{
"type": "Feature",
"properties": {
"id": 1333,
"label": "28074",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.81651,
45.51054
]
}
},
{
"type": "Feature",
"properties": {
"id": 1334,
"label": "29010",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58688,
45.56546
]
}
},
{
"type": "Feature",
"properties": {
"id": 1337,
"label": "30176",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.71952,
45.44467
]
}
},
{
"type": "Feature",
"properties": {
"id": 1338,
"label": "30809",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60938,
45.56377
]
}
},
{
"type": "Feature",
"properties": {
"id": 1346,
"label": "33830",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64178,
45.53325
]
}
},
{
"type": "Feature",
"properties": {
"id": 1365,
"label": "28004",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59761,
45.53097
]
}
},
{
"type": "Feature",
"properties": {
"id": 1366,
"label": "29037",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63162,
45.53892
]
}
},
{
"type": "Feature",
"properties": {
"id": 1371,
"label": "30813",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66984,
45.55197
]
}
},
{
"type": "Feature",
"properties": {
"id": 1377,
"label": "37005",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64095,
45.45564
]
}
},
{
"type": "Feature",
"properties": {
"id": 1378,
"label": "38098",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56652,
45.49916
]
}
},
{
"type": "Feature",
"properties": {
"id": 1404,
"label": "33805",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60566,
45.52375
]
}
},
{
"type": "Feature",
"properties": {
"id": 1408,
"label": "38054",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.83852,
45.50048
]
}
},
{
"type": "Feature",
"properties": {
"id": 1427,
"label": "29117",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.74234,
45.44836
]
}
},
{
"type": "Feature",
"properties": {
"id": 1441,
"label": "31150",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6196,
45.47975
]
}
},
{
"type": "Feature",
"properties": {
"id": 1480,
"label": "31035",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.71803,
45.53055
]
}
},
{
"type": "Feature",
"properties": {
"id": 1486,
"label": "31198",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55057,
45.52462
]
}
},
{
"type": "Feature",
"properties": {
"id": 1489,
"label": "38004",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59602,
45.48545
]
}
},
{
"type": "Feature",
"properties": {
"id": 1496,
"label": "27527",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56794,
45.50228
]
}
},
{
"type": "Feature",
"properties": {
"id": 1502,
"label": "30186",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61745,
45.60745
]
}
},
{
"type": "Feature",
"properties": {
"id": 1515,
"label": "31801",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60986,
45.5256
]
}
},
{
"type": "Feature",
"properties": {
"id": 1542,
"label": "30173",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68147,
45.51335
]
}
},
{
"type": "Feature",
"properties": {
"id": 1546,
"label": "30863",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65504,
45.55282
]
}
},
{
"type": "Feature",
"properties": {
"id": 1557,
"label": "39072",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63021,
45.6153
]
}
},
{
"type": "Feature",
"properties": {
"id": 1595,
"label": "31121",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59746,
45.57763
]
}
},
{
"type": "Feature",
"properties": {
"id": 1600,
"label": "38020",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57674,
45.50168
]
}
},
{
"type": "Feature",
"properties": {
"id": 1610,
"label": "29039",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68355,
45.51483
]
}
},
{
"type": "Feature",
"properties": {
"id": 1612,
"label": "29058",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62279,
45.51159
]
}
},
{
"type": "Feature",
"properties": {
"id": 1620,
"label": "37087",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63519,
45.49328
]
}
},
{
"type": "Feature",
"properties": {
"id": 1625,
"label": "39006",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57888,
45.48254
]
}
},
{
"type": "Feature",
"properties": {
"id": 1641,
"label": "29050",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60468,
45.53554
]
}
},
{
"type": "Feature",
"properties": {
"id": 1656,
"label": "37032",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62435,
45.53057
]
}
},
{
"type": "Feature",
"properties": {
"id": 1674,
"label": "28094",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56766,
45.46785
]
}
},
{
"type": "Feature",
"properties": {
"id": 1679,
"label": "29839",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55185,
45.55365
]
}
},
{
"type": "Feature",
"properties": {
"id": 1686,
"label": "31094",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61942,
45.47908
]
}
},
{
"type": "Feature",
"properties": {
"id": 1688,
"label": "31193",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6619,
45.47554
]
}
},
{
"type": "Feature",
"properties": {
"id": 1690,
"label": "31821",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65987,
45.56774
]
}
},
{
"type": "Feature",
"properties": {
"id": 1695,
"label": "37017",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68339,
45.50768
]
}
},
{
"type": "Feature",
"properties": {
"id": 1696,
"label": "37022",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64224,
45.47499
]
}
},
{
"type": "Feature",
"properties": {
"id": 1721,
"label": "31068",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.50048,
45.64154
]
}
},
{
"type": "Feature",
"properties": {
"id": 1739,
"label": "28029",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6832,
45.51447
]
}
},
{
"type": "Feature",
"properties": {
"id": 1745,
"label": "29021",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58542,
45.51968
]
}
},
{
"type": "Feature",
"properties": {
"id": 1762,
"label": "37075",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.69227,
45.51466
]
}
},
{
"type": "Feature",
"properties": {
"id": 1790,
"label": "30116",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.49746,
45.69031
]
}
},
{
"type": "Feature",
"properties": {
"id": 1794,
"label": "30819",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63537,
45.57545
]
}
},
{
"type": "Feature",
"properties": {
"id": 1798,
"label": "31143",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57376,
45.56094
]
}
},
{
"type": "Feature",
"properties": {
"id": 1803,
"label": "36042",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59792,
45.60178
]
}
},
{
"type": "Feature",
"properties": {
"id": 1804,
"label": "38014",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53781,
45.47094
]
}
},
{
"type": "Feature",
"properties": {
"id": 1805,
"label": "38096",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59024,
45.48917
]
}
},
{
"type": "Feature",
"properties": {
"id": 1837,
"label": "31177",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56776,
45.57622
]
}
},
{
"type": "Feature",
"properties": {
"id": 1839,
"label": "31181",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56259,
45.49895
]
}
},
{
"type": "Feature",
"properties": {
"id": 1864,
"label": "30163",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6517,
45.58038
]
}
},
{
"type": "Feature",
"properties": {
"id": 1873,
"label": "36007",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55727,
45.57779
]
}
},
{
"type": "Feature",
"properties": {
"id": 1881,
"label": "28022",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.76112,
45.48094
]
}
},
{
"type": "Feature",
"properties": {
"id": 1883,
"label": "28061",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66122,
45.45973
]
}
},
{
"type": "Feature",
"properties": {
"id": 1896,
"label": "30171",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.70137,
45.49952
]
}
},
{
"type": "Feature",
"properties": {
"id": 1904,
"label": "37107",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.8245,
45.46299
]
}
},
{
"type": "Feature",
"properties": {
"id": 1937,
"label": "30808",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5621,
45.5477
]
}
},
{
"type": "Feature",
"properties": {
"id": 1969,
"label": "28054",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65845,
45.57001
]
}
},
{
"type": "Feature",
"properties": {
"id": 1982,
"label": "38043",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.78518,
45.49782
]
}
},
{
"type": "Feature",
"properties": {
"id": 1983,
"label": "38059",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.81952,
45.47238
]
}
},
{
"type": "Feature",
"properties": {
"id": 1998,
"label": "29122",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.87224,
45.42242
]
}
},
{
"type": "Feature",
"properties": {
"id": 2000,
"label": "30022",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63821,
45.45837
]
}
},
{
"type": "Feature",
"properties": {
"id": 2051,
"label": "29023",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60491,
45.55999
]
}
},
{
"type": "Feature",
"properties": {
"id": 2070,
"label": "28053",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65855,
45.4251
]
}
},
{
"type": "Feature",
"properties": {
"id": 2081,
"label": "30204",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6583,
45.57084
]
}
},
{
"type": "Feature",
"properties": {
"id": 2083,
"label": "31054",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68359,
45.51369
]
}
},
{
"type": "Feature",
"properties": {
"id": 2109,
"label": "30241",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.74236,
45.44801
]
}
},
{
"type": "Feature",
"properties": {
"id": 2143,
"label": "30055",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61533,
45.50716
]
}
},
{
"type": "Feature",
"properties": {
"id": 2146,
"label": "32005",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58744,
45.49104
]
}
},
{
"type": "Feature",
"properties": {
"id": 2150,
"label": "37029",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61124,
45.48029
]
}
},
{
"type": "Feature",
"properties": {
"id": 2153,
"label": "38048",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.82521,
45.4291
]
}
},
{
"type": "Feature",
"properties": {
"id": 2157,
"label": "39026",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55489,
45.44802
]
}
},
{
"type": "Feature",
"properties": {
"id": 2158,
"label": "39030",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5517,
45.62503
]
}
},
{
"type": "Feature",
"properties": {
"id": 2162,
"label": "39100",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6385,
45.54611
]
}
},
{
"type": "Feature",
"properties": {
"id": 2163,
"label": "39110",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.48848,
45.69252
]
}
},
{
"type": "Feature",
"properties": {
"id": 2167,
"label": "29061",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60402,
45.52651
]
}
},
{
"type": "Feature",
"properties": {
"id": 2170,
"label": "31076",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.67113,
45.46262
]
}
},
{
"type": "Feature",
"properties": {
"id": 2180,
"label": "29846",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54286,
45.54794
]
}
},
{
"type": "Feature",
"properties": {
"id": 2181,
"label": "29053",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62251,
45.54482
]
}
},
{
"type": "Feature",
"properties": {
"id": 2185,
"label": "37106",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60901,
45.47416
]
}
},
{
"type": "Feature",
"properties": {
"id": 2189,
"label": "36030",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.52016,
45.59624
]
}
},
{
"type": "Feature",
"properties": {
"id": 2224,
"label": "31806",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64411,
45.51599
]
}
},
{
"type": "Feature",
"properties": {
"id": 2323,
"label": "38081",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.72335,
45.51197
]
}
},
{
"type": "Feature",
"properties": {
"id": 2470,
"label": "30215",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.49136,
45.65574
]
}
},
{
"type": "Feature",
"properties": {
"id": 2473,
"label": "36018",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60693,
45.63298
]
}
},
{
"type": "Feature",
"properties": {
"id": 2497,
"label": "36048",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58619,
45.57268
]
}
},
{
"type": "Feature",
"properties": {
"id": 2501,
"label": "38042",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.74294,
45.51893
]
}
},
{
"type": "Feature",
"properties": {
"id": 2507,
"label": "30178",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5693,
45.58164
]
}
},
{
"type": "Feature",
"properties": {
"id": 2512,
"label": "31017",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58504,
45.55645
]
}
},
{
"type": "Feature",
"properties": {
"id": 2514,
"label": "30826",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60319,
45.57185
]
}
},
{
"type": "Feature",
"properties": {
"id": 2523,
"label": "31066",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55162,
45.52374
]
}
},
{
"type": "Feature",
"properties": {
"id": 2535,
"label": "31122",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55732,
45.52807
]
}
},
{
"type": "Feature",
"properties": {
"id": 2537,
"label": "30087",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56172,
45.54772
]
}
},
{
"type": "Feature",
"properties": {
"id": 2546,
"label": "37067",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64771,
45.49207
]
}
},
{
"type": "Feature",
"properties": {
"id": 2556,
"label": "27522",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61575,
45.44483
]
}
},
{
"type": "Feature",
"properties": {
"id": 2557,
"label": "36041",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5721,
45.58258
]
}
},
{
"type": "Feature",
"properties": {
"id": 2559,
"label": "36032",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.49028,
45.63977
]
}
},
{
"type": "Feature",
"properties": {
"id": 2580,
"label": "39126",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60509,
45.58434
]
}
},
{
"type": "Feature",
"properties": {
"id": 2583,
"label": "29089",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.94014,
45.40367
]
}
},
{
"type": "Feature",
"properties": {
"id": 2592,
"label": "31176",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61485,
45.5617
]
}
},
{
"type": "Feature",
"properties": {
"id": 2609,
"label": "30817",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.7188,
45.53158
]
}
},
{
"type": "Feature",
"properties": {
"id": 2612,
"label": "29030",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59814,
45.5314
]
}
},
{
"type": "Feature",
"properties": {
"id": 2613,
"label": "38029",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54658,
45.56173
]
}
},
{
"type": "Feature",
"properties": {
"id": 2626,
"label": "38061",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.71246,
45.52731
]
}
},
{
"type": "Feature",
"properties": {
"id": 2631,
"label": "39107",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58327,
45.60876
]
}
},
{
"type": "Feature",
"properties": {
"id": 2632,
"label": "38025",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61546,
45.4773
]
}
},
{
"type": "Feature",
"properties": {
"id": 2639,
"label": "38050",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.74487,
45.44974
]
}
},
{
"type": "Feature",
"properties": {
"id": 2640,
"label": "37020",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.75182,
45.49286
]
}
},
{
"type": "Feature",
"properties": {
"id": 2647,
"label": "37098",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.89353,
45.45919
]
}
},
{
"type": "Feature",
"properties": {
"id": 2651,
"label": "29084",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59423,
45.43169
]
}
},
{
"type": "Feature",
"properties": {
"id": 2652,
"label": "32013",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62614,
45.52029
]
}
},
{
"type": "Feature",
"properties": {
"id": 2662,
"label": "39048",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53452,
45.59634
]
}
},
{
"type": "Feature",
"properties": {
"id": 2665,
"label": "31208",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55982,
45.51472
]
}
},
{
"type": "Feature",
"properties": {
"id": 2669,
"label": "38078",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68324,
45.51332
]
}
},
{
"type": "Feature",
"properties": {
"id": 2680,
"label": "39063",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60533,
45.62195
]
}
},
{
"type": "Feature",
"properties": {
"id": 2685,
"label": "30873",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60933,
45.56375
]
}
},
{
"type": "Feature",
"properties": {
"id": 2690,
"label": "29119",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.92439,
45.40536
]
}
},
{
"type": "Feature",
"properties": {
"id": 2693,
"label": "30142",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61571,
45.62799
]
}
},
{
"type": "Feature",
"properties": {
"id": 2705,
"label": "29116",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.73375,
45.44726
]
}
},
{
"type": "Feature",
"properties": {
"id": 2707,
"label": "30114",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.49789,
45.64803
]
}
},
{
"type": "Feature",
"properties": {
"id": 2712,
"label": "37033",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66003,
45.46043
]
}
},
{
"type": "Feature",
"properties": {
"id": 2715,
"label": "37016",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.70982,
45.5045
]
}
},
{
"type": "Feature",
"properties": {
"id": 2716,
"label": "31230",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5544,
45.56516
]
}
},
{
"type": "Feature",
"properties": {
"id": 2718,
"label": "39128",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5405,
45.61384
]
}
},
{
"type": "Feature",
"properties": {
"id": 2722,
"label": "38041",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.86491,
45.48028
]
}
},
{
"type": "Feature",
"properties": {
"id": 2723,
"label": "30169",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68118,
45.51614
]
}
},
{
"type": "Feature",
"properties": {
"id": 2726,
"label": "29066",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60808,
45.5274
]
}
},
{
"type": "Feature",
"properties": {
"id": 2743,
"label": "31091",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57512,
45.49779
]
}
},
{
"type": "Feature",
"properties": {
"id": 2747,
"label": "37100",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68469,
45.52948
]
}
},
{
"type": "Feature",
"properties": {
"id": 2751,
"label": "31134",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64685,
45.57628
]
}
},
{
"type": "Feature",
"properties": {
"id": 2757,
"label": "30213",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.49147,
45.69746
]
}
},
{
"type": "Feature",
"properties": {
"id": 2760,
"label": "31077",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56887,
45.51947
]
}
},
{
"type": "Feature",
"properties": {
"id": 2777,
"label": "30030",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63908,
45.47382
]
}
},
{
"type": "Feature",
"properties": {
"id": 2784,
"label": "30880",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6076,
45.61858
]
}
},
{
"type": "Feature",
"properties": {
"id": 2785,
"label": "37051",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60529,
45.52396
]
}
},
{
"type": "Feature",
"properties": {
"id": 2786,
"label": "31120",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66171,
45.55335
]
}
},
{
"type": "Feature",
"properties": {
"id": 2795,
"label": "30854",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57882,
45.55268
]
}
},
{
"type": "Feature",
"properties": {
"id": 2797,
"label": "30233",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.83115,
45.4656
]
}
},
{
"type": "Feature",
"properties": {
"id": 2798,
"label": "37026",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66802,
45.55571
]
}
},
{
"type": "Feature",
"properties": {
"id": 2802,
"label": "31128",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6564,
45.55035
]
}
},
{
"type": "Feature",
"properties": {
"id": 2806,
"label": "32025",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54004,
45.58956
]
}
},
{
"type": "Feature",
"properties": {
"id": 2815,
"label": "39069",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57417,
45.60872
]
}
},
{
"type": "Feature",
"properties": {
"id": 2820,
"label": "31026",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66788,
45.55514
]
}
},
{
"type": "Feature",
"properties": {
"id": 2823,
"label": "31132",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62327,
45.55527
]
}
},
{
"type": "Feature",
"properties": {
"id": 2824,
"label": "31832",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58849,
45.56523
]
}
},
{
"type": "Feature",
"properties": {
"id": 2828,
"label": "31200",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59979,
45.48215
]
}
},
{
"type": "Feature",
"properties": {
"id": 2837,
"label": "39060",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53998,
45.58987
]
}
},
{
"type": "Feature",
"properties": {
"id": 2858,
"label": "31015",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58095,
45.56115
]
}
},
{
"type": "Feature",
"properties": {
"id": 2859,
"label": "30122",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53465,
45.5965
]
}
},
{
"type": "Feature",
"properties": {
"id": 2863,
"label": "31059",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59354,
45.56421
]
}
},
{
"type": "Feature",
"properties": {
"id": 2864,
"label": "30078",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.50568,
45.62155
]
}
},
{
"type": "Feature",
"properties": {
"id": 2867,
"label": "29065",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5643,
45.58197
]
}
},
{
"type": "Feature",
"properties": {
"id": 2869,
"label": "30834",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63662,
45.57598
]
}
},
{
"type": "Feature",
"properties": {
"id": 2871,
"label": "30033",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54638,
45.60464
]
}
},
{
"type": "Feature",
"properties": {
"id": 2873,
"label": "29102",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64144,
45.42309
]
}
},
{
"type": "Feature",
"properties": {
"id": 2877,
"label": "39070",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56758,
45.65657
]
}
},
{
"type": "Feature",
"properties": {
"id": 2878,
"label": "36902",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5702,
45.48606
]
}
},
{
"type": "Feature",
"properties": {
"id": 2879,
"label": "31022",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62257,
45.48099
]
}
},
{
"type": "Feature",
"properties": {
"id": 2888,
"label": "30225",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66237,
45.54774
]
}
},
{
"type": "Feature",
"properties": {
"id": 2890,
"label": "30236",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.71024,
45.4925
]
}
},
{
"type": "Feature",
"properties": {
"id": 2907,
"label": "30805",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63512,
45.57547
]
}
},
{
"type": "Feature",
"properties": {
"id": 2910,
"label": "37039",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.67166,
45.52042
]
}
},
{
"type": "Feature",
"properties": {
"id": 2914,
"label": "31011",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66796,
45.46171
]
}
},
{
"type": "Feature",
"properties": {
"id": 2915,
"label": "39133",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60072,
45.6131
]
}
},
{
"type": "Feature",
"properties": {
"id": 2917,
"label": "37068",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61967,
45.47903
]
}
},
{
"type": "Feature",
"properties": {
"id": 2922,
"label": "31202",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68625,
45.53681
]
}
},
{
"type": "Feature",
"properties": {
"id": 2924,
"label": "28007",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58063,
45.49266
]
}
},
{
"type": "Feature",
"properties": {
"id": 2926,
"label": "36047",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.52969,
45.60555
]
}
},
{
"type": "Feature",
"properties": {
"id": 2934,
"label": "31083",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63501,
45.50183
]
}
},
{
"type": "Feature",
"properties": {
"id": 2936,
"label": "36010",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.52774,
45.60861
]
}
},
{
"type": "Feature",
"properties": {
"id": 2940,
"label": "30820",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60824,
45.61085
]
}
},
{
"type": "Feature",
"properties": {
"id": 2953,
"label": "32015",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.51659,
45.63146
]
}
},
{
"type": "Feature",
"properties": {
"id": 2955,
"label": "30256",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61314,
45.60057
]
}
},
{
"type": "Feature",
"properties": {
"id": 2958,
"label": "30080",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56747,
45.64777
]
}
},
{
"type": "Feature",
"properties": {
"id": 2960,
"label": "29081",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57942,
45.48203
]
}
},
{
"type": "Feature",
"properties": {
"id": 2961,
"label": "29148",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61475,
45.42519
]
}
},
{
"type": "Feature",
"properties": {
"id": 2964,
"label": "32031",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62761,
45.48548
]
}
},
{
"type": "Feature",
"properties": {
"id": 2971,
"label": "31063",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60841,
45.61124
]
}
},
{
"type": "Feature",
"properties": {
"id": 2973,
"label": "31133",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6674,
45.55697
]
}
},
{
"type": "Feature",
"properties": {
"id": 2992,
"label": "32019",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6674,
45.55734
]
}
},
{
"type": "Feature",
"properties": {
"id": 2995,
"label": "30028",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59999,
45.51595
]
}
},
{
"type": "Feature",
"properties": {
"id": 2996,
"label": "30181",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.71928,
45.4389
]
}
},
{
"type": "Feature",
"properties": {
"id": 3001,
"label": "37094",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58246,
45.48764
]
}
},
{
"type": "Feature",
"properties": {
"id": 3003,
"label": "31809",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6833,
45.51456
]
}
},
{
"type": "Feature",
"properties": {
"id": 3005,
"label": "28011",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.7597,
45.4454
]
}
},
{
"type": "Feature",
"properties": {
"id": 3014,
"label": "37063",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68328,
45.51376
]
}
},
{
"type": "Feature",
"properties": {
"id": 3030,
"label": "29031",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62303,
45.4803
]
}
},
{
"type": "Feature",
"properties": {
"id": 3040,
"label": "27529",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54134,
45.58258
]
}
},
{
"type": "Feature",
"properties": {
"id": 3042,
"label": "39144",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53188,
45.6019
]
}
},
{
"type": "Feature",
"properties": {
"id": 3060,
"label": "31023",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.85334,
45.42852
]
}
},
{
"type": "Feature",
"properties": {
"id": 3071,
"label": "37105",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6078,
45.53094
]
}
},
{
"type": "Feature",
"properties": {
"id": 3077,
"label": "30238",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.73149,
45.47564
]
}
},
{
"type": "Feature",
"properties": {
"id": 3078,
"label": "27507",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.74403,
45.44834
]
}
},
{
"type": "Feature",
"properties": {
"id": 3084,
"label": "31810",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.69466,
45.50468
]
}
},
{
"type": "Feature",
"properties": {
"id": 3102,
"label": "33843",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56927,
45.50739
]
}
},
{
"type": "Feature",
"properties": {
"id": 3104,
"label": "29108",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57587,
45.4623
]
}
},
{
"type": "Feature",
"properties": {
"id": 3109,
"label": "39145",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61792,
45.61998
]
}
},
{
"type": "Feature",
"properties": {
"id": 3117,
"label": "40008",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62231,
45.4285
]
}
},
{
"type": "Feature",
"properties": {
"id": 3127,
"label": "40003",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58305,
45.4893
]
}
},
{
"type": "Feature",
"properties": {
"id": 3128,
"label": "40029",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61471,
45.43667
]
}
},
{
"type": "Feature",
"properties": {
"id": 3130,
"label": "40018",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58272,
45.48785
]
}
},
{
"type": "Feature",
"properties": {
"id": 3132,
"label": "40015",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56567,
45.47031
]
}
},
{
"type": "Feature",
"properties": {
"id": 3143,
"label": "29851",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66019,
45.61145
]
}
},
{
"type": "Feature",
"properties": {
"id": 3145,
"label": "38082",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.70693,
45.52256
]
}
},
{
"type": "Feature",
"properties": {
"id": 3146,
"label": "30197",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5875,
45.57104
]
}
},
{
"type": "Feature",
"properties": {
"id": 3154,
"label": "30182",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56952,
45.57427
]
}
},
{
"type": "Feature",
"properties": {
"id": 3155,
"label": "33811",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.89178,
45.46498
]
}
},
{
"type": "Feature",
"properties": {
"id": 3160,
"label": "40034",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64064,
45.45472
]
}
},
{
"type": "Feature",
"properties": {
"id": 3167,
"label": "31110",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60567,
45.53329
]
}
},
{
"type": "Feature",
"properties": {
"id": 3170,
"label": "30200",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55779,
45.60852
]
}
},
{
"type": "Feature",
"properties": {
"id": 3173,
"label": "40038",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59538,
45.45679
]
}
},
{
"type": "Feature",
"properties": {
"id": 3186,
"label": "29110",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57714,
45.48559
]
}
},
{
"type": "Feature",
"properties": {
"id": 3189,
"label": "28123",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59573,
45.46856
]
}
},
{
"type": "Feature",
"properties": {
"id": 3218,
"label": "40043",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.69016,
45.43762
]
}
},
{
"type": "Feature",
"properties": {
"id": 3223,
"label": "40041",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60506,
45.44709
]
}
},
{
"type": "Feature",
"properties": {
"id": 3235,
"label": "33806",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56485,
45.51036
]
}
},
{
"type": "Feature",
"properties": {
"id": 3241,
"label": "40046",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53849,
45.46758
]
}
},
{
"type": "Feature",
"properties": {
"id": 3244,
"label": "29099",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58035,
45.48335
]
}
},
{
"type": "Feature",
"properties": {
"id": 3247,
"label": "40052",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61855,
45.41773
]
}
},
{
"type": "Feature",
"properties": {
"id": 3249,
"label": "40002",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61278,
45.47288
]
}
},
{
"type": "Feature",
"properties": {
"id": 3250,
"label": "28012",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59646,
45.45058
]
}
},
{
"type": "Feature",
"properties": {
"id": 3251,
"label": "29024",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60401,
45.54586
]
}
},
{
"type": "Feature",
"properties": {
"id": 3257,
"label": "33819",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6219,
45.49615
]
}
},
{
"type": "Feature",
"properties": {
"id": 3260,
"label": "40035",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.67813,
45.44596
]
}
},
{
"type": "Feature",
"properties": {
"id": 3262,
"label": "40012",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60346,
45.47382
]
}
},
{
"type": "Feature",
"properties": {
"id": 3268,
"label": "31028",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56046,
45.58841
]
}
},
{
"type": "Feature",
"properties": {
"id": 3272,
"label": "40051",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55522,
45.48127
]
}
},
{
"type": "Feature",
"properties": {
"id": 3277,
"label": "31861",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66724,
45.53144
]
}
},
{
"type": "Feature",
"properties": {
"id": 3282,
"label": "30161",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.50549,
45.6746
]
}
},
{
"type": "Feature",
"properties": {
"id": 3297,
"label": "40059",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.613,
45.44915
]
}
},
{
"type": "Feature",
"properties": {
"id": 3305,
"label": "40025",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57164,
45.4851
]
}
},
{
"type": "Feature",
"properties": {
"id": 3306,
"label": "31047",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54422,
45.50135
]
}
},
{
"type": "Feature",
"properties": {
"id": 3318,
"label": "31849",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66975,
45.52756
]
}
},
{
"type": "Feature",
"properties": {
"id": 3319,
"label": "33841",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63615,
45.53024
]
}
},
{
"type": "Feature",
"properties": {
"id": 3321,
"label": "37007",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.67861,
45.51139
]
}
},
{
"type": "Feature",
"properties": {
"id": 3324,
"label": "38017",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54245,
45.48028
]
}
},
{
"type": "Feature",
"properties": {
"id": 3327,
"label": "40050",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60381,
45.47361
]
}
},
{
"type": "Feature",
"properties": {
"id": 3332,
"label": "29035",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59708,
45.5275
]
}
},
{
"type": "Feature",
"properties": {
"id": 3346,
"label": "39113",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57357,
45.59373
]
}
},
{
"type": "Feature",
"properties": {
"id": 3360,
"label": "30239",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68383,
45.5146
]
}
},
{
"type": "Feature",
"properties": {
"id": 3362,
"label": "27516",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61198,
45.44886
]
}
},
{
"type": "Feature",
"properties": {
"id": 3369,
"label": "29154",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56072,
45.51514
]
}
},
{
"type": "Feature",
"properties": {
"id": 3370,
"label": "30113",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59441,
45.52377
]
}
},
{
"type": "Feature",
"properties": {
"id": 3378,
"label": "31008",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63805,
45.44775
]
}
},
{
"type": "Feature",
"properties": {
"id": 3391,
"label": "33815",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.8382,
45.4766
]
}
},
{
"type": "Feature",
"properties": {
"id": 3399,
"label": "30129",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53807,
45.60704
]
}
},
{
"type": "Feature",
"properties": {
"id": 3404,
"label": "29818",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62327,
45.49677
]
}
},
{
"type": "Feature",
"properties": {
"id": 6417,
"label": "30120",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.54793,
45.66759
]
}
},
{
"type": "Feature",
"properties": {
"id": 6913,
"label": "39901",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57126,
45.49335
]
}
},
{
"type": "Feature",
"properties": {
"id": 7023,
"label": "30207",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63541,
45.48293
]
}
},
{
"type": "Feature",
"properties": {
"id": 7093,
"label": "31064",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56599,
45.52258
]
}
},
{
"type": "Feature",
"properties": {
"id": 7117,
"label": "30119",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62594,
45.50036
]
}
},
{
"type": "Feature",
"properties": {
"id": 7408,
"label": "40090",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.53873,
45.46806
]
}
},
{
"type": "Feature",
"properties": {
"id": 7414,
"label": "40089",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64801,
45.4255
]
}
},
{
"type": "Feature",
"properties": {
"id": 7417,
"label": "40101",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57706,
45.44357
]
}
},
{
"type": "Feature",
"properties": {
"id": 7425,
"label": "40104",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56104,
45.44841
]
}
},
{
"type": "Feature",
"properties": {
"id": 7426,
"label": "40106",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58777,
45.46368
]
}
},
{
"type": "Feature",
"properties": {
"id": 7427,
"label": "40103",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61111,
45.44672
]
}
},
{
"type": "Feature",
"properties": {
"id": 7703,
"label": "40084",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68033,
45.44303
]
}
},
{
"type": "Feature",
"properties": {
"id": 7892,
"label": "40121",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60533,
45.47318
]
}
},
{
"type": "Feature",
"properties": {
"id": 7910,
"label": "40087",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64198,
45.46307
]
}
},
{
"type": "Feature",
"properties": {
"id": 8097,
"label": "40064",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58762,
45.45724
]
}
},
{
"type": "Feature",
"properties": {
"id": 8415,
"label": "40099",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.7427,
45.44861
]
}
},
{
"type": "Feature",
"properties": {
"id": 8487,
"label": "40083",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57684,
45.44395
]
}
},
{
"type": "Feature",
"properties": {
"id": 8602,
"label": "40075",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59546,
45.46865
]
}
},
{
"type": "Feature",
"properties": {
"id": 8630,
"label": "40077",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56775,
45.45457
]
}
},
{
"type": "Feature",
"properties": {
"id": 8765,
"label": "40067",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.74374,
45.44347
]
}
},
{
"type": "Feature",
"properties": {
"id": 8784,
"label": "40080",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58438,
45.47923
]
}
},
{
"type": "Feature",
"properties": {
"id": 8807,
"label": "40078",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60332,
45.47912
]
}
},
{
"type": "Feature",
"properties": {
"id": 8838,
"label": "40073",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58224,
45.45691
]
}
},
{
"type": "Feature",
"properties": {
"id": 8848,
"label": "40095",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56552,
45.48038
]
}
},
{
"type": "Feature",
"properties": {
"id": 8860,
"label": "31182",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55061,
45.53289
]
}
},
{
"type": "Feature",
"properties": {
"id": 8894,
"label": "40076",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.67323,
45.44731
]
}
},
{
"type": "Feature",
"properties": {
"id": 8895,
"label": "40088",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63866,
45.42897
]
}
},
{
"type": "Feature",
"properties": {
"id": 8897,
"label": "40068",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58196,
45.47905
]
}
},
{
"type": "Feature",
"properties": {
"id": 8907,
"label": "40092",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56748,
45.49607
]
}
},
{
"type": "Feature",
"properties": {
"id": 8911,
"label": "30146",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63083,
45.50241
]
}
},
{
"type": "Feature",
"properties": {
"id": 8913,
"label": "40066",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6045,
45.44699
]
}
},
{
"type": "Feature",
"properties": {
"id": 8917,
"label": "40111",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5662,
45.48038
]
}
},
{
"type": "Feature",
"properties": {
"id": 9050,
"label": "40143",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.92057,
45.42775
]
}
},
{
"type": "Feature",
"properties": {
"id": 9080,
"label": "40156",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.83145,
45.46542
]
}
},
{
"type": "Feature",
"properties": {
"id": 9081,
"label": "40122",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.84858,
45.43729
]
}
},
{
"type": "Feature",
"properties": {
"id": 9082,
"label": "40157",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.72576,
45.52866
]
}
},
{
"type": "Feature",
"properties": {
"id": 9101,
"label": "40130",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.79399,
45.44964
]
}
},
{
"type": "Feature",
"properties": {
"id": 9205,
"label": "40129",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62304,
45.48029
]
}
},
{
"type": "Feature",
"properties": {
"id": 9207,
"label": "40132",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59846,
45.47305
]
}
},
{
"type": "Feature",
"properties": {
"id": 9208,
"label": "40134",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.69499,
45.48293
]
}
},
{
"type": "Feature",
"properties": {
"id": 9210,
"label": "40137",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.71172,
45.52467
]
}
},
{
"type": "Feature",
"properties": {
"id": 9213,
"label": "40142",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68354,
45.51397
]
}
},
{
"type": "Feature",
"properties": {
"id": 9214,
"label": "40144",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6841,
45.51423
]
}
},
{
"type": "Feature",
"properties": {
"id": 9217,
"label": "40149",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.82659,
45.43969
]
}
},
{
"type": "Feature",
"properties": {
"id": 9220,
"label": "40155",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.69286,
45.44452
]
}
},
{
"type": "Feature",
"properties": {
"id": 9223,
"label": "40161",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.8497,
45.49291
]
}
},
{
"type": "Feature",
"properties": {
"id": 9228,
"label": "40177",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.83131,
45.46526
]
}
},
{
"type": "Feature",
"properties": {
"id": 9232,
"label": "40185",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.78938,
45.48432
]
}
},
{
"type": "Feature",
"properties": {
"id": 9234,
"label": "40187",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.72704,
45.51819
]
}
},
{
"type": "Feature",
"properties": {
"id": 9238,
"label": "40197",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.814,
45.48275
]
}
},
{
"type": "Feature",
"properties": {
"id": 9240,
"label": "40204",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.81168,
45.49834
]
}
},
{
"type": "Feature",
"properties": {
"id": 9245,
"label": "40152",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.83066,
45.46678
]
}
},
{
"type": "Feature",
"properties": {
"id": 9249,
"label": "40123",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.93883,
45.40982
]
}
},
{
"type": "Feature",
"properties": {
"id": 9252,
"label": "40136",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.70007,
45.50038
]
}
},
{
"type": "Feature",
"properties": {
"id": 9253,
"label": "40198",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66738,
45.55569
]
}
},
{
"type": "Feature",
"properties": {
"id": 9257,
"label": "40125",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.81046,
45.51043
]
}
},
{
"type": "Feature",
"properties": {
"id": 9263,
"label": "40217",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66585,
45.46952
]
}
},
{
"type": "Feature",
"properties": {
"id": 9265,
"label": "40219",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.69252,
45.44162
]
}
},
{
"type": "Feature",
"properties": {
"id": 9266,
"label": "40220",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62569,
45.42621
]
}
},
{
"type": "Feature",
"properties": {
"id": 9268,
"label": "40218",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6114,
45.41953
]
}
},
{
"type": "Feature",
"properties": {
"id": 9269,
"label": "40212",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.70968,
45.52555
]
}
},
{
"type": "Feature",
"properties": {
"id": 9277,
"label": "40229",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57702,
45.501
]
}
},
{
"type": "Feature",
"properties": {
"id": 9282,
"label": "40214",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.82126,
45.50803
]
}
},
{
"type": "Feature",
"properties": {
"id": 9287,
"label": "40169",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.81668,
45.51049
]
}
},
{
"type": "Feature",
"properties": {
"id": 9292,
"label": "40234",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64468,
45.44575
]
}
},
{
"type": "Feature",
"properties": {
"id": 9296,
"label": "40223",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.68266,
45.43497
]
}
},
{
"type": "Feature",
"properties": {
"id": 9297,
"label": "40153",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.73949,
45.49378
]
}
},
{
"type": "Feature",
"properties": {
"id": 9300,
"label": "40236",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6389,
45.42907
]
}
},
{
"type": "Feature",
"properties": {
"id": 9313,
"label": "40249",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.67462,
45.43361
]
}
},
{
"type": "Feature",
"properties": {
"id": 9318,
"label": "40248",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64622,
45.47099
]
}
},
{
"type": "Feature",
"properties": {
"id": 9323,
"label": "40209",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.71793,
45.5214
]
}
},
{
"type": "Feature",
"properties": {
"id": 9330,
"label": "40239",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65147,
45.42093
]
}
},
{
"type": "Feature",
"properties": {
"id": 9353,
"label": "40241",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60834,
45.42028
]
}
},
{
"type": "Feature",
"properties": {
"id": 9358,
"label": "40233",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56742,
45.45832
]
}
},
{
"type": "Feature",
"properties": {
"id": 9359,
"label": "40242",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60448,
45.44649
]
}
},
{
"type": "Feature",
"properties": {
"id": 9362,
"label": "40245",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64851,
45.42508
]
}
},
{
"type": "Feature",
"properties": {
"id": 9740,
"label": "40246",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57215,
45.50478
]
}
},
{
"type": "Feature",
"properties": {
"id": 10675,
"label": "41019",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60058,
45.48145
]
}
},
{
"type": "Feature",
"properties": {
"id": 10686,
"label": "41020",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.49922,
45.68605
]
}
},
{
"type": "Feature",
"properties": {
"id": 10693,
"label": "41028",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58958,
45.51595
]
}
},
{
"type": "Feature",
"properties": {
"id": 10721,
"label": "41001",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61975,
45.49774
]
}
},
{
"type": "Feature",
"properties": {
"id": 10731,
"label": "41034",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63576,
45.47775
]
}
},
{
"type": "Feature",
"properties": {
"id": 10734,
"label": "41025",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55807,
45.51296
]
}
},
{
"type": "Feature",
"properties": {
"id": 10747,
"label": "41041",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57301,
45.49692
]
}
},
{
"type": "Feature",
"properties": {
"id": 10748,
"label": "41042",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56667,
45.52203
]
}
},
{
"type": "Feature",
"properties": {
"id": 10753,
"label": "41007",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64148,
45.45427
]
}
},
{
"type": "Feature",
"properties": {
"id": 10765,
"label": "41039",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63058,
45.48192
]
}
},
{
"type": "Feature",
"properties": {
"id": 10795,
"label": "41049",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.55175,
45.55352
]
}
},
{
"type": "Feature",
"properties": {
"id": 10803,
"label": "41051",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58169,
45.52535
]
}
},
{
"type": "Feature",
"properties": {
"id": 10853,
"label": "41056",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63948,
45.47337
]
}
},
{
"type": "Feature",
"properties": {
"id": 10857,
"label": "41061",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6414,
45.45507
]
}
},
{
"type": "Feature",
"properties": {
"id": 10861,
"label": "41058",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57951,
45.52767
]
}
},
{
"type": "Feature",
"properties": {
"id": 10875,
"label": "41055",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62059,
45.49821
]
}
},
{
"type": "Feature",
"properties": {
"id": 10876,
"label": "41059",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57787,
45.54341
]
}
},
{
"type": "Feature",
"properties": {
"id": 10879,
"label": "41050",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56242,
45.5478
]
}
},
{
"type": "Feature",
"properties": {
"id": 10880,
"label": "41065",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56612,
45.55676
]
}
},
{
"type": "Feature",
"properties": {
"id": 10881,
"label": "41064",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5951,
45.53478
]
}
},
{
"type": "Feature",
"properties": {
"id": 10887,
"label": "41063",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57465,
45.52597
]
}
},
{
"type": "Feature",
"properties": {
"id": 10910,
"label": "41062",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59084,
45.53288
]
}
},
{
"type": "Feature",
"properties": {
"id": 10923,
"label": "41046",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.59484,
45.52074
]
}
},
{
"type": "Feature",
"properties": {
"id": 10939,
"label": "41075",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58041,
45.52673
]
}
},
{
"type": "Feature",
"properties": {
"id": 10944,
"label": "41070",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61243,
45.49369
]
}
},
{
"type": "Feature",
"properties": {
"id": 11031,
"label": "41013",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57993,
45.5438
]
}
},
{
"type": "Feature",
"properties": {
"id": 11050,
"label": "41116",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63275,
45.58642
]
}
},
{
"type": "Feature",
"properties": {
"id": 11051,
"label": "41111",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6613,
45.53339
]
}
},
{
"type": "Feature",
"properties": {
"id": 11052,
"label": "41112",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.6075,
45.56248
]
}
},
{
"type": "Feature",
"properties": {
"id": 11054,
"label": "41095",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62638,
45.57127
]
}
},
{
"type": "Feature",
"properties": {
"id": 11065,
"label": "41078",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62314,
45.61281
]
}
},
{
"type": "Feature",
"properties": {
"id": 11077,
"label": "41120",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.56236,
45.57483
]
}
},
{
"type": "Feature",
"properties": {
"id": 11083,
"label": "41128",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.61965,
45.61462
]
}
},
{
"type": "Feature",
"properties": {
"id": 11099,
"label": "41093",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62305,
45.62287
]
}
},
{
"type": "Feature",
"properties": {
"id": 11102,
"label": "41092",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57472,
45.55967
]
}
},
{
"type": "Feature",
"properties": {
"id": 11155,
"label": "41081",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.60586,
45.56793
]
}
},
{
"type": "Feature",
"properties": {
"id": 11163,
"label": "41096",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63204,
45.61193
]
}
},
{
"type": "Feature",
"properties": {
"id": 12441,
"label": "42004",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.72341,
45.5313
]
}
},
{
"type": "Feature",
"properties": {
"id": 12442,
"label": "42003",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62157,
45.57976
]
}
},
{
"type": "Feature",
"properties": {
"id": 12461,
"label": "42001",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64273,
45.5513
]
}
},
{
"type": "Feature",
"properties": {
"id": 12625,
"label": "42010",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58076,
45.64777
]
}
},
{
"type": "Feature",
"properties": {
"id": 12651,
"label": "42021",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63217,
45.60263
]
}
},
{
"type": "Feature",
"properties": {
"id": 12655,
"label": "42030",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.57314,
45.60457
]
}
},
{
"type": "Feature",
"properties": {
"id": 12662,
"label": "42033",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65454,
45.53843
]
}
},
{
"type": "Feature",
"properties": {
"id": 12671,
"label": "42031",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64378,
45.53459
]
}
},
{
"type": "Feature",
"properties": {
"id": 12675,
"label": "42039",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.65862,
45.57356
]
}
},
{
"type": "Feature",
"properties": {
"id": 12676,
"label": "42046",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66755,
45.52843
]
}
},
{
"type": "Feature",
"properties": {
"id": 12677,
"label": "42045",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.66653,
45.55903
]
}
},
{
"type": "Feature",
"properties": {
"id": 12681,
"label": "42037",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.64819,
45.56588
]
}
},
{
"type": "Feature",
"properties": {
"id": 12708,
"label": "42017",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.63599,
45.6016
]
}
},
{
"type": "Feature",
"properties": {
"id": 12720,
"label": "42041",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.67192,
45.54883
]
}
},
{
"type": "Feature",
"properties": {
"id": 12721,
"label": "42048",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.58425,
45.6451
]
}
},
{
"type": "Feature",
"properties": {
"id": 12735,
"label": "42018",
"marker-symbol": "tt-stm-bus"
},
"geometry": {
"type": "Point",
"coordinates": [
-73.62404,
45.55543
]
}
}
]
}
}
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/ut" \
--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/ut';
$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/ut'
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: 135
x-ratelimit-remaining: 131
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: 35
x-ratelimit-remaining: 34
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": [
1,
2,
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": 1606996945,
"tripId": "223165409",
"routeId": "430",
"startTime": "10:31:00",
"position": {
"lat": 45.5616,
"lon": -73.5248
},
"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": [
1,
2,
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": "2023-09-26 09:48:36",
"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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1600170872,
"tripId": "221068740",
"routeId": "187",
"startTime": "07:05:00",
"position": {
"lat": 45.66735,
"lon": -73.51033
},
"bearing": null,
"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": null,
"label": null
},
"agency": "stm",
"links": [
1,
2,
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:20:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 4,
"ref": "22286",
"isActive": false,
"label": "22286",
"timestamp": 1600730886,
"tripId": "222778901",
"routeId": "200",
"startTime": "18:55:00",
"position": {
"lat": 45.46778,
"lon": -73.82896
},
"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": [
1,
2,
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 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": 1598480965,
"tripId": "222777702",
"routeId": "164",
"startTime": "17:49:00",
"position": {
"lat": 45.5033,
"lon": -73.73647
},
"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": [
1,
2,
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 09:35:04",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1603138419,
"tripId": "226508227",
"routeId": "203E",
"startTime": "16:19:00",
"position": {
"lat": 45.45016,
"lon": -73.82647
},
"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": [
1,
2,
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-28 12:44:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 8,
"ref": "22332",
"isActive": false,
"label": "22332",
"timestamp": 1603138364,
"tripId": "221066903",
"routeId": "48",
"startTime": "15:05:00",
"position": {
"lat": 45.55627,
"lon": -73.66715
},
"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": [
1,
2,
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": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 9,
"ref": "22333",
"isActive": false,
"label": "22333",
"timestamp": 1602679327,
"tripId": "222780085",
"routeId": "964",
"startTime": "07:47:00",
"position": {
"lat": 45.51268,
"lon": -73.68422
},
"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": [
1,
2,
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": 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": [
1,
2,
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": 1603138418,
"tripId": "222751385",
"routeId": "171",
"startTime": "15:44:00",
"position": {
"lat": 45.51395,
"lon": -73.68301
},
"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": [
1,
2,
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:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": 1600373784,
"tripId": "222778885",
"routeId": "64",
"startTime": "15:58:00",
"position": {
"lat": 45.53053,
"lon": -73.71741
},
"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": [
1,
2,
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": 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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1602276581,
"tripId": "222776191",
"routeId": "68E",
"startTime": "15:56:00",
"position": {
"lat": 45.53188,
"lon": -73.71958
},
"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": [
1,
2,
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": 1810,
"ref": "22366",
"isActive": false,
"label": "22366",
"timestamp": 1597104022,
"tripId": "219804179",
"routeId": "209",
"startTime": "19:15:00",
"position": {
"lat": 45.4482,
"lon": -73.69598
},
"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": [
1,
2,
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 11:40:05",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1600292621,
"tripId": "222751318",
"routeId": "469",
"startTime": "17:15:00",
"position": {
"lat": 45.62317,
"lon": -73.62254
},
"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": [
1,
2,
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:00:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1598743831,
"tripId": "221208930",
"routeId": "202I",
"startTime": "19:18:00",
"position": {
"lat": 45.5078,
"lon": -73.67265
},
"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": [
1,
2,
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:01",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1602157416,
"tripId": "222776783",
"routeId": "174",
"startTime": "07:26:00",
"position": {
"lat": 45.47272,
"lon": -73.73508
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 13,
"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": [
1,
2,
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:05:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "58",
"routeLongName": "Wellington",
"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": 1602162885,
"tripId": "222752188",
"routeId": "460",
"startTime": "07:44:00",
"position": {
"lat": 45.44948,
"lon": -73.7425
},
"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": [
1,
2,
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": 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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": null,
"tripId": "219806382",
"routeId": "64",
"startTime": "19:47:00",
"position": {
"lat": 45.50237,
"lon": -73.7332
},
"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": [
1,
2,
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:40:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1733,
"ref": "23204",
"isActive": false,
"label": "23204",
"timestamp": 1596840827,
"tripId": "218394492",
"routeId": "41",
"startTime": "17:57:00",
"position": {
"lat": 45.55175,
"lon": -73.6554
},
"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": [
1,
2,
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 11:30:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1603138416,
"tripId": "222767355",
"routeId": "170",
"startTime": "15:53:00",
"position": {
"lat": 45.52612,
"lon": -73.69867
},
"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": [
1,
2,
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 12:05:07",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": [
1,
2,
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": 1598518348,
"tripId": "907701",
"routeId": "432",
"startTime": "15:30:00",
"position": {
"lat": 45.61762,
"lon": -73.58085
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 14,
"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": [
1,
2,
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": "2020-02-12 16:47:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1602591071,
"tripId": "222752133",
"routeId": "180",
"startTime": "07:33:00",
"position": {
"lat": 45.54928,
"lon": -73.66375
},
"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": [
1,
2,
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-22 11:50:06",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": null,
"tripId": "218397007",
"routeId": "460",
"startTime": "06:02:00",
"position": {
"lat": 45.45235,
"lon": -73.74136
},
"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": [
1,
2,
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-26 12:06:04",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2536,
"ref": "24207",
"isActive": false,
"label": "24207",
"timestamp": 1611866472,
"tripId": "229043095",
"routeId": "139I",
"startTime": "15:39:00",
"position": {
"lat": 45.55387,
"lon": -73.62325
},
"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": [
1,
2,
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-25 10:40:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": 1598910729,
"tripId": "222752299",
"routeId": "460",
"startTime": "16:39:00",
"position": {
"lat": 45.59873,
"lon": -73.56802
},
"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": [
1,
2,
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 19:55:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1603112896,
"tripId": "222765924",
"routeId": "115",
"startTime": "08:56:00",
"position": {
"lat": 45.49855,
"lon": -73.67178
},
"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": [
1,
2,
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "115",
"routeLongName": "Paré",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-05 20:18:04",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": 1602893432,
"tripId": "221069879",
"routeId": "33",
"startTime": "19:26:00",
"position": {
"lat": 45.62843,
"lon": -73.61615
},
"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": [
1,
2,
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-25 20:06:05",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1599515910,
"tripId": "219860425",
"routeId": "469",
"startTime": "17:33:00",
"position": {
"lat": 45.6236,
"lon": -73.62155
},
"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": [
1,
2,
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": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1228,
"ref": "24235",
"isActive": false,
"label": "24235",
"timestamp": 1600116067,
"tripId": "222752430",
"routeId": "469",
"startTime": "16:07:00",
"position": {
"lat": 45.62217,
"lon": -73.62047
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 16,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
1,
2,
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": 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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1596713610,
"tripId": "218416553",
"routeId": "189",
"startTime": "06:57:00",
"position": {
"lat": 45.59573,
"lon": -73.53246
},
"bearing": null,
"speed": null,
"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": null,
"label": null
},
"agency": "stm",
"links": [
1,
2,
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 12:40:08",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": null,
"tripId": "223319933",
"routeId": "171",
"startTime": "08:14:00",
"position": {
"lat": 45.5024,
"lon": -73.70762
},
"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": [
1,
2,
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-14 16:32:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": null,
"tripId": "218416489",
"routeId": "39",
"startTime": "08:33:00",
"position": {
"lat": 45.61785,
"lon": -73.58103
},
"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": [
1,
2,
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 10:45:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": 1596680415,
"tripId": "218416050",
"routeId": "449",
"startTime": "21:47:00",
"position": {
"lat": 45.66505,
"lon": -73.5369
},
"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": [
1,
2,
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": "2023-09-26 09:48:36",
"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": [
1,
2,
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "58",
"routeLongName": "Wellington",
"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": [
1,
2,
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": 1603138405,
"tripId": "222751322",
"routeId": "440",
"startTime": "16:01:00",
"position": {
"lat": 45.57507,
"lon": -73.636
},
"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": [
1,
2,
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-09-26 09:48:36",
"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": [
1,
2,
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": 1603121537,
"tripId": "222752473",
"routeId": "469",
"startTime": "11:03:00",
"position": {
"lat": 45.55702,
"lon": -73.66738
},
"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": [
1,
2,
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": 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": [
1,
2,
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": 1614025722,
"tripId": "230226964",
"routeId": "45",
"startTime": "14:50:00",
"position": {
"lat": 45.5227,
"lon": -73.55257
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 36,
"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": [
1,
2,
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-22 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": 1602163642,
"tripId": "222752193",
"routeId": "460",
"startTime": "08:09:00",
"position": {
"lat": 45.44967,
"lon": -73.74343
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 35,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
1,
2,
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": 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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1603138423,
"tripId": "222752333",
"routeId": "460",
"startTime": "15:30:00",
"position": {
"lat": 45.53145,
"lon": -73.64962
},
"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": [
1,
2,
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": 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": [
1,
2,
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": 1602628515,
"tripId": "222752308",
"routeId": "460",
"startTime": "16:35:00",
"position": {
"lat": 45.5991,
"lon": -73.56892
},
"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": [
1,
2,
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": 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": [
1,
2,
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "406",
"routeLongName": "Express Newman",
"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": 1602881426,
"tripId": "222754131",
"routeId": "465",
"startTime": "16:00:00",
"position": {
"lat": 45.5135,
"lon": -73.64308
},
"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": [
1,
2,
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "465",
"routeLongName": "Express Côte-des-Neiges",
"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": 1960,
"ref": "24269",
"isActive": false,
"label": "24269",
"timestamp": 1597689570,
"tripId": "218396067",
"routeId": "140",
"startTime": "14:01:00",
"position": {
"lat": 45.55093,
"lon": -73.65617
},
"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": [
1,
2,
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "140",
"routeLongName": "Fleury",
"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": 3180,
"ref": "24270",
"isActive": false,
"label": "24270",
"timestamp": 1608043391,
"tripId": "226525101",
"routeId": "69",
"startTime": "08:25:00",
"position": {
"lat": 45.54547,
"lon": -73.65193
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 71,
"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": [
1,
2,
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "69",
"routeLongName": "Gouin",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-12-29 18:36:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2596,
"ref": "24271",
"isActive": false,
"label": "24271",
"timestamp": 1603138425,
"tripId": "222752312",
"routeId": "460",
"startTime": "14:55:00",
"position": {
"lat": 45.59307,
"lon": -73.57415
},
"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": [
1,
2,
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 12:58:04",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2322,
"ref": "24272",
"isActive": false,
"label": "24272",
"timestamp": 1600124779,
"tripId": "222751348",
"routeId": "41",
"startTime": "17:57:00",
"position": {
"lat": 45.54562,
"lon": -73.65134
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 55,
"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": [
1,
2,
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 20:05:05",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": 1598388400,
"tripId": "222751662",
"routeId": "121I",
"startTime": "16:11:00",
"position": {
"lat": 45.49598,
"lon": -73.70672
},
"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": [
1,
2,
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-04 20:20:07",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 42,
"ref": "24276",
"isActive": false,
"label": "24276",
"timestamp": null,
"tripId": "218397115",
"routeId": "460",
"startTime": "15:03:00",
"position": {
"lat": 45.59873,
"lon": -73.568
},
"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": [
1,
2,
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": 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": [
1,
2,
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": 1601589852,
"tripId": "221067933",
"routeId": "44",
"startTime": "17:33:00",
"position": {
"lat": 45.64207,
"lon": -73.59333
},
"bearing": null,
"speed": null,
"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": null,
"label": null
},
"agency": "stm",
"links": [
1,
2,
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-23 11:28:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1611357355,
"tripId": "229042725",
"routeId": "48",
"startTime": "17:24:00",
"position": {
"lat": 45.65911,
"lon": -73.54203
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 45,
"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": [
1,
2,
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 13:05:05",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1415,
"ref": "24283",
"isActive": false,
"label": "24283",
"timestamp": 1598350155,
"tripId": "221220106",
"routeId": "496",
"startTime": "06:07:00",
"position": {
"lat": 45.44817,
"lon": -73.74403
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 3,
"label": "Canceled"
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "496",
"routeLongName": "Express Victoria",
"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": 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": [
1,
2,
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": [
1,
2,
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "406",
"routeLongName": "Express Newman",
"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": [
1,
2,
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": 1608212668,
"tripId": "222815711",
"routeId": "121",
"startTime": "07:50:00",
"position": {
"lat": 45.49757,
"lon": -73.70925
},
"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": [
1,
2,
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 12:10:12",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"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": 1613775731,
"tripId": "229042630",
"routeId": "469",
"startTime": "17:09:00",
"position": {
"lat": 45.55568,
"lon": -73.66803
},
"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": [
1,
2,
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:05:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2396,
"ref": "24292",
"isActive": false,
"label": "24292",
"timestamp": 1608303751,
"tripId": "222817582",
"routeId": "460",
"startTime": "15:03:00",
"position": {
"lat": 45.5458,
"lon": -73.65022
},
"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": [
1,
2,
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 21:00:07",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 44,
"ref": "24293",
"isActive": false,
"label": "24293",
"timestamp": 1598649380,
"tripId": "221217714",
"routeId": "90",
"startTime": "16:22:00",
"position": {
"lat": 45.44532,
"lon": -73.68024
},
"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": [
1,
2,
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": "2023-09-26 09:48:36",
"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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1615330406,
"tripId": "228906906",
"routeId": "166",
"startTime": "18:00:00",
"position": {
"lat": 45.49265,
"lon": -73.57722
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 1,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": 3,
"label": "Canceled"
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "166",
"routeLongName": "Queen-Mary",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-01-02 15:58:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1629160572,
"tripId": "232342647",
"routeId": "44",
"startTime": "20:05:00",
"position": {
"lat": 45.64326,
"lon": -73.59633
},
"bearing": 325,
"speed": 31,
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
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:50:09",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1625610664,
"tripId": "231569927",
"routeId": "161",
"startTime": "17:45:00",
"position": {
"lat": 45.53085,
"lon": -73.59861
},
"bearing": 38,
"speed": 21,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 45,
"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": [
1,
2,
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": 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": [
1,
2,
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": 1634677466,
"tripId": "238426887",
"routeId": "410",
"startTime": "15:48:00",
"position": {
"lat": 45.69817,
"lon": -73.48379
},
"bearing": 38,
"speed": 23,
"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": [
1,
2,
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-24 17:40:02",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2136,
"ref": "25221",
"isActive": false,
"label": "25221",
"timestamp": 1623271418,
"tripId": "231065766",
"routeId": "179",
"startTime": null,
"position": {
"lat": 45.52945,
"lon": -73.64388
},
"bearing": 113,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 16,
"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": [
1,
2,
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 12:45:11",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 6820,
"ref": "25222",
"isActive": false,
"label": "25222",
"timestamp": 1627083232,
"tripId": "231570754",
"routeId": "31",
"startTime": "19:04:00",
"position": {
"lat": 45.53128,
"lon": -73.60091
},
"bearing": 340,
"speed": 12,
"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": [
1,
2,
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": "2020-03-09 21:08:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1626344553,
"tripId": "234965642",
"routeId": "469",
"startTime": "05:54:00",
"position": {
"lat": 45.55666,
"lon": -73.66748
},
"bearing": 130,
"speed": 16,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
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": 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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1640465610,
"tripId": "237382154",
"routeId": "141",
"startTime": "15:38:00",
"position": {
"lat": 45.60477,
"lon": -73.53088
},
"bearing": 291,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 5,
"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": [
1,
2,
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": 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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1649364699,
"tripId": "250155070",
"routeId": "410",
"startTime": "15:44:00",
"position": {
"lat": 45.69443,
"lon": -73.48792
},
"bearing": 16,
"speed": 29,
"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": [
1,
2,
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-03 22:16:09",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 61,
"ref": "26003",
"isActive": false,
"label": "26003",
"timestamp": 1659476081,
"tripId": "251982388",
"routeId": "74",
"startTime": "16:35:00",
"position": {
"lat": 45.48762,
"lon": -73.55727
},
"bearing": 192,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 6,
"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": [
1,
2,
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": 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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1632832423,
"tripId": "236800995",
"routeId": "18",
"startTime": "07:39:00",
"position": {
"lat": 45.52935,
"lon": -73.60661
},
"bearing": 303,
"speed": 35,
"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": [
1,
2,
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 01:18:46",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 62,
"ref": "26008",
"isActive": false,
"label": "26008",
"timestamp": 1647952015,
"tripId": "250155078",
"routeId": "427",
"startTime": "07:40:00",
"position": {
"lat": 45.49387,
"lon": -73.57514
},
"bearing": 287,
"speed": 19,
"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": [
1,
2,
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 00:14:35",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1648730889,
"tripId": "250155051",
"routeId": "410",
"startTime": "07:26:00",
"position": {
"lat": 45.49571,
"lon": -73.57301
},
"bearing": 173,
"speed": 23,
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
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 20:46:08",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2981,
"ref": "26015",
"isActive": false,
"label": "26015",
"timestamp": 1647434144,
"tripId": "241512313",
"routeId": "410",
"startTime": "06:59:00",
"position": {
"lat": 45.53937,
"lon": -73.57343
},
"bearing": 38,
"speed": 23,
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
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-09 12:54:07",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1650628872,
"tripId": "250154755",
"routeId": "55",
"startTime": "06:57:00",
"position": {
"lat": 45.50621,
"lon": -73.55566
},
"bearing": 321,
"speed": 20,
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
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-04 20:26:11",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": 1645570824,
"tripId": "241585185",
"routeId": "168",
"startTime": "18:02:00",
"position": {
"lat": 45.50475,
"lon": -73.57124
},
"bearing": 132,
"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": [
1,
2,
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 11:00:04",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2087,
"ref": "26022",
"isActive": false,
"label": "26022",
"timestamp": 1647607491,
"tripId": "241584791",
"routeId": "178",
"startTime": "08:16:00",
"position": {
"lat": 45.4674,
"lon": -73.5384
},
"bearing": 71,
"speed": 41,
"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": [
1,
2,
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:25:14",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 65,
"ref": "26023",
"isActive": false,
"label": "26023",
"timestamp": 1645022554,
"tripId": "241585699",
"routeId": "168",
"startTime": "09:17:00",
"position": {
"lat": 45.50436,
"lon": -73.5722
},
"bearing": 309,
"speed": 5,
"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": [
1,
2,
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": 66,
"ref": "26024",
"isActive": false,
"label": "26024",
"timestamp": 1647468320,
"tripId": "241586178",
"routeId": "136",
"startTime": "17:31:00",
"position": {
"lat": 45.59973,
"lon": -73.61119
},
"bearing": 37,
"speed": 32,
"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": [
1,
2,
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": 67,
"ref": "26025",
"isActive": false,
"label": "26025",
"timestamp": 1698187251,
"tripId": "271570548",
"routeId": "136",
"startTime": "18:30:00",
"position": {
"lat": 45.56282,
"lon": -73.54632
},
"bearing": 297,
"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": [
1,
2,
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-10-24 18:42:05",
"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": [
1,
2,
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": 1644731140,
"tripId": "240844716",
"routeId": "136",
"startTime": "00:22:00",
"position": {
"lat": 45.56221,
"lon": -73.54626
},
"bearing": 208,
"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": [
1,
2,
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": "2023-09-26 09:48:36",
"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": [
1,
2,
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": 1711627685,
"tripId": "274737119",
"routeId": "85",
"startTime": "06:59:00",
"position": {
"lat": 45.53263,
"lon": -73.54996
},
"bearing": 119,
"speed": 13,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274737119",
"headsign": "85-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "85",
"routeLongName": "Hochelaga",
"shapeLink": "/storage/shapes/stm/850201.json",
"shapeId": "850201",
"serviceId": "24M-H59M000S-85-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 08:10:14",
"agencyName": "Société de transport de Montréal"
},
{
"id": 71,
"ref": "26030",
"isActive": false,
"label": "26030",
"timestamp": 1645119591,
"tripId": "934567",
"routeId": "29",
"startTime": "12:15:00",
"position": {
"lat": 45.51472,
"lon": -73.57822
},
"bearing": 122,
"speed": 29,
"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": [
1,
2,
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "29",
"routeLongName": "Rachel",
"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": 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": [
1,
2,
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": 1644849651,
"tripId": "241585572",
"routeId": "29",
"startTime": "09:04:00",
"position": {
"lat": 45.5466,
"lon": -73.55068
},
"bearing": 294,
"speed": 38,
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "29",
"routeLongName": "Rachel",
"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": 2191,
"ref": "26033",
"isActive": false,
"label": "26033",
"timestamp": 1671714506,
"tripId": "256793031",
"routeId": "185",
"startTime": "07:23:00",
"position": {
"lat": 45.53258,
"lon": -73.54981
},
"bearing": 119,
"speed": 9,
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "185",
"routeLongName": "Sherbrooke",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 14:20:06",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": [
1,
2,
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": 1646747664,
"tripId": "241584815",
"routeId": "136",
"startTime": "08:20:00",
"position": {
"lat": 45.5618,
"lon": -73.54654
},
"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": [
1,
2,
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": 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": [
1,
2,
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": [
1,
2,
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": 1638793950,
"tripId": "243240001",
"routeId": "116",
"startTime": "06:30:00",
"position": {
"lat": 45.43579,
"lon": -73.64489
},
"bearing": 197,
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "116",
"routeLongName": "Lafleur / Norman",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-25 20:40:11",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 77,
"ref": "26040",
"isActive": false,
"label": "26040",
"timestamp": 1711629531,
"tripId": "274627501",
"routeId": "449",
"startTime": "07:49:00",
"position": {
"lat": 45.58984,
"lon": -73.53989
},
"bearing": 24,
"speed": 5,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627501",
"headsign": "449-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "449",
"routeLongName": "Express Rivière-des-Prairies",
"shapeLink": "/storage/shapes/stm/4490189.json",
"shapeId": "4490189",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 08:49:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 78,
"ref": "26041",
"isActive": false,
"label": "26041",
"timestamp": 1703340642,
"tripId": "268628510",
"routeId": "43",
"startTime": "09:05:00",
"position": {
"lat": 45.65937,
"lon": -73.57044
},
"bearing": 156,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"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": "2023-12-23 09:12:04",
"agencyName": "Société de transport de Montréal"
},
{
"id": 79,
"ref": "26042",
"isActive": false,
"label": "26042",
"timestamp": 1647260315,
"tripId": "242655005",
"routeId": "43",
"startTime": "07:28:00",
"position": {
"lat": 45.59115,
"lon": -73.6474
},
"bearing": 144,
"speed": null,
"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": [
1,
2,
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": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 80,
"ref": "26043",
"isActive": false,
"label": "26043",
"timestamp": 1676899596,
"tripId": "263380506",
"routeId": "74",
"startTime": null,
"position": {
"lat": 45.49998,
"lon": -73.56408
},
"bearing": 137,
"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": [
1,
2,
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": 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": [
1,
2,
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": 1673869730,
"tripId": "259246722",
"routeId": "49",
"startTime": "05:35:00",
"position": {
"lat": 45.66814,
"lon": -73.54936
},
"bearing": 206,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 12,
"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": [
1,
2,
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:06",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1647383343,
"tripId": "241585185",
"routeId": "168",
"startTime": "18:02:00",
"position": {
"lat": 45.44785,
"lon": -73.55565
},
"bearing": 114,
"speed": 13,
"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": [
1,
2,
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 11:05:05",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": 1665593668,
"tripId": "254514864",
"routeId": "187",
"startTime": null,
"position": {
"lat": 45.60443,
"lon": -73.53018
},
"bearing": 23,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 3,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
1,
2,
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 12:30:15",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1702413856,
"tripId": "271578432",
"routeId": "85",
"startTime": "14:50:00",
"position": {
"lat": 45.53299,
"lon": -73.55087
},
"bearing": 119,
"speed": 13,
"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": [
1,
2,
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:05:05",
"meta": {},
"updatedAt": "2023-12-12 15:46:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 7001,
"ref": "26058",
"isActive": false,
"label": "26058",
"timestamp": 1706647682,
"tripId": "274126831",
"routeId": "85",
"startTime": "14:50:00",
"position": {
"lat": 45.53332,
"lon": -73.55168
},
"bearing": 114,
"speed": 20,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": "274126831",
"headsign": "85-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "85",
"routeLongName": "Hochelaga",
"shapeLink": "/storage/shapes/stm/850198.json",
"shapeId": "850198",
"serviceId": "24J-H59J000S-85-S",
"blockId": null
},
"createdAt": "2020-03-19 13:24:03",
"meta": {},
"updatedAt": "2024-01-30 15:50:07",
"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": [
1,
2,
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": [
1,
2,
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": 1710187533,
"tripId": "274252479",
"routeId": "44",
"startTime": "14:40:00",
"position": {
"lat": 45.6178,
"lon": -73.58163
},
"bearing": 18,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274252479",
"headsign": "44-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "44",
"routeLongName": "Armand-Bombardier",
"shapeLink": "/storage/shapes/stm/440167.json",
"shapeId": "440167",
"serviceId": "24J-H54J000S-83-S",
"blockId": null
},
"createdAt": "2019-12-13 12:22:11",
"meta": {},
"updatedAt": "2024-03-11 16:07:06",
"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": [
1,
2,
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": 1622062095,
"tripId": "229031694",
"routeId": "410",
"startTime": "15:46:00",
"position": {
"lat": 45.69424,
"lon": -73.48798
},
"bearing": 12,
"speed": 35,
"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": [
1,
2,
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-02-08 20:28:01",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1648814352,
"tripId": "249552009",
"routeId": "28E",
"startTime": "07:39:00",
"position": {
"lat": 45.59515,
"lon": -73.54349
},
"bearing": 302,
"speed": 38,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
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:00:14",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3372,
"ref": "26072",
"isActive": false,
"label": "26072",
"timestamp": 1663790365,
"tripId": "256789485",
"routeId": "136E",
"startTime": "15:40:00",
"position": {
"lat": 45.59951,
"lon": -73.61153
},
"bearing": 34,
"speed": 30,
"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": [
1,
2,
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-20 16:53:04",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1706,
"ref": "26073",
"isActive": false,
"label": "26073",
"timestamp": 1709745926,
"tripId": "983843",
"routeId": "172",
"startTime": "12:15:00",
"position": {
"lat": 45.46962,
"lon": -73.53532
},
"bearing": 267,
"speed": 13,
"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": [
1,
2,
3,
22
],
"tags": [
3
],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "172",
"routeLongName": "Du Golf",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 11:25:05",
"meta": {},
"updatedAt": "2024-03-06 12:27:45",
"agencyName": "Société de transport de Montréal"
},
{
"id": 7188,
"ref": "26074",
"isActive": false,
"label": "26074",
"timestamp": 1695432471,
"tripId": "267789294",
"routeId": "81",
"startTime": "20:41:00",
"position": {
"lat": 45.64362,
"lon": -73.51247
},
"bearing": 283,
"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": [
1,
2,
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": "2020-05-12 15:34:05",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": 1601893382,
"tripId": "221067052",
"routeId": "43",
"startTime": "05:36:00",
"position": {
"lat": 45.65495,
"lon": -73.57152
},
"bearing": null,
"speed": null,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 4,
"currentStatus": {
"data": 1,
"label": "Stopped at"
},
"scheduleRelationship": {
"data": null,
"label": null
},
"congestionLevel": {
"data": null,
"label": null
},
"occupancyStatus": {
"data": null,
"label": null
},
"agency": "stm",
"links": [
1,
2,
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:13",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274252188",
"headsign": "33-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "33",
"routeLongName": "Langelier",
"shapeLink": "/storage/shapes/stm/330281.json",
"shapeId": "330281",
"serviceId": "24J-H54J000S-83-S",
"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": [
1,
2,
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": [
1,
2,
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": 1708721441,
"tripId": "274251037",
"routeId": "44",
"startTime": "15:35:00",
"position": {
"lat": 45.61828,
"lon": -73.58383
},
"bearing": 224,
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274251037",
"headsign": "44-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "44",
"routeLongName": "Armand-Bombardier",
"shapeLink": "/storage/shapes/stm/440168.json",
"shapeId": "440168",
"serviceId": "24J-H54J000S-83-S",
"blockId": null
},
"createdAt": "2019-12-16 20:42:13",
"meta": {},
"updatedAt": "2024-02-23 15:52:09",
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"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": 1671628632,
"tripId": "256332562",
"routeId": "186",
"startTime": "07:44:00",
"position": {
"lat": 45.59727,
"lon": -73.53465
},
"bearing": 203,
"speed": 28,
"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": [
1,
2,
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": 2097,
"ref": "26083",
"isActive": false,
"label": "26083",
"timestamp": 1668084445,
"tripId": "256333436",
"routeId": "32E",
"startTime": "07:45:00",
"position": {
"lat": 45.57439,
"lon": -73.53904
},
"bearing": 41,
"speed": 6,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
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:16",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274251281",
"headsign": "432-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "432",
"routeLongName": "Express Lacordaire",
"shapeLink": "/storage/shapes/stm/4320137.json",
"shapeId": "4320137",
"serviceId": "24J-H54J000S-83-S",
"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": 1708035951,
"tripId": "274252425",
"routeId": "486",
"startTime": "16:52:00",
"position": {
"lat": 45.69709,
"lon": -73.49151
},
"bearing": 55,
"speed": 30,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274252425",
"headsign": "486-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "486",
"routeLongName": "Express Sherbrooke",
"shapeLink": "/storage/shapes/stm/4860099.json",
"shapeId": "4860099",
"serviceId": "24J-H54J000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 10:05:03",
"meta": {},
"updatedAt": "2024-02-15 17:37:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3022,
"ref": "27002",
"isActive": false,
"label": "27002",
"timestamp": 1709848903,
"tripId": "274256771",
"routeId": "49",
"startTime": "15:55:00",
"position": {
"lat": 45.66819,
"lon": -73.54836
},
"bearing": 335,
"speed": 12,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 62,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274256771",
"headsign": "49-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "49",
"routeLongName": "Maurice-Duplessis",
"shapeLink": "/storage/shapes/stm/490344.json",
"shapeId": "490344",
"serviceId": "24J-H54JV00S-82-S",
"blockId": null
},
"createdAt": "2019-12-11 20:48:13",
"meta": {},
"updatedAt": "2024-03-07 17:12:37",
"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": [
1,
2,
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": [
1,
2,
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": 1703806847,
"tripId": "271543963",
"routeId": "44",
"startTime": "18:10:00",
"position": {
"lat": 45.64224,
"lon": -73.59525
},
"bearing": 322,
"speed": 43,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"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:20:06",
"meta": {},
"updatedAt": "2023-12-28 18:51:04",
"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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1704719772,
"tripId": "274251256",
"routeId": "187",
"startTime": "07:49:00",
"position": {
"lat": 45.59698,
"lon": -73.53482
},
"bearing": 177,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274251256",
"headsign": "187-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "187",
"routeLongName": "René-Lévesque",
"shapeLink": "/storage/shapes/stm/1870221.json",
"shapeId": "1870221",
"serviceId": "24J-H54J000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-01-08 08:27:06",
"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": [
1,
2,
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": 1682684766,
"tripId": "263866156",
"routeId": "486",
"startTime": "07:57:00",
"position": {
"lat": 45.597007751465,
"lon": -73.534805297852
},
"bearing": 203,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"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-12-15 19:04:05",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274251051",
"headsign": "44-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "44",
"routeLongName": "Armand-Bombardier",
"shapeLink": "/storage/shapes/stm/440168.json",
"shapeId": "440168",
"serviceId": "24J-H54J000S-83-S",
"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": 1684760141,
"tripId": "263992460",
"routeId": "32",
"startTime": "09:03:00",
"position": {
"lat": 45.61564,
"lon": -73.62936
},
"bearing": 323,
"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": [
1,
2,
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 11:40:13",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 94,
"ref": "27014",
"isActive": false,
"label": "27014",
"timestamp": 1669205134,
"tripId": "256329796",
"routeId": "33",
"startTime": "06:33:00",
"position": {
"lat": 45.57878,
"lon": -73.51473
},
"bearing": 133,
"speed": 8,
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
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": 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": [
1,
2,
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": [
1,
2,
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": true,
"label": "27017",
"timestamp": 1711638392,
"tripId": "274627957",
"routeId": "32",
"startTime": "10:25:00",
"position": {
"lat": 45.57589,
"lon": -73.54375
},
"bearing": 115,
"speed": 33,
"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": 5,
"label": "Full"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627957",
"headsign": "32-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "32",
"routeLongName": "Lacordaire",
"shapeLink": "/storage/shapes/stm/320162.json",
"shapeId": "320162",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 11:07:07",
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274250440",
"headsign": "86-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "86",
"routeLongName": "Pointe-aux-Trembles",
"shapeLink": "/storage/shapes/stm/860187.json",
"shapeId": "860187",
"serviceId": "24J-H54J000S-83-S",
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"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": [
1,
2,
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": 1697152013,
"tripId": "271459968",
"routeId": "139",
"startTime": "18:04:00",
"position": {
"lat": 45.59688,
"lon": -73.64244
},
"bearing": 110,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"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 12:00:15",
"meta": {},
"updatedAt": "2023-10-12 19:17:05",
"agencyName": "Société de transport de Montréal"
},
{
"id": 99,
"ref": "27022",
"isActive": false,
"label": "27022",
"timestamp": 1711635103,
"tripId": "274627462",
"routeId": "32",
"startTime": "09:23:00",
"position": {
"lat": 45.58957,
"lon": -73.52178
},
"bearing": 288,
"speed": 10,
"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": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627462",
"headsign": "32-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "32",
"routeLongName": "Lacordaire",
"shapeLink": "/storage/shapes/stm/320162.json",
"shapeId": "320162",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 10:13:09",
"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": [
1,
2,
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": [
1,
2,
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": [
1,
2,
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": 1694203350,
"tripId": "267787785",
"routeId": "86",
"startTime": null,
"position": {
"lat": 45.6592,
"lon": -73.57127
},
"bearing": 326,
"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": [
1,
2,
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": "2020-01-29 11:23:04",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 102,
"ref": "27027",
"isActive": false,
"label": "27027",
"timestamp": 1711624265,
"tripId": "274627761",
"routeId": "486",
"startTime": "06:40:00",
"position": {
"lat": 45.59698,
"lon": -73.53482
},
"bearing": 290,
"speed": 19,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274627761",
"headsign": "486-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "486",
"routeLongName": "Express Sherbrooke",
"shapeLink": "/storage/shapes/stm/4860098.json",
"shapeId": "4860098",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 07:22:10",
"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": [
1,
2,
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": [
1,
2,
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": 1707999531,
"tripId": "274251650",
"routeId": "141",
"startTime": "07:08:00",
"position": {
"lat": 45.59775,
"lon": -73.53437
},
"bearing": 203,
"speed": 35,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
2
],
"trip": {
"id": "274251650",
"headsign": "141-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "141",
"routeLongName": "Jean-Talon Est",
"shapeLink": "/storage/shapes/stm/1410566.json",
"shapeId": "1410566",
"serviceId": "24J-H54J000S-83-S",
"blockId": null
},
"createdAt": "2020-01-30 22:46:02",
"meta": {},
"updatedAt": "2024-02-15 07:30:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3108,
"ref": "27501",
"isActive": false,
"label": "27501",
"timestamp": 1711519710,
"tripId": "273970252",
"routeId": "495",
"startTime": "01:17:00",
"position": {
"lat": 45.4476,
"lon": -73.74048
},
"bearing": 285,
"speed": 32,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970252",
"headsign": "495-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "495",
"routeLongName": "Express Lachine / LaSalle",
"shapeLink": "/storage/shapes/stm/4950131.json",
"shapeId": "4950131",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-18 12:28:10",
"meta": {},
"updatedAt": "2024-03-27 02:19:04",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3135,
"ref": "27502",
"isActive": false,
"label": "27502",
"timestamp": 1709164645,
"tripId": "274140080",
"routeId": "110",
"startTime": "17:47:00",
"position": {
"lat": 45.43623,
"lon": -73.68885
},
"bearing": 41,
"speed": 16,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 68,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "274140080",
"headsign": "110-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "110",
"routeLongName": "Centrale",
"shapeLink": "/storage/shapes/stm/1100202.json",
"shapeId": "1100202",
"serviceId": "24J-H56J000S-82-S",
"blockId": null
},
"createdAt": "2019-12-19 19:36:05",
"meta": {},
"updatedAt": "2024-02-28 19:08:35",
"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": [
1,
2,
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"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": 1699940850,
"tripId": "271515772",
"routeId": "195",
"startTime": "00:17:00",
"position": {
"lat": 45.43466,
"lon": -73.67744
},
"bearing": 269,
"speed": 28,
"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": [
1,
2,
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "195",
"routeLongName": "Sherbrooke / Notre-Dame",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2020-06-10 12:00:02",
"meta": {},
"updatedAt": "2023-11-14 00:49: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": [
1,
2,
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": true,
"label": "27506",
"timestamp": 1711638390,
"tripId": "273971975",
"routeId": "110",
"startTime": "10:53:00",
"position": {
"lat": 45.44007,
"lon": -73.67282
},
"bearing": 153,
"speed": 30,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273971975",
"headsign": "110-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "110",
"routeLongName": "Centrale",
"shapeLink": "/storage/shapes/stm/1100199.json",
"shapeId": "1100199",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 11:07:13",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3078,
"ref": "27507",
"isActive": true,
"label": "27507",
"timestamp": 1711638404,
"tripId": "273973727",
"routeId": "425",
"startTime": "10:29:00",
"position": {
"lat": 45.44834,
"lon": -73.74403
},
"bearing": 356,
"speed": 13,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973727",
"headsign": "425-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "425",
"routeLongName": "Express Anse-à-l'Orme",
"shapeLink": "/storage/shapes/stm/4250077.json",
"shapeId": "4250077",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-16 20:36:16",
"meta": {},
"updatedAt": "2024-03-28 11:07:13",
"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": [
1,
2,
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "406",
"routeLongName": "Express Newman",
"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": 1657925319,
"tripId": "250121924",
"routeId": "90",
"startTime": "16:49:00",
"position": {
"lat": 45.44208,
"lon": -73.63447
},
"bearing": 149,
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
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": "2023-09-26 09:48:36",
"agencyName": "Société de transport de Montréal"
},
{
"id": 108,
"ref": "27510",
"isActive": false,
"label": "27510",
"timestamp": 1711580827,
"tripId": "273974015",
"routeId": "405",
"startTime": "18:14:00",
"position": {
"lat": 45.4049,
"lon": -73.93659
},
"bearing": 241,
"speed": 39,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273974015",
"headsign": "405-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "405",
"routeLongName": "Express Bord-du-Lac",
"shapeLink": "/storage/shapes/stm/4050078.json",
"shapeId": "4050078",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-27 19:18:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2976,
"ref": "27511",
"isActive": false,
"label": "27511",
"timestamp": 1711626096,
"tripId": "273972980",
"routeId": "191",
"startTime": "06:48:00",
"position": {
"lat": 45.47829,
"lon": -73.58511
},
"bearing": 28,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 72,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972980",
"headsign": "191-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "191",
"routeLongName": "Broadway / Provost",
"shapeLink": "/storage/shapes/stm/1910884.json",
"shapeId": "1910884",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-09 11:18:03",
"meta": {},
"updatedAt": "2024-03-28 07:43:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1178,
"ref": "27512",
"isActive": false,
"label": "27512",
"timestamp": 1699882926,
"tripId": "271515709",
"routeId": "195",
"startTime": "07:45:00",
"position": {
"lat": 45.4471,
"lon": -73.60498
},
"bearing": 154,
"speed": 19,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 70,
"currentStatus": {
"data": 2,
"label": "In transit to"
},
"scheduleRelationship": {
"data": 0,
"label": "Scheduled"
},
"congestionLevel": {
"data": 0,
"label": "Unknown congestion level"
},
"occupancyStatus": {
"data": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "195",
"routeLongName": "Sherbrooke / Notre-Dame",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 09:55:05",
"meta": {},
"updatedAt": "2023-11-13 08:46:06",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1771,
"ref": "27513",
"isActive": false,
"label": "27513",
"timestamp": 1699041622,
"tripId": "271512320",
"routeId": "35",
"startTime": "15:19:00",
"position": {
"lat": 45.47729,
"lon": -73.58674
},
"bearing": 65,
"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": [
1,
2,
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:35:06",
"meta": {},
"updatedAt": "2023-11-03 16:11:06",
"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": [
1,
2,
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": 1711635222,
"tripId": "273973375",
"routeId": "405",
"startTime": "09:12:00",
"position": {
"lat": 45.43985,
"lon": -73.63515
},
"bearing": 126,
"speed": 17,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973375",
"headsign": "405-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "405",
"routeLongName": "Express Bord-du-Lac",
"shapeLink": "/storage/shapes/stm/4050077.json",
"shapeId": "4050077",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 10:15:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3362,
"ref": "27516",
"isActive": true,
"label": "27516",
"timestamp": 1711638402,
"tripId": "273971870",
"routeId": "109",
"startTime": "10:57:00",
"position": {
"lat": 45.44886,
"lon": -73.61198
},
"bearing": 303,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273971870",
"headsign": "109-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "109",
"routeLongName": "Boulevard Shevchenko",
"shapeLink": "/storage/shapes/stm/1090086.json",
"shapeId": "1090086",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-02-15 22:43:03",
"meta": {},
"updatedAt": "2024-03-28 11:07:13",
"agencyName": "Société de transport de Montréal"
},
{
"id": 110,
"ref": "27517",
"isActive": false,
"label": "27517",
"timestamp": 1711627287,
"tripId": "273972011",
"routeId": "110",
"startTime": "07:05:00",
"position": {
"lat": 45.44663,
"lon": -73.60349
},
"bearing": 271,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972011",
"headsign": "110-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "110",
"routeLongName": "Centrale",
"shapeLink": "/storage/shapes/stm/1100201.json",
"shapeId": "1100201",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 08:12:13",
"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": [
1,
2,
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "406",
"routeLongName": "Express Newman",
"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": [
1,
2,
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": false,
"label": "27520",
"timestamp": 1709166916,
"tripId": "274139500",
"routeId": "113",
"startTime": "19:04:00",
"position": {
"lat": 45.42546,
"lon": -73.64906
},
"bearing": 132,
"speed": 26,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "274139500",
"headsign": "113-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "113",
"routeLongName": "Lapierre",
"shapeLink": "/storage/shapes/stm/1130148.json",
"shapeId": "1130148",
"serviceId": "24J-H56J000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-02-28 19:42:33",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2830,
"ref": "27521",
"isActive": false,
"label": "27521",
"timestamp": 1711484015,
"tripId": "273969628",
"routeId": "35",
"startTime": "14:42:00",
"position": {
"lat": 45.44053,
"lon": -73.63541
},
"bearing": 296,
"speed": 0,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273969628",
"headsign": "35-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "35",
"routeLongName": "Griffintown",
"shapeLink": "/storage/shapes/stm/350013.json",
"shapeId": "350013",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-02 12:02:09",
"meta": {},
"updatedAt": "2024-03-26 16:54:34",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2556,
"ref": "27522",
"isActive": true,
"label": "27522",
"timestamp": 1711638405,
"tripId": "273973020",
"routeId": "195",
"startTime": "11:03:00",
"position": {
"lat": 45.44483,
"lon": -73.61575
},
"bearing": 305,
"speed": 28,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973020",
"headsign": "195-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "195",
"routeLongName": "Sherbrooke / Notre-Dame",
"shapeLink": "/storage/shapes/stm/1950167.json",
"shapeId": "1950167",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-25 11:36:06",
"meta": {},
"updatedAt": "2024-03-28 11:07:13",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3074,
"ref": "27523",
"isActive": false,
"label": "27523",
"timestamp": 1711628941,
"tripId": "273971858",
"routeId": "108",
"startTime": "08:00:00",
"position": {
"lat": 45.48903,
"lon": -73.58404
},
"bearing": 320,
"speed": 24,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273971858",
"headsign": "108-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "108",
"routeLongName": "Bannantyne",
"shapeLink": "/storage/shapes/stm/1080074.json",
"shapeId": "1080074",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-16 11:46:08",
"meta": {},
"updatedAt": "2024-03-28 08:40:12",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1179,
"ref": "27524",
"isActive": false,
"label": "27524",
"timestamp": 1699935858,
"tripId": "271514664",
"routeId": "109",
"startTime": "22:55:00",
"position": {
"lat": 45.43497,
"lon": -73.59449
},
"bearing": 102,
"speed": 33,
"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": [
1,
2,
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "109",
"routeLongName": "Boulevard Shevchenko",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 09:55:05",
"meta": {},
"updatedAt": "2023-11-13 23:35:04",
"agencyName": "Société de transport de Montréal"
},
{
"id": 112,
"ref": "27525",
"isActive": false,
"label": "27525",
"timestamp": 1709519255,
"tripId": "979969",
"routeId": "139",
"startTime": "20:43:00",
"position": {
"lat": 45.54799,
"lon": -73.53426
},
"bearing": 114,
"speed": 9,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"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-03-03 21:29:35",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1923,
"ref": "27526",
"isActive": false,
"label": "27526",
"timestamp": 1709159554,
"tripId": "274137497",
"routeId": "90",
"startTime": "16:36:00",
"position": {
"lat": 45.44529,
"lon": -73.68033
},
"bearing": 174,
"speed": 16,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "274137497",
"headsign": "90-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "90",
"routeLongName": "Saint-Jacques",
"shapeLink": "/storage/shapes/stm/900254.json",
"shapeId": "900254",
"serviceId": "24J-H56J000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 11:55:16",
"meta": {},
"updatedAt": "2024-02-28 17:43:34",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1496,
"ref": "27527",
"isActive": true,
"label": "27527",
"timestamp": 1711638405,
"tripId": "273970218",
"routeId": "61",
"startTime": "10:36:00",
"position": {
"lat": 45.50228,
"lon": -73.56794
},
"bearing": 306,
"speed": 6,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970218",
"headsign": "61-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "61",
"routeLongName": "Wellington",
"shapeLink": "/storage/shapes/stm/610108.json",
"shapeId": "610108",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:55:02",
"meta": {},
"updatedAt": "2024-03-28 11:07:13",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1852,
"ref": "27528",
"isActive": false,
"label": "27528",
"timestamp": 1711633714,
"tripId": "274628169",
"routeId": "44",
"startTime": "09:13:00",
"position": {
"lat": 45.58928,
"lon": -73.54082
},
"bearing": 39,
"speed": 21,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "274628169",
"headsign": "44-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "44",
"routeLongName": "Armand-Bombardier",
"shapeLink": "/storage/shapes/stm/440168.json",
"shapeId": "440168",
"serviceId": "24M-H54M000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 11:45:15",
"meta": {},
"updatedAt": "2024-03-28 09:50:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3040,
"ref": "27529",
"isActive": true,
"label": "27529",
"timestamp": 1711638394,
"tripId": "276158122",
"routeId": "197",
"startTime": "10:10:00",
"position": {
"lat": 45.58258,
"lon": -73.54134
},
"bearing": 277,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276158122",
"headsign": "197-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "197",
"routeLongName": "Rosemont",
"shapeLink": "/storage/shapes/stm/1970142.json",
"shapeId": "1970142",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-12-12 20:36:14",
"meta": {},
"updatedAt": "2024-03-28 11:07:13",
"agencyName": "Société de transport de Montréal"
},
{
"id": 113,
"ref": "27530",
"isActive": false,
"label": "27530",
"timestamp": 1709611483,
"tripId": "274226596",
"routeId": "109",
"startTime": "22:34:00",
"position": {
"lat": 45.43497,
"lon": -73.59449
},
"bearing": 102,
"speed": 31,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "274226596",
"headsign": "109-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "109",
"routeLongName": "Boulevard Shevchenko",
"shapeLink": "/storage/shapes/stm/1090086.json",
"shapeId": "1090086",
"serviceId": "24J-H56JV00S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-04 23:15:33",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3325,
"ref": "27531",
"isActive": false,
"label": "27531",
"timestamp": 1711589874,
"tripId": "273970304",
"routeId": "61",
"startTime": "21:08:00",
"position": {
"lat": 45.45291,
"lon": -73.56769
},
"bearing": 185,
"speed": 27,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970304",
"headsign": "61-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "61",
"routeLongName": "Wellington",
"shapeLink": "/storage/shapes/stm/610109.json",
"shapeId": "610109",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-02-05 09:09:02",
"meta": {},
"updatedAt": "2024-03-27 21:49:05",
"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": [
1,
2,
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": 1711627564,
"tripId": "276173687",
"routeId": "55",
"startTime": "06:58:00",
"position": {
"lat": 45.50647,
"lon": -73.55544
},
"bearing": 211,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "276173687",
"headsign": "55-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "55",
"routeLongName": "Boulevard Saint-Laurent",
"shapeLink": "/storage/shapes/stm/550145.json",
"shapeId": "550145",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 08:17:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1110,
"ref": "27534",
"isActive": true,
"label": "27534",
"timestamp": 1711638396,
"tripId": "273972746",
"routeId": "107",
"startTime": "10:22:00",
"position": {
"lat": 45.45247,
"lon": -73.57228
},
"bearing": 180,
"speed": 25,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972746",
"headsign": "107-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "107",
"routeLongName": "Verdun",
"shapeLink": "/storage/shapes/stm/1070130.json",
"shapeId": "1070130",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 03:00:05",
"meta": {},
"updatedAt": "2024-03-28 11:07:13",
"agencyName": "Société de transport de Montréal"
},
{
"id": 115,
"ref": "27535",
"isActive": false,
"label": "27535",
"timestamp": 1711627495,
"tripId": "273972556",
"routeId": "112",
"startTime": "07:47:00",
"position": {
"lat": 45.45679,
"lon": -73.58125
},
"bearing": 194,
"speed": 24,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972556",
"headsign": "112-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "112",
"routeLongName": "Airlie",
"shapeLink": "/storage/shapes/stm/1120161.json",
"shapeId": "1120161",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 08:16:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1294,
"ref": "27536",
"isActive": false,
"label": "27536",
"timestamp": 1711628190,
"tripId": "273972449",
"routeId": "113",
"startTime": "07:40:00",
"position": {
"lat": 45.44717,
"lon": -73.60433
},
"bearing": 278,
"speed": 3,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972449",
"headsign": "113-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "113",
"routeLongName": "Lapierre",
"shapeLink": "/storage/shapes/stm/1130146.json",
"shapeId": "1130146",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:25:03",
"meta": {},
"updatedAt": "2024-03-28 08:27:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1569,
"ref": "28001",
"isActive": false,
"label": "28001",
"timestamp": 1711559491,
"tripId": "276158125",
"routeId": "197",
"startTime": null,
"position": {
"lat": 45.58268,
"lon": -73.54257
},
"bearing": 279,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276158125",
"headsign": "197-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "197",
"routeLongName": "Rosemont",
"shapeLink": "/storage/shapes/stm/1970141.json",
"shapeId": "1970141",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 11:05:05",
"meta": {},
"updatedAt": "2024-03-27 13:13:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1853,
"ref": "28002",
"isActive": false,
"label": "28002",
"timestamp": 1709162245,
"tripId": "274139447",
"routeId": "90",
"startTime": "17:21:00",
"position": {
"lat": 45.44342,
"lon": -73.68033
},
"bearing": 180,
"speed": 0,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "274139447",
"headsign": "90-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "90",
"routeLongName": "Saint-Jacques",
"shapeLink": "/storage/shapes/stm/900254.json",
"shapeId": "900254",
"serviceId": "24J-H56J000S-82-S",
"blockId": null
},
"createdAt": "2019-11-22 11:45:15",
"meta": {},
"updatedAt": "2024-02-28 18:28:35",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1211,
"ref": "28003",
"isActive": false,
"label": "28003",
"timestamp": 1711637490,
"tripId": "962798",
"routeId": "95",
"startTime": "10:02:00",
"position": {
"lat": 45.59893,
"lon": -73.56905
},
"bearing": 27,
"speed": 8,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "95",
"routeLongName": "Bélanger",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:05:03",
"meta": {},
"updatedAt": "2024-03-28 10:53:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1365,
"ref": "28004",
"isActive": true,
"label": "28004",
"timestamp": 1711638400,
"tripId": "276158160",
"routeId": "197",
"startTime": "11:08:00",
"position": {
"lat": 45.53097,
"lon": -73.59761
},
"bearing": 34,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276158160",
"headsign": "197-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "197",
"routeLongName": "Rosemont",
"shapeLink": "/storage/shapes/stm/1970142.json",
"shapeId": "1970142",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 10:35:04",
"meta": {},
"updatedAt": "2024-03-28 11:07:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 116,
"ref": "28005",
"isActive": false,
"label": "28005",
"timestamp": 1711636725,
"tripId": "276158011",
"routeId": "193",
"startTime": "07:51:00",
"position": {
"lat": 45.53459,
"lon": -73.64378
},
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276158011",
"headsign": "193-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "193",
"routeLongName": "Jarry",
"shapeLink": "/storage/shapes/stm/1930134.json",
"shapeId": "1930134",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 10:40:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 117,
"ref": "28006",
"isActive": false,
"label": "28006",
"timestamp": 1711571529,
"tripId": "274243143",
"routeId": "419",
"startTime": "16:03:00",
"position": {
"lat": 45.46566,
"lon": -73.83167
},
"bearing": 326,
"speed": 15,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274243143",
"headsign": "419-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "419",
"routeLongName": "Express John Abbott",
"shapeLink": "/storage/shapes/stm/4190062.json",
"shapeId": "4190062",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-27 16:43:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2924,
"ref": "28007",
"isActive": true,
"label": "28007",
"timestamp": 1711638400,
"tripId": "273969951",
"routeId": "57",
"startTime": "11:03:00",
"position": {
"lat": 45.49266,
"lon": -73.58063
},
"bearing": 40,
"speed": 4,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273969951",
"headsign": "57-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "57",
"routeLongName": "Pointe-Saint-Charles",
"shapeLink": "/storage/shapes/stm/570097.json",
"shapeId": "570097",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-05 16:58:06",
"meta": {},
"updatedAt": "2024-03-28 11:07:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3197,
"ref": "28008",
"isActive": false,
"label": "28008",
"timestamp": 1711629954,
"tripId": "274240006",
"routeId": "200",
"startTime": "08:08:00",
"position": {
"lat": 45.40409,
"lon": -73.9388
},
"bearing": 246,
"speed": 31,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240006",
"headsign": "200-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "200",
"routeLongName": "Sainte-Anne-de-Bellevue",
"shapeLink": "/storage/shapes/stm/2000095.json",
"shapeId": "2000095",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-01-05 21:44:02",
"meta": {},
"updatedAt": "2024-03-28 08:57:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1571,
"ref": "28009",
"isActive": false,
"label": "28009",
"timestamp": 1711628594,
"tripId": "274240613",
"routeId": "174",
"startTime": "08:00:00",
"position": {
"lat": 45.47297,
"lon": -73.73477
},
"bearing": 222,
"speed": 29,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240613",
"headsign": "174-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "174",
"routeLongName": "Côte-Vertu-Ouest",
"shapeLink": "/storage/shapes/stm/1740116.json",
"shapeId": "1740116",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:05:06",
"meta": {},
"updatedAt": "2024-03-28 08:34:12",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3298,
"ref": "28010",
"isActive": false,
"label": "28010",
"timestamp": 1711632461,
"tripId": "274242725",
"routeId": "218",
"startTime": "09:07:00",
"position": {
"lat": 45.4658,
"lon": -73.83135
},
"bearing": 157,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242725",
"headsign": "218-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "218",
"routeLongName": "Antoine-Faucon",
"shapeLink": "/storage/shapes/stm/2180053.json",
"shapeId": "2180053",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-01-27 20:59:05",
"meta": {},
"updatedAt": "2024-03-28 09:29:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3005,
"ref": "28011",
"isActive": true,
"label": "28011",
"timestamp": 1711638400,
"tripId": "274241762",
"routeId": "203",
"startTime": "10:31:00",
"position": {
"lat": 45.4454,
"lon": -73.7597
},
"bearing": 94,
"speed": 15,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241762",
"headsign": "203-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "203",
"routeLongName": "Carson",
"shapeLink": "/storage/shapes/stm/2030107.json",
"shapeId": "2030107",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-10 19:14:06",
"meta": {},
"updatedAt": "2024-03-28 11:07:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3250,
"ref": "28012",
"isActive": true,
"label": "28012",
"timestamp": 1711638394,
"tripId": "273970804",
"routeId": "78",
"startTime": "10:45:00",
"position": {
"lat": 45.45058,
"lon": -73.59646
},
"bearing": 256,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970804",
"headsign": "78-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "78",
"routeLongName": "Laurendeau",
"shapeLink": "/storage/shapes/stm/780087.json",
"shapeId": "780087",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-01-15 12:06:23",
"meta": {},
"updatedAt": "2024-03-28 11:07:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 118,
"ref": "28013",
"isActive": false,
"label": "28013",
"timestamp": 1711600411,
"tripId": "273973037",
"routeId": "495",
"startTime": "00:00:00",
"position": {
"lat": 45.42703,
"lon": -73.60694
},
"bearing": 29,
"speed": 39,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973037",
"headsign": "495-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "495",
"routeLongName": "Express Lachine / LaSalle",
"shapeLink": "/storage/shapes/stm/4950132.json",
"shapeId": "4950132",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 00:35:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 119,
"ref": "28014",
"isActive": true,
"label": "28014",
"timestamp": 1711638390,
"tripId": "273970283",
"routeId": "61",
"startTime": "10:49:00",
"position": {
"lat": 45.49443,
"lon": -73.55661
},
"bearing": 207,
"speed": 6,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970283",
"headsign": "61-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "61",
"routeLongName": "Wellington",
"shapeLink": "/storage/shapes/stm/610109.json",
"shapeId": "610109",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 11:07:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1968,
"ref": "28015",
"isActive": false,
"label": "28015",
"timestamp": 1711628573,
"tripId": "273973923",
"routeId": "425",
"startTime": "07:24:00",
"position": {
"lat": 45.48375,
"lon": -73.57961
},
"bearing": 156,
"speed": 32,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973923",
"headsign": "425-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "425",
"routeLongName": "Express Anse-à-l'Orme",
"shapeLink": "/storage/shapes/stm/4250077.json",
"shapeId": "4250077",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 12:00:17",
"meta": {},
"updatedAt": "2024-03-28 08:33:12",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3182,
"ref": "28016",
"isActive": false,
"label": "28016",
"timestamp": 1711632483,
"tripId": "274242756",
"routeId": "219",
"startTime": "09:00:00",
"position": {
"lat": 45.46525,
"lon": -73.8313
},
"bearing": 327,
"speed": 15,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242756",
"headsign": "219-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "219",
"routeLongName": "Chemin Sainte-Marie",
"shapeLink": "/storage/shapes/stm/2190062.json",
"shapeId": "2190062",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-30 11:42:07",
"meta": {},
"updatedAt": "2024-03-28 09:39:13",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2405,
"ref": "28017",
"isActive": false,
"label": "28017",
"timestamp": 1711540773,
"tripId": "274240591",
"routeId": "171",
"startTime": "07:18:00",
"position": {
"lat": 45.50216,
"lon": -73.70742
},
"bearing": 150,
"speed": 17,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240591",
"headsign": "171-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "171",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/1710224.json",
"shapeId": "1710224",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 21:14:13",
"meta": {},
"updatedAt": "2024-03-27 08:07:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 120,
"ref": "28018",
"isActive": true,
"label": "28018",
"timestamp": 1711638395,
"tripId": "274243225",
"routeId": "468",
"startTime": "10:17:00",
"position": {
"lat": 45.48119,
"lon": -73.86359
},
"bearing": 226,
"speed": 56,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274243225",
"headsign": "468-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "468",
"routeLongName": "Express Pierrefonds / Gouin",
"shapeLink": "/storage/shapes/stm/4680086.json",
"shapeId": "4680086",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 11:07:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 121,
"ref": "28019",
"isActive": false,
"label": "28019",
"timestamp": 1711626340,
"tripId": "274242910",
"routeId": "401",
"startTime": "07:19:00",
"position": {
"lat": 45.43515,
"lon": -73.8483
},
"bearing": 68,
"speed": 11,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242910",
"headsign": "401-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "401",
"routeLongName": "Express Saint-Charles",
"shapeLink": "/storage/shapes/stm/4010077.json",
"shapeId": "4010077",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 07:47:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1247,
"ref": "28020",
"isActive": true,
"label": "28020",
"timestamp": 1711638393,
"tripId": "274242434",
"routeId": "215",
"startTime": "11:00:00",
"position": {
"lat": 45.51845,
"lon": -73.70133
},
"bearing": 312,
"speed": 0,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242434",
"headsign": "215-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "215",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/2150155.json",
"shapeId": "2150155",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:15:04",
"meta": {},
"updatedAt": "2024-03-28 11:07:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 122,
"ref": "28021",
"isActive": false,
"label": "28021",
"timestamp": 1711627402,
"tripId": "274240410",
"routeId": "170",
"startTime": "07:33:00",
"position": {
"lat": 45.51404,
"lon": -73.68398
},
"bearing": 79,
"speed": 14,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240410",
"headsign": "170-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "170",
"routeLongName": "Keller",
"shapeLink": "/storage/shapes/stm/1700170.json",
"shapeId": "1700170",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 08:14:13",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1881,
"ref": "28022",
"isActive": true,
"label": "28022",
"timestamp": 1711638398,
"tripId": "274239978",
"routeId": "72",
"startTime": "10:42:00",
"position": {
"lat": 45.48094,
"lon": -73.76112
},
"bearing": 167,
"speed": 16,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274239978",
"headsign": "72-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": "/storage/shapes/stm/720169.json",
"shapeId": "720169",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:50:15",
"meta": {},
"updatedAt": "2024-03-28 11:07:10",
"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": [
1,
2,
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": 1711637318,
"tripId": "274241017",
"routeId": "196",
"startTime": "09:24:00",
"position": {
"lat": 45.43981,
"lon": -73.69035
},
"bearing": 268,
"speed": 46,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241017",
"headsign": "196-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "196",
"routeLongName": "Parc-Industriel-Lachine",
"shapeLink": "/storage/shapes/stm/1960207.json",
"shapeId": "1960207",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 10:50:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 124,
"ref": "28025",
"isActive": false,
"label": "28025",
"timestamp": 1711628098,
"tripId": "276156716",
"routeId": "41",
"startTime": "07:13:00",
"position": {
"lat": 45.5509,
"lon": -73.65649
},
"bearing": 164,
"speed": 9,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276156716",
"headsign": "41-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "41",
"routeLongName": "Quartier Saint-Michel / Ahuntsic",
"shapeLink": "/storage/shapes/stm/410320.json",
"shapeId": "410320",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 08:21:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1737,
"ref": "28026",
"isActive": false,
"label": "28026",
"timestamp": 1711630916,
"tripId": "274239960",
"routeId": "72",
"startTime": "08:11:00",
"position": {
"lat": 45.46549,
"lon": -73.83315
},
"bearing": 54,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274239960",
"headsign": "72-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": "/storage/shapes/stm/720173.json",
"shapeId": "720173",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:30:08",
"meta": {},
"updatedAt": "2024-03-28 09:13:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1267,
"ref": "28027",
"isActive": false,
"label": "28027",
"timestamp": 1710962424,
"tripId": "270703180",
"routeId": "64",
"startTime": "14:59:00",
"position": {
"lat": 45.51405,
"lon": -73.68399
},
"bearing": 345,
"speed": 14,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "270703180",
"headsign": "64-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "64",
"routeLongName": "Grenet",
"shapeLink": "/storage/shapes/stm/640141.json",
"shapeId": "640141",
"serviceId": "24J-H60J000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:20:02",
"meta": {},
"updatedAt": "2024-03-20 15:32:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 125,
"ref": "28028",
"isActive": false,
"label": "28028",
"timestamp": 1711626087,
"tripId": "274240413",
"routeId": "170",
"startTime": "07:13:00",
"position": {
"lat": 45.514,
"lon": -73.68396
},
"bearing": 55,
"speed": 14,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240413",
"headsign": "170-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "170",
"routeLongName": "Keller",
"shapeLink": "/storage/shapes/stm/1700170.json",
"shapeId": "1700170",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 07:52:15",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1739,
"ref": "28029",
"isActive": true,
"label": "28029",
"timestamp": 1711638396,
"tripId": "274243022",
"routeId": "174",
"startTime": "11:17:00",
"position": {
"lat": 45.51447,
"lon": -73.6832
},
"bearing": 327,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274243022",
"headsign": "174-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "174",
"routeLongName": "Côte-Vertu-Ouest",
"shapeLink": "/storage/shapes/stm/1740116.json",
"shapeId": "1740116",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:30:08",
"meta": {},
"updatedAt": "2024-03-28 11:07:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 126,
"ref": "28030",
"isActive": true,
"label": "28030",
"timestamp": 1711638407,
"tripId": "274241069",
"routeId": "200",
"startTime": "10:31:00",
"position": {
"lat": 45.40524,
"lon": -73.93115
},
"bearing": 249,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241069",
"headsign": "200-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "200",
"routeLongName": "Sainte-Anne-de-Bellevue",
"shapeLink": "/storage/shapes/stm/2000095.json",
"shapeId": "2000095",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 11:07:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 127,
"ref": "28031",
"isActive": false,
"label": "28031",
"timestamp": 1711400141,
"tripId": "274242808",
"routeId": "225",
"startTime": "16:32:00",
"position": {
"lat": 45.51318,
"lon": -73.68401
},
"bearing": 42,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"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 00:14:35",
"meta": {},
"updatedAt": "2024-03-25 17:06:30",
"agencyName": "Société de transport de Montréal"
},
{
"id": 6811,
"ref": "28032",
"isActive": false,
"label": "28032",
"timestamp": 1711633424,
"tripId": "274241087",
"routeId": "200",
"startTime": "09:04:00",
"position": {
"lat": 45.46647,
"lon": -73.83152
},
"bearing": 233,
"speed": 15,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241087",
"headsign": "200-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "200",
"routeLongName": "Sainte-Anne-de-Bellevue",
"shapeLink": "/storage/shapes/stm/2000093.json",
"shapeId": "2000093",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-03-09 15:08:03",
"meta": {},
"updatedAt": "2024-03-28 09:54:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 128,
"ref": "28033",
"isActive": false,
"label": "28033",
"timestamp": 1711627121,
"tripId": "274240591",
"routeId": "171",
"startTime": "07:18:00",
"position": {
"lat": 45.50275,
"lon": -73.70579
},
"bearing": 221,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240591",
"headsign": "171-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "171",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/1710224.json",
"shapeId": "1710224",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 08:06:15",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2539,
"ref": "28034",
"isActive": false,
"label": "28034",
"timestamp": 1711632381,
"tripId": "274242418",
"routeId": "215",
"startTime": "08:41:00",
"position": {
"lat": 45.46635,
"lon": -73.83175
},
"bearing": 156,
"speed": 16,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242418",
"headsign": "215-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "215",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/2150155.json",
"shapeId": "2150155",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-25 10:56:04",
"meta": {},
"updatedAt": "2024-03-28 09:37:08",
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "270704136",
"headsign": "72-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": "/storage/shapes/stm/720174.json",
"shapeId": "720174",
"serviceId": "24J-H60J000S-80-S",
"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": 1711569801,
"tripId": "274242976",
"routeId": "407",
"startTime": "15:27:00",
"position": {
"lat": 45.49361,
"lon": -73.87703
},
"bearing": 155,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242976",
"headsign": "407-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "407",
"routeLongName": "Express Île-Bizard",
"shapeLink": "/storage/shapes/stm/4070055.json",
"shapeId": "4070055",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-05-16 22:53:03",
"meta": {},
"updatedAt": "2024-03-27 16:14:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2068,
"ref": "28037",
"isActive": false,
"label": "28037",
"timestamp": 1711632574,
"tripId": "274242796",
"routeId": "225",
"startTime": "08:46:00",
"position": {
"lat": 45.46712,
"lon": -73.83027
},
"bearing": 234,
"speed": 43,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242796",
"headsign": "225-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "225",
"routeLongName": "Hymus",
"shapeLink": "/storage/shapes/stm/2250135.json",
"shapeId": "2250135",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 12:20:22",
"meta": {},
"updatedAt": "2024-03-28 09:40:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1330,
"ref": "28038",
"isActive": false,
"label": "28038",
"timestamp": 1711633947,
"tripId": "274239715",
"routeId": "68",
"startTime": "08:56:00",
"position": {
"lat": 45.43768,
"lon": -73.90241
},
"bearing": 94,
"speed": 49,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274239715",
"headsign": "68-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "68",
"routeLongName": "Pierrefonds",
"shapeLink": "/storage/shapes/stm/680402.json",
"shapeId": "680402",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:30:03",
"meta": {},
"updatedAt": "2024-03-28 10:03:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1331,
"ref": "28039",
"isActive": false,
"label": "28039",
"timestamp": 1711631038,
"tripId": "274242802",
"routeId": "225",
"startTime": "08:20:00",
"position": {
"lat": 45.46646,
"lon": -73.83154
},
"bearing": 235,
"speed": 13,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242802",
"headsign": "225-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "225",
"routeLongName": "Hymus",
"shapeLink": "/storage/shapes/stm/2250135.json",
"shapeId": "2250135",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:30:03",
"meta": {},
"updatedAt": "2024-03-28 09:15:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 129,
"ref": "28040",
"isActive": false,
"label": "28040",
"timestamp": 1711368303,
"tripId": "274240410",
"routeId": "170",
"startTime": "07:33:00",
"position": {
"lat": 45.51437,
"lon": -73.68417
},
"bearing": 169,
"speed": 22,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240410",
"headsign": "170-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "170",
"routeLongName": "Keller",
"shapeLink": "/storage/shapes/stm/1700170.json",
"shapeId": "1700170",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-25 08:17:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 7429,
"ref": "28041",
"isActive": false,
"label": "28041",
"timestamp": 1711631432,
"tripId": "274241333",
"routeId": "202",
"startTime": "08:07:00",
"position": {
"lat": 45.50769,
"lon": -73.67277
},
"bearing": 23,
"speed": 10,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241333",
"headsign": "202-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "202",
"routeLongName": "Dawson",
"shapeLink": "/storage/shapes/stm/2020182.json",
"shapeId": "2020182",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-08-13 06:25:03",
"meta": {},
"updatedAt": "2024-03-28 09:21:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1711,
"ref": "28042",
"isActive": false,
"label": "28042",
"timestamp": 1711628351,
"tripId": "274240869",
"routeId": "72",
"startTime": "07:45:00",
"position": {
"lat": 45.47375,
"lon": -73.78658
},
"bearing": 234,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240869",
"headsign": "72-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": "/storage/shapes/stm/720174.json",
"shapeId": "720174",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:25:07",
"meta": {},
"updatedAt": "2024-03-28 08:30:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1740,
"ref": "28043",
"isActive": false,
"label": "28043",
"timestamp": 1711629932,
"tripId": "274241175",
"routeId": "201",
"startTime": "07:35:00",
"position": {
"lat": 45.46715,
"lon": -73.8335
},
"bearing": 144,
"speed": 43,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241175",
"headsign": "201-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "201",
"routeLongName": "Saint-Charles / Saint-Jean",
"shapeLink": "/storage/shapes/stm/2010204.json",
"shapeId": "2010204",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:30:09",
"meta": {},
"updatedAt": "2024-03-28 08:56:12",
"agencyName": "Société de transport de Montréal"
},
{
"id": 130,
"ref": "28044",
"isActive": false,
"label": "28044",
"timestamp": 1711626442,
"tripId": "274240671",
"routeId": "72",
"startTime": "07:15:00",
"position": {
"lat": 45.47375,
"lon": -73.78657
},
"bearing": 234,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240671",
"headsign": "72-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": "/storage/shapes/stm/720174.json",
"shapeId": "720174",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 07:58:12",
"agencyName": "Société de transport de Montréal"
},
{
"id": 131,
"ref": "28045",
"isActive": false,
"label": "28045",
"timestamp": 1711632262,
"tripId": "274243293",
"routeId": "968",
"startTime": "09:00:00",
"position": {
"lat": 45.51287,
"lon": -73.68439
},
"bearing": 42,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274243293",
"headsign": "968-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "968",
"routeLongName": "Trainbus Roxboro / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/9680026.json",
"shapeId": "9680026",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 09:35:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3043,
"ref": "28046",
"isActive": false,
"label": "28046",
"timestamp": 1711632621,
"tripId": "273973803",
"routeId": "411",
"startTime": "08:45:00",
"position": {
"lat": 45.48131,
"lon": -73.58315
},
"bearing": 35,
"speed": 36,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973803",
"headsign": "411-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "411",
"routeLongName": "Express Lionel-Groulx",
"shapeLink": "/storage/shapes/stm/4110073.json",
"shapeId": "4110073",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-12 21:30:13",
"meta": {},
"updatedAt": "2024-03-28 09:41:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 132,
"ref": "28047",
"isActive": false,
"label": "28047",
"timestamp": 1711626955,
"tripId": "273971297",
"routeId": "104",
"startTime": "07:06:00",
"position": {
"lat": 45.48929,
"lon": -73.58456
},
"bearing": 125,
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273971297",
"headsign": "104-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "104",
"routeLongName": "Cavendish",
"shapeLink": "/storage/shapes/stm/1040114.json",
"shapeId": "1040114",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 08:05:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 133,
"ref": "28048",
"isActive": false,
"label": "28048",
"timestamp": 1711630638,
"tripId": "273972491",
"routeId": "406",
"startTime": "08:36:00",
"position": {
"lat": 45.44644,
"lon": -73.60443
},
"bearing": 187,
"speed": 17,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972491",
"headsign": "406-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "406",
"routeLongName": "Express Newman",
"shapeLink": "/storage/shapes/stm/4060074.json",
"shapeId": "4060074",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 09:07:14",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1638,
"ref": "28049",
"isActive": false,
"label": "28049",
"timestamp": 1711593910,
"tripId": "276157112",
"routeId": "48",
"startTime": "22:01:00",
"position": {
"lat": 45.55729,
"lon": -73.6674
},
"bearing": 184,
"speed": 25,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157112",
"headsign": "48-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": "/storage/shapes/stm/480411.json",
"shapeId": "480411",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 11:15:08",
"meta": {},
"updatedAt": "2024-03-27 22:53:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1456,
"ref": "28050",
"isActive": false,
"label": "28050",
"timestamp": 1711628211,
"tripId": "276156882",
"routeId": "45",
"startTime": "07:21:00",
"position": {
"lat": 45.52267,
"lon": -73.55229
},
"bearing": 60,
"speed": 12,
"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": 5,
"label": "Full"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276156882",
"headsign": "45-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "45",
"routeLongName": "Papineau",
"shapeLink": "/storage/shapes/stm/450173.json",
"shapeId": "450173",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 10:50:04",
"meta": {},
"updatedAt": "2024-03-28 08:27:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 134,
"ref": "28051",
"isActive": true,
"label": "28051",
"timestamp": 1711638401,
"tripId": "273972143",
"routeId": "191",
"startTime": "10:33:00",
"position": {
"lat": 45.44189,
"lon": -73.69262
},
"bearing": 221,
"speed": 18,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972143",
"headsign": "191-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "191",
"routeLongName": "Broadway / Provost",
"shapeLink": "/storage/shapes/stm/1910883.json",
"shapeId": "1910883",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 11:07:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 135,
"ref": "28052",
"isActive": true,
"label": "28052",
"timestamp": 1711638393,
"tripId": "273974004",
"routeId": "491",
"startTime": "10:54:00",
"position": {
"lat": 45.44874,
"lon": -73.63465
},
"bearing": 242,
"speed": 51,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273974004",
"headsign": "491-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "491",
"routeLongName": "Express Lachine",
"shapeLink": "/storage/shapes/stm/4910077.json",
"shapeId": "4910077",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 11:07:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2070,
"ref": "28053",
"isActive": true,
"label": "28053",
"timestamp": 1711638399,
"tripId": "273974090",
"routeId": "495",
"startTime": "10:34:00",
"position": {
"lat": 45.4251,
"lon": -73.65855
},
"bearing": 314,
"speed": 18,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273974090",
"headsign": "495-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "495",
"routeLongName": "Express Lachine / LaSalle",
"shapeLink": "/storage/shapes/stm/4950131.json",
"shapeId": "4950131",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 12:20:23",
"meta": {},
"updatedAt": "2024-03-28 11:07:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1969,
"ref": "28054",
"isActive": true,
"label": "28054",
"timestamp": 1711638404,
"tripId": "276157086",
"routeId": "48",
"startTime": "11:03:00",
"position": {
"lat": 45.57001,
"lon": -73.65845
},
"bearing": 20,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157086",
"headsign": "48-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": "/storage/shapes/stm/480414.json",
"shapeId": "480414",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 12:00:20",
"meta": {},
"updatedAt": "2024-03-28 11:07:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2794,
"ref": "28055",
"isActive": false,
"label": "28055",
"timestamp": 1711632200,
"tripId": "276572287",
"routeId": "113",
"startTime": "09:01:00",
"position": {
"lat": 45.44707,
"lon": -73.60449
},
"bearing": 169,
"speed": 21,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"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-29 20:44:18",
"meta": {},
"updatedAt": "2024-03-28 09:33:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1248,
"ref": "28056",
"isActive": true,
"label": "28056",
"timestamp": 1711638390,
"tripId": "273971902",
"routeId": "109",
"startTime": "11:10:00",
"position": {
"lat": 45.43393,
"lon": -73.59348
},
"bearing": 197,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273971902",
"headsign": "109-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "109",
"routeLongName": "Boulevard Shevchenko",
"shapeLink": "/storage/shapes/stm/1090087.json",
"shapeId": "1090087",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:15:04",
"meta": {},
"updatedAt": "2024-03-28 11:07:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 136,
"ref": "28057",
"isActive": true,
"label": "28057",
"timestamp": 1711638407,
"tripId": "273974064",
"routeId": "495",
"startTime": "11:20:00",
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273974064",
"headsign": "495-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "495",
"routeLongName": "Express Lachine / LaSalle",
"shapeLink": "/storage/shapes/stm/4950132.json",
"shapeId": "4950132",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 11:07:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3368,
"ref": "28058",
"isActive": false,
"label": "28058",
"timestamp": 1711625954,
"tripId": "276156946",
"routeId": "48",
"startTime": "06:44:00",
"position": {
"lat": 45.55688,
"lon": -73.66742
},
"bearing": 188,
"speed": 5,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276156946",
"headsign": "48-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": "/storage/shapes/stm/480411.json",
"shapeId": "480411",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2020-02-19 17:17:03",
"meta": {},
"updatedAt": "2024-03-28 07:50:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1713,
"ref": "28059",
"isActive": false,
"label": "28059",
"timestamp": 1710856994,
"tripId": "274896223",
"routeId": "193",
"startTime": "09:00:00",
"position": {
"lat": 45.53054,
"lon": -73.63617
},
"bearing": 15,
"speed": 0,
"vehicleType": "bus",
"plate": null,
"odometer": null,
"currentStopSequence": 47,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "274896223",
"headsign": "193-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "193",
"routeLongName": "Jarry",
"shapeLink": "/storage/shapes/stm/1930135.json",
"shapeId": "1930135",
"serviceId": "24J-H58J000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 11:25:08",
"meta": {},
"updatedAt": "2024-03-19 10:05:41",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1332,
"ref": "28060",
"isActive": false,
"label": "28060",
"timestamp": 1711635121,
"tripId": "276157443",
"routeId": "139",
"startTime": "09:30:00",
"position": {
"lat": 45.54907,
"lon": -73.53757
},
"bearing": 115,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157443",
"headsign": "139-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "139",
"routeLongName": "Pie-IX",
"shapeLink": "/storage/shapes/stm/1394405.json",
"shapeId": "1394405",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 10:30:03",
"meta": {},
"updatedAt": "2024-03-28 10:23:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1883,
"ref": "28061",
"isActive": true,
"label": "28061",
"timestamp": 1711638397,
"tripId": "273973855",
"routeId": "420",
"startTime": "11:05:00",
"position": {
"lat": 45.45973,
"lon": -73.66122
},
"bearing": 60,
"speed": 26,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973855",
"headsign": "420-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "420",
"routeLongName": "Express Notre-Dame-de-Grâce",
"shapeLink": "/storage/shapes/stm/4200113.json",
"shapeId": "4200113",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:50:17",
"meta": {},
"updatedAt": "2024-03-28 11:07:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 137,
"ref": "28062",
"isActive": false,
"label": "28062",
"timestamp": 1711636172,
"tripId": "276156868",
"routeId": "45",
"startTime": null,
"position": {
"lat": 45.57356,
"lon": -73.65862
},
"bearing": 200,
"speed": 45,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276156868",
"headsign": "45-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "45",
"routeLongName": "Papineau",
"shapeLink": "/storage/shapes/stm/450173.json",
"shapeId": "450173",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 10:31:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 138,
"ref": "28063",
"isActive": false,
"label": "28063",
"timestamp": 1711625985,
"tripId": "273973907",
"routeId": "425",
"startTime": "06:38:00",
"position": {
"lat": 45.45447,
"lon": -73.62798
},
"bearing": 225,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973907",
"headsign": "425-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "425",
"routeLongName": "Express Anse-à-l'Orme",
"shapeLink": "/storage/shapes/stm/4250077.json",
"shapeId": "4250077",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 07:41:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2047,
"ref": "28064",
"isActive": false,
"label": "28064",
"timestamp": 1711582589,
"tripId": "273974429",
"routeId": "411",
"startTime": "18:41:00",
"position": {
"lat": 45.40481,
"lon": -73.93681
},
"bearing": 237,
"speed": 40,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273974429",
"headsign": "411-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "411",
"routeLongName": "Express Lionel-Groulx",
"shapeLink": "/storage/shapes/stm/4110075.json",
"shapeId": "4110075",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 12:15:20",
"meta": {},
"updatedAt": "2024-03-27 19:47:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2202,
"ref": "28065",
"isActive": false,
"label": "28065",
"timestamp": 1711148454,
"tripId": "274895447",
"routeId": "48",
"startTime": "18:12:00",
"position": {
"lat": 45.6612,
"lon": -73.53864
},
"bearing": 48,
"speed": 7,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "274895447",
"headsign": "48-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": "/storage/shapes/stm/480414.json",
"shapeId": "480414",
"serviceId": "24J-H58J000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 18:05:06",
"meta": {},
"updatedAt": "2024-03-22 19:12:09",
"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": [
1,
2,
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": 1711628202,
"tripId": "273973645",
"routeId": "405",
"startTime": "07:27:00",
"position": {
"lat": 45.48186,
"lon": -73.5843
},
"bearing": 126,
"speed": 18,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973645",
"headsign": "405-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "405",
"routeLongName": "Express Bord-du-Lac",
"shapeLink": "/storage/shapes/stm/4050077.json",
"shapeId": "4050077",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 12:00:21",
"meta": {},
"updatedAt": "2024-03-28 08:18:14",
"agencyName": "Société de transport de Montréal"
},
{
"id": 822,
"ref": "28068",
"isActive": false,
"label": "28068",
"timestamp": 1711572759,
"tripId": "276156969",
"routeId": "48",
"startTime": "15:57:00",
"position": {
"lat": 45.66131,
"lon": -73.53846
},
"bearing": 343,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276156969",
"headsign": "48-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": "/storage/shapes/stm/480414.json",
"shapeId": "480414",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:09",
"meta": {},
"updatedAt": "2024-03-27 17:03:13",
"agencyName": "Société de transport de Montréal"
},
{
"id": 139,
"ref": "28069",
"isActive": false,
"label": "28069",
"timestamp": 1711627162,
"tripId": "273970553",
"routeId": "71",
"startTime": "07:28:00",
"position": {
"lat": 45.47009,
"lon": -73.56582
},
"bearing": 11,
"speed": 11,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970553",
"headsign": "71-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "71",
"routeLongName": "Du Centre",
"shapeLink": "/storage/shapes/stm/710077.json",
"shapeId": "710077",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 08:10:14",
"agencyName": "Société de transport de Montréal"
},
{
"id": 140,
"ref": "28070",
"isActive": false,
"label": "28070",
"timestamp": 1711626401,
"tripId": "274240596",
"routeId": "171",
"startTime": "07:12:00",
"position": {
"lat": 45.50512,
"lon": -73.703
},
"bearing": 222,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240596",
"headsign": "171-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "171",
"routeLongName": "Henri-Bourassa",
"shapeLink": "/storage/shapes/stm/1710224.json",
"shapeId": "1710224",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 07:48:13",
"agencyName": "Société de transport de Montréal"
},
{
"id": 141,
"ref": "28071",
"isActive": false,
"label": "28071",
"timestamp": 1711627786,
"tripId": "274240839",
"routeId": "196",
"startTime": "07:15:00",
"position": {
"lat": 45.43977,
"lon": -73.69164
},
"bearing": 277,
"speed": 5,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240839",
"headsign": "196-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "196",
"routeLongName": "Parc-Industriel-Lachine",
"shapeLink": "/storage/shapes/stm/1960207.json",
"shapeId": "1960207",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 08:20:12",
"agencyName": "Société de transport de Montréal"
},
{
"id": 142,
"ref": "28072",
"isActive": false,
"label": "28072",
"timestamp": 1711634460,
"tripId": "274242398",
"routeId": "213",
"startTime": "09:22:00",
"position": {
"lat": 45.51494,
"lon": -73.82882
},
"bearing": 331,
"speed": 43,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242398",
"headsign": "213-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "213",
"routeLongName": "Parc-Industriel-Saint-Laurent",
"shapeLink": "/storage/shapes/stm/2130180.json",
"shapeId": "2130180",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 10:12:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 143,
"ref": "28073",
"isActive": false,
"label": "28073",
"timestamp": 1711480621,
"tripId": "274239535",
"routeId": "64",
"startTime": "14:59:00",
"position": {
"lat": 45.51424,
"lon": -73.6841
},
"bearing": 121,
"speed": 13,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274239535",
"headsign": "64-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "64",
"routeLongName": "Grenet",
"shapeLink": "/storage/shapes/stm/640141.json",
"shapeId": "640141",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-26 15:28:58",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1333,
"ref": "28074",
"isActive": true,
"label": "28074",
"timestamp": 1711638388,
"tripId": "274242378",
"routeId": "209",
"startTime": "10:27:00",
"position": {
"lat": 45.51054,
"lon": -73.81651
},
"bearing": 68,
"speed": 32,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242378",
"headsign": "209-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "209",
"routeLongName": "Des Sources",
"shapeLink": "/storage/shapes/stm/2090079.json",
"shapeId": "2090079",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:30:03",
"meta": {},
"updatedAt": "2024-03-28 11:07:12",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1971,
"ref": "28075",
"isActive": false,
"label": "28075",
"timestamp": 1711627370,
"tripId": "274239428",
"routeId": "225",
"startTime": "07:13:00",
"position": {
"lat": 45.46505,
"lon": -73.83072
},
"bearing": 329,
"speed": 3,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274239428",
"headsign": "225-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "225",
"routeLongName": "Hymus",
"shapeLink": "/storage/shapes/stm/2250135.json",
"shapeId": "2250135",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 12:00:21",
"meta": {},
"updatedAt": "2024-03-28 08:13:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1673,
"ref": "28076",
"isActive": false,
"label": "28076",
"timestamp": 1711571918,
"tripId": "274243346",
"routeId": "968",
"startTime": "16:10:00",
"position": {
"lat": 45.51018,
"lon": -73.81141
},
"bearing": 307,
"speed": 16,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274243346",
"headsign": "968-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "968",
"routeLongName": "Trainbus Roxboro / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/9680027.json",
"shapeId": "9680027",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:20:09",
"meta": {},
"updatedAt": "2024-03-27 16:49:12",
"agencyName": "Société de transport de Montréal"
},
{
"id": 144,
"ref": "28077",
"isActive": false,
"label": "28077",
"timestamp": 1711624775,
"tripId": "274240796",
"routeId": "179",
"startTime": "06:53:00",
"position": {
"lat": 45.5237,
"lon": -73.62402
},
"bearing": 131,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240796",
"headsign": "179-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "179",
"routeLongName": "De l'Acadie",
"shapeLink": "/storage/shapes/stm/1790189.json",
"shapeId": "1790189",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 07:30:13",
"agencyName": "Société de transport de Montréal"
},
{
"id": 145,
"ref": "28078",
"isActive": false,
"label": "28078",
"timestamp": 1711630132,
"tripId": "274239737",
"routeId": "174",
"startTime": "08:30:00",
"position": {
"lat": 45.47295,
"lon": -73.73479
},
"bearing": 221,
"speed": 29,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274239737",
"headsign": "174-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "174",
"routeLongName": "Côte-Vertu-Ouest",
"shapeLink": "/storage/shapes/stm/1740116.json",
"shapeId": "1740116",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 08:55:13",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2476,
"ref": "28079",
"isActive": false,
"label": "28079",
"timestamp": 1711630003,
"tripId": "276572266",
"routeId": "195",
"startTime": "07:51:00",
"position": {
"lat": 45.44745,
"lon": -73.7431
},
"bearing": 276,
"speed": 27,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "195",
"routeLongName": "Sherbrooke / Notre-Dame",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-23 10:56:04",
"meta": {},
"updatedAt": "2024-03-28 08:48:13",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1639,
"ref": "28080",
"isActive": false,
"label": "28080",
"timestamp": 1711545702,
"tripId": "276157210",
"routeId": "54",
"startTime": "08:33:00",
"position": {
"lat": 45.52961,
"lon": -73.66676
},
"bearing": 217,
"speed": 19,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157210",
"headsign": "54-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "54",
"routeLongName": "Charland / Chabanel",
"shapeLink": "/storage/shapes/stm/540152.json",
"shapeId": "540152",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 11:15:09",
"meta": {},
"updatedAt": "2024-03-27 09:32:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1531,
"ref": "28081",
"isActive": false,
"label": "28081",
"timestamp": 1711637614,
"tripId": "273973864",
"routeId": "420",
"startTime": "10:07:00",
"position": {
"lat": 45.50081,
"lon": -73.5724
},
"bearing": 119,
"speed": 1,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973864",
"headsign": "420-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "420",
"routeLongName": "Express Notre-Dame-de-Grâce",
"shapeLink": "/storage/shapes/stm/4200113.json",
"shapeId": "4200113",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:00:05",
"meta": {},
"updatedAt": "2024-03-28 10:55:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3301,
"ref": "28082",
"isActive": false,
"label": "28082",
"timestamp": 1711627842,
"tripId": "276156972",
"routeId": "48",
"startTime": "07:21:00",
"position": {
"lat": 45.55653,
"lon": -73.66729
},
"bearing": 187,
"speed": 17,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276156972",
"headsign": "48-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": "/storage/shapes/stm/480411.json",
"shapeId": "480411",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2020-01-28 10:12:04",
"meta": {},
"updatedAt": "2024-03-28 08:21:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1776,
"ref": "28083",
"isActive": false,
"label": "28083",
"timestamp": 1711633859,
"tripId": "276157921",
"routeId": "193",
"startTime": "09:03:00",
"position": {
"lat": 45.53408,
"lon": -73.64607
},
"bearing": 25,
"speed": 33,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276157921",
"headsign": "193-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "193",
"routeLongName": "Jarry",
"shapeLink": "/storage/shapes/stm/1930135.json",
"shapeId": "1930135",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 11:35:09",
"meta": {},
"updatedAt": "2024-03-28 09:57:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2465,
"ref": "28084",
"isActive": false,
"label": "28084",
"timestamp": 1711633411,
"tripId": "273969614",
"routeId": "35",
"startTime": "09:07:00",
"position": {
"lat": 45.47673,
"lon": -73.58833
},
"bearing": 65,
"speed": 33,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273969614",
"headsign": "35-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "35",
"routeLongName": "Griffintown",
"shapeLink": "/storage/shapes/stm/350011.json",
"shapeId": "350011",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 22:32:16",
"meta": {},
"updatedAt": "2024-03-28 09:45:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1230,
"ref": "28085",
"isActive": false,
"label": "28085",
"timestamp": 1706122521,
"tripId": "271171745",
"routeId": "139",
"startTime": "12:00:00",
"position": {
"lat": 45.54837,
"lon": -73.53542
},
"bearing": 109,
"speed": 2,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "271171745",
"headsign": "139-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "139",
"routeLongName": "Pie-IX",
"shapeLink": "/storage/shapes/stm/1394399.json",
"shapeId": "1394399",
"serviceId": "24J-H58J000S-81-S",
"blockId": null
},
"createdAt": "2019-11-22 10:10:02",
"meta": {},
"updatedAt": "2024-01-24 13:57:05",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1857,
"ref": "28086",
"isActive": false,
"label": "28086",
"timestamp": 1711630479,
"tripId": "276174849",
"routeId": "197",
"startTime": "08:13:00",
"position": {
"lat": 45.53123,
"lon": -73.60183
},
"bearing": 113,
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "276174849",
"headsign": "197-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "197",
"routeLongName": "Rosemont",
"shapeLink": "/storage/shapes/stm/1970141.json",
"shapeId": "1970141",
"serviceId": "24M-H55M000S-83-S",
"blockId": null
},
"createdAt": "2019-11-22 11:45:19",
"meta": {},
"updatedAt": "2024-03-28 08:56:12",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1858,
"ref": "28087",
"isActive": false,
"label": "28087",
"timestamp": 1711634278,
"tripId": "276156744",
"routeId": "41",
"startTime": "09:06:00",
"position": {
"lat": 45.55149,
"lon": -73.65852
},
"bearing": 113,
"speed": 45,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276156744",
"headsign": "41-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "41",
"routeLongName": "Quartier Saint-Michel / Ahuntsic",
"shapeLink": "/storage/shapes/stm/410320.json",
"shapeId": "410320",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 11:45:19",
"meta": {},
"updatedAt": "2024-03-28 10:08:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 7106,
"ref": "28088",
"isActive": false,
"label": "28088",
"timestamp": 1711628314,
"tripId": "273972291",
"routeId": "112",
"startTime": "07:43:00",
"position": {
"lat": 45.45638,
"lon": -73.58143
},
"bearing": 279,
"speed": 10,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273972291",
"headsign": "112-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "112",
"routeLongName": "Airlie",
"shapeLink": "/storage/shapes/stm/1120165.json",
"shapeId": "1120165",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-04-16 21:01:03",
"meta": {},
"updatedAt": "2024-03-28 08:29:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3320,
"ref": "28089",
"isActive": false,
"label": "28089",
"timestamp": 1711630821,
"tripId": "273973797",
"routeId": "411",
"startTime": "08:13:00",
"position": {
"lat": 45.48147,
"lon": -73.58272
},
"bearing": 62,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973797",
"headsign": "411-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "411",
"routeLongName": "Express Lionel-Groulx",
"shapeLink": "/storage/shapes/stm/4110073.json",
"shapeId": "4110073",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-02-04 00:40:03",
"meta": {},
"updatedAt": "2024-03-28 09:08:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1153,
"ref": "28090",
"isActive": false,
"label": "28090",
"timestamp": 1711633229,
"tripId": "276156992",
"routeId": "48",
"startTime": "08:50:00",
"position": {
"lat": 45.5569,
"lon": -73.66742
},
"bearing": 192,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276156992",
"headsign": "48-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "48",
"routeLongName": "Perras",
"shapeLink": "/storage/shapes/stm/480411.json",
"shapeId": "480411",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 09:35:04",
"meta": {},
"updatedAt": "2024-03-28 09:51:08",
"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": [
1,
2,
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": 1711630599,
"tripId": "276156844",
"routeId": "45",
"startTime": "08:05:00",
"position": {
"lat": 45.52329,
"lon": -73.55177
},
"bearing": 319,
"speed": 12,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276156844",
"headsign": "45-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "45",
"routeLongName": "Papineau",
"shapeLink": "/storage/shapes/stm/450173.json",
"shapeId": "450173",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 09:07:14",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1497,
"ref": "28093",
"isActive": false,
"label": "28093",
"timestamp": 1711627951,
"tripId": "276572312",
"routeId": "496",
"startTime": "07:36:00",
"position": {
"lat": 45.4822,
"lon": -73.58202
},
"bearing": 40,
"speed": 20,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "496",
"routeLongName": "Express Victoria",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 10:55:03",
"meta": {},
"updatedAt": "2024-03-28 08:23:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1674,
"ref": "28094",
"isActive": true,
"label": "28094",
"timestamp": 1711638154,
"tripId": "273970481",
"routeId": "71",
"startTime": "10:41:00",
"position": {
"lat": 45.46785,
"lon": -73.56766
},
"bearing": 25,
"speed": 39,
"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": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273970481",
"headsign": "71-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "71",
"routeLongName": "Du Centre",
"shapeLink": "/storage/shapes/stm/710077.json",
"shapeId": "710077",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:20:09",
"meta": {},
"updatedAt": "2024-03-28 11:07:23",
"agencyName": "Société de transport de Montréal"
},
{
"id": 148,
"ref": "28095",
"isActive": false,
"label": "28095",
"timestamp": 1711628444,
"tripId": "276156792",
"routeId": "45",
"startTime": "07:33:00",
"position": {
"lat": 45.57328,
"lon": -73.65958
},
"bearing": 20,
"speed": 22,
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276156792",
"headsign": "45-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "45",
"routeLongName": "Papineau",
"shapeLink": "/storage/shapes/stm/450172.json",
"shapeId": "450172",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 08:31:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1823,
"ref": "28096",
"isActive": false,
"label": "28096",
"timestamp": 1711634634,
"tripId": "274240424",
"routeId": "174",
"startTime": "09:43:00",
"position": {
"lat": 45.5147,
"lon": -73.68385
},
"bearing": 130,
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240424",
"headsign": "174-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "174",
"routeLongName": "Côte-Vertu-Ouest",
"shapeLink": "/storage/shapes/stm/1740117.json",
"shapeId": "1740117",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:40:20",
"meta": {},
"updatedAt": "2024-03-28 10:15:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3299,
"ref": "28097",
"isActive": false,
"label": "28097",
"timestamp": 1711625675,
"tripId": "274242423",
"routeId": "200",
"startTime": "06:58:00",
"position": {
"lat": 45.40396,
"lon": -73.9392
},
"bearing": 246,
"speed": 31,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242423",
"headsign": "200-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "200",
"routeLongName": "Sainte-Anne-de-Bellevue",
"shapeLink": "/storage/shapes/stm/2000095.json",
"shapeId": "2000095",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-01-27 21:29:04",
"meta": {},
"updatedAt": "2024-03-28 07:45:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3206,
"ref": "28098",
"isActive": false,
"label": "28098",
"timestamp": 1711631015,
"tripId": "274239720",
"routeId": "68",
"startTime": "08:03:00",
"position": {
"lat": 45.43774,
"lon": -73.90336
},
"bearing": 95,
"speed": 73,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274239720",
"headsign": "68-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "68",
"routeLongName": "Pierrefonds",
"shapeLink": "/storage/shapes/stm/680402.json",
"shapeId": "680402",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2020-01-07 10:34:14",
"meta": {},
"updatedAt": "2024-03-28 09:14:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 149,
"ref": "28099",
"isActive": false,
"label": "28099",
"timestamp": 1711566938,
"tripId": "274243031",
"routeId": "409",
"startTime": null,
"position": {
"lat": 45.48774,
"lon": -73.84899
},
"bearing": 145,
"speed": 39,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274243031",
"headsign": "409-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "409",
"routeLongName": "Express Des Sources",
"shapeLink": "/storage/shapes/stm/4090094.json",
"shapeId": "4090094",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-27 15:17:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1742,
"ref": "28100",
"isActive": false,
"label": "28100",
"timestamp": 1711629935,
"tripId": "274240665",
"routeId": "175",
"startTime": "08:11:00",
"position": {
"lat": 45.49936,
"lon": -73.76762
},
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240665",
"headsign": "175-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "175",
"routeLongName": "Griffith / Saint-François",
"shapeLink": "/storage/shapes/stm/1750104.json",
"shapeId": "1750104",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:30:10",
"meta": {},
"updatedAt": "2024-03-28 08:53:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 150,
"ref": "28101",
"isActive": false,
"label": "28101",
"timestamp": 1711632622,
"tripId": "274242995",
"routeId": "409",
"startTime": "08:50:00",
"position": {
"lat": 45.48899,
"lon": -73.84645
},
"bearing": 241,
"speed": 35,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242995",
"headsign": "409-N",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "409",
"routeLongName": "Express Des Sources",
"shapeLink": "/storage/shapes/stm/4090091.json",
"shapeId": "4090091",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 09:41:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 151,
"ref": "28102",
"isActive": false,
"label": "28102",
"timestamp": 1711638344,
"tripId": "274243117",
"routeId": "419",
"startTime": "10:31:00",
"position": {
"lat": 45.46564,
"lon": -73.83165
},
"bearing": 325,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274243117",
"headsign": "419-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "419",
"routeLongName": "Express John Abbott",
"shapeLink": "/storage/shapes/stm/4190062.json",
"shapeId": "4190062",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 11:07:23",
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "270706117",
"headsign": "70-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "70",
"routeLongName": "Bois-Franc",
"shapeLink": "/storage/shapes/stm/700182.json",
"shapeId": "700182",
"serviceId": "24J-H60J000S-80-S",
"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": 1689725026,
"tripId": "267198974",
"routeId": "204",
"startTime": null,
"position": {
"lat": 45.46533,
"lon": -73.8309
},
"bearing": 327,
"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": [
1,
2,
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 10:40:03",
"meta": {},
"updatedAt": "2023-09-26 09:48:36",
"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": [
1,
2,
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": true,
"label": "28106",
"timestamp": 1711638404,
"tripId": "274241455",
"routeId": "202",
"startTime": "10:42:00",
"position": {
"lat": 45.44883,
"lon": -73.74196
},
"bearing": 194,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241455",
"headsign": "202-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "202",
"routeLongName": "Dawson",
"shapeLink": "/storage/shapes/stm/2020184.json",
"shapeId": "2020184",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 11:07:17",
"agencyName": "Société de transport de Montréal"
},
{
"id": 154,
"ref": "28107",
"isActive": false,
"label": "28107",
"timestamp": 1711625465,
"tripId": "274239439",
"routeId": "64",
"startTime": "07:12:00",
"position": {
"lat": 45.51431,
"lon": -73.68414
},
"bearing": 50,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274239439",
"headsign": "64-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "64",
"routeLongName": "Grenet",
"shapeLink": "/storage/shapes/stm/640141.json",
"shapeId": "640141",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 07:42:11",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2100,
"ref": "28108",
"isActive": false,
"label": "28108",
"timestamp": 1711631583,
"tripId": "274243286",
"routeId": "968",
"startTime": "08:50:00",
"position": {
"lat": 45.51426,
"lon": -73.6844
},
"bearing": 173,
"speed": 20,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274243286",
"headsign": "968-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "968",
"routeLongName": "Trainbus Roxboro / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/9680026.json",
"shapeId": "9680026",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 12:30:26",
"meta": {},
"updatedAt": "2024-03-28 09:24:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 155,
"ref": "28109",
"isActive": false,
"label": "28109",
"timestamp": 1711627916,
"tripId": "274242813",
"routeId": "200",
"startTime": "07:27:00",
"position": {
"lat": 45.40384,
"lon": -73.93958
},
"bearing": 258,
"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": 3,
"label": "Standing room only"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242813",
"headsign": "200-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "200",
"routeLongName": "Sainte-Anne-de-Bellevue",
"shapeLink": "/storage/shapes/stm/2000095.json",
"shapeId": "2000095",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 08:23:11",
"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": [
1,
2,
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": 1711629374,
"tripId": "274242276",
"routeId": "208",
"startTime": "07:50:00",
"position": {
"lat": 45.46648,
"lon": -73.8315
},
"bearing": 209,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242276",
"headsign": "208-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "208",
"routeLongName": "Brunswick",
"shapeLink": "/storage/shapes/stm/2080104.json",
"shapeId": "2080104",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 08:47:10",
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"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": 1711632205,
"tripId": "274240951",
"routeId": "196",
"startTime": "08:36:00",
"position": {
"lat": 45.5122,
"lon": -73.68524
},
"bearing": 41,
"speed": 40,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240951",
"headsign": "196-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "196",
"routeLongName": "Parc-Industriel-Lachine",
"shapeLink": "/storage/shapes/stm/1960208.json",
"shapeId": "1960208",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 09:34:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 159,
"ref": "28114",
"isActive": false,
"label": "28114",
"timestamp": 1702600742,
"tripId": "271593591",
"routeId": "401",
"startTime": "19:12:00",
"position": {
"lat": 45.48195,
"lon": -73.86595
},
"bearing": 336,
"speed": 28,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"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 00:14:35",
"meta": {},
"updatedAt": "2023-12-14 19:50:04",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2881,
"ref": "28115",
"isActive": false,
"label": "28115",
"timestamp": 1711630263,
"tripId": "274240198",
"routeId": "164",
"startTime": "08:05:00",
"position": {
"lat": 45.5565,
"lon": -73.66717
},
"bearing": 27,
"speed": 13,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240198",
"headsign": "164-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "164",
"routeLongName": "Dudemaine",
"shapeLink": "/storage/shapes/stm/1640156.json",
"shapeId": "1640156",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-03 22:50:14",
"meta": {},
"updatedAt": "2024-03-28 09:02:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2769,
"ref": "28116",
"isActive": false,
"label": "28116",
"timestamp": 1710449196,
"tripId": "270703223",
"routeId": "64",
"startTime": "16:20:00",
"position": {
"lat": 45.50295,
"lon": -73.73683
},
"bearing": 352,
"speed": 16,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "270703223",
"headsign": "64-N",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "64",
"routeLongName": "Grenet",
"shapeLink": "/storage/shapes/stm/640164.json",
"shapeId": "640164",
"serviceId": "24J-H60J000S-80-S",
"blockId": null
},
"createdAt": "2019-11-28 22:28:12",
"meta": {},
"updatedAt": "2024-03-14 16:48:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 160,
"ref": "28117",
"isActive": false,
"label": "28117",
"timestamp": 1711634773,
"tripId": "274240816",
"routeId": "90",
"startTime": "09:24:00",
"position": {
"lat": 45.48849,
"lon": -73.58548
},
"bearing": 40,
"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": 1,
"label": "Many seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240816",
"headsign": "90-E",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "90",
"routeLongName": "Saint-Jacques",
"shapeLink": "/storage/shapes/stm/900252.json",
"shapeId": "900252",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 10:17:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1885,
"ref": "28118",
"isActive": false,
"label": "28118",
"timestamp": 1711626137,
"tripId": "274239964",
"routeId": "72",
"startTime": "06:52:00",
"position": {
"lat": 45.46593,
"lon": -73.83231
},
"bearing": 104,
"speed": 13,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274239964",
"headsign": "72-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "72",
"routeLongName": "Alfred-Nobel",
"shapeLink": "/storage/shapes/stm/720173.json",
"shapeId": "720173",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 11:50:20",
"meta": {},
"updatedAt": "2024-03-28 07:53:15",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2860,
"ref": "28119",
"isActive": false,
"label": "28119",
"timestamp": 1711632946,
"tripId": "274243300",
"routeId": "968",
"startTime": "09:10:00",
"position": {
"lat": 45.51301,
"lon": -73.68423
},
"bearing": 42,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274243300",
"headsign": "968-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "968",
"routeLongName": "Trainbus Roxboro / Côte-Vertu",
"shapeLink": "/storage/shapes/stm/9680026.json",
"shapeId": "9680026",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-12-03 12:08:11",
"meta": {},
"updatedAt": "2024-03-28 09:37:08",
"agencyName": "Société de transport de Montréal"
},
{
"id": 161,
"ref": "28120",
"isActive": false,
"label": "28120",
"timestamp": 1700089276,
"tripId": "271594697",
"routeId": "177",
"startTime": "17:42:00",
"position": {
"lat": 45.49847,
"lon": -73.74239
},
"bearing": 34,
"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": [
1,
2,
3,
22
],
"tags": [],
"trip": {
"id": null,
"headsign": null,
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "177",
"routeLongName": "Thimens",
"shapeLink": null,
"shapeId": null,
"serviceId": null,
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2023-11-15 18:03:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 162,
"ref": "28121",
"isActive": false,
"label": "28121",
"timestamp": 1711626665,
"tripId": "274240809",
"routeId": "196",
"startTime": "06:57:00",
"position": {
"lat": 45.43977,
"lon": -73.69154
},
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240809",
"headsign": "196-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "196",
"routeLongName": "Parc-Industriel-Lachine",
"shapeLink": "/storage/shapes/stm/1960207.json",
"shapeId": "1960207",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 08:01:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1154,
"ref": "28122",
"isActive": false,
"label": "28122",
"timestamp": 1711628480,
"tripId": "276158321",
"routeId": "49",
"startTime": "07:17:00",
"position": {
"lat": 45.5567,
"lon": -73.66747
},
"bearing": 149,
"speed": 17,
"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": 5,
"label": "Full"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
5
],
"trip": {
"id": "276158321",
"headsign": "49-O",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "49",
"routeLongName": "Maurice-Duplessis",
"shapeLink": "/storage/shapes/stm/490345.json",
"shapeId": "490345",
"serviceId": "24M-H58M000S-84-S",
"blockId": null
},
"createdAt": "2019-11-22 09:35:04",
"meta": {},
"updatedAt": "2024-03-28 08:32:10",
"agencyName": "Société de transport de Montréal"
},
{
"id": 3189,
"ref": "28123",
"isActive": true,
"label": "28123",
"timestamp": 1711638389,
"tripId": "273973161",
"routeId": "191",
"startTime": "10:25:00",
"position": {
"lat": 45.46856,
"lon": -73.59573
},
"bearing": 61,
"speed": 23,
"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": 2,
"label": "Few seats available"
},
"agency": "stm",
"links": [
1,
2,
3,
22
],
"tags": [
4
],
"trip": {
"id": "273973161",
"headsign": "191-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "191",
"routeLongName": "Broadway / Provost",
"shapeLink": "/storage/shapes/stm/1910884.json",
"shapeId": "1910884",
"serviceId": "24M-H56M000S-80-S",
"blockId": null
},
"createdAt": "2020-01-01 17:14:05",
"meta": {},
"updatedAt": "2024-03-28 11:07:16",
"agencyName": "Société de transport de Montréal"
},
{
"id": 1457,
"ref": "28124",
"isActive": false,
"label": "28124",
"timestamp": 1711634275,
"tripId": "274242193",
"routeId": "208",
"startTime": "09:17:00",
"position": {
"lat": 45.46649,
"lon": -73.83148
},
"bearing": 230,
"speed": 2,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242193",
"headsign": "208-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "208",
"routeLongName": "Brunswick",
"shapeLink": "/storage/shapes/stm/2080104.json",
"shapeId": "2080104",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 10:50:04",
"meta": {},
"updatedAt": "2024-03-28 10:09:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 823,
"ref": "28125",
"isActive": false,
"label": "28125",
"timestamp": 1711628444,
"tripId": "274240824",
"routeId": "196",
"startTime": "07:27:00",
"position": {
"lat": 45.43751,
"lon": -73.69168
},
"bearing": 350,
"speed": 36,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240824",
"headsign": "196-S",
"shortName": null,
"routeColor": "#781B7D",
"routeTextColor": "#FFFFFF",
"routeShortName": "196",
"routeLongName": "Parc-Industriel-Lachine",
"shapeLink": "/storage/shapes/stm/1960207.json",
"shapeId": "1960207",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 01:13:10",
"meta": {},
"updatedAt": "2024-03-28 08:22:12",
"agencyName": "Société de transport de Montréal"
},
{
"id": 163,
"ref": "28126",
"isActive": false,
"label": "28126",
"timestamp": 1711576823,
"tripId": "274240280",
"routeId": "164",
"startTime": "17:10:00",
"position": {
"lat": 45.50399,
"lon": -73.73469
},
"bearing": 134,
"speed": 39,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274240280",
"headsign": "164-O",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "164",
"routeLongName": "Dudemaine",
"shapeLink": "/storage/shapes/stm/1640153.json",
"shapeId": "1640153",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-27 18:03:09",
"agencyName": "Société de transport de Montréal"
},
{
"id": 2138,
"ref": "28127",
"isActive": false,
"label": "28127",
"timestamp": 1711634156,
"tripId": "274242283",
"routeId": "209",
"startTime": "09:05:00",
"position": {
"lat": 45.45424,
"lon": -73.75297
},
"bearing": 9,
"speed": 4,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274242283",
"headsign": "209-S",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "209",
"routeLongName": "Des Sources",
"shapeLink": "/storage/shapes/stm/2090078.json",
"shapeId": "2090078",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 12:45:27",
"meta": {},
"updatedAt": "2024-03-28 10:07:07",
"agencyName": "Société de transport de Montréal"
},
{
"id": 164,
"ref": "28128",
"isActive": true,
"label": "28128",
"timestamp": 1711638396,
"tripId": "274241127",
"routeId": "200",
"startTime": "10:41:00",
"position": {
"lat": 45.45686,
"lon": -73.82873
},
"bearing": 54,
"speed": 41,
"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": [
1,
2,
3,
22
],
"tags": [
8
],
"trip": {
"id": "274241127",
"headsign": "200-E",
"shortName": null,
"routeColor": "#009EE0",
"routeTextColor": "#FFFFFF",
"routeShortName": "200",
"routeLongName": "Sainte-Anne-de-Bellevue",
"shapeLink": "/storage/shapes/stm/2000093.json",
"shapeId": "2000093",
"serviceId": "24M-H60M000S-80-S",
"blockId": null
},
"createdAt": "2019-11-22 00:14:35",
"meta": {},
"updatedAt": "2024-03-28 11:07:16",
"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": [
1,
2,
3,
22
],
"tags": [
5
],
"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=30",
"prev": null,
"next": "https://api.transittracker.ca/v2/vehicles?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 30,
"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=29",
"label": "29",
"active": false
},
{
"url": "https://api.transittracker.ca/v2/vehicles?page=30",
"label": "30",
"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": 14685
}
}
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: 28
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": [
1,
2,
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.