Skip to content

Commit 4ff6d18

Browse files
[BUG] Modify Hall Shuttle Stop & Entrance Coordinates (#209)
* modify hall coordinates * Fix inter campus polyline and SGW shuttle stop coords --------- Co-authored-by: Marian-Hristov <marianhr2014@gmail.com>
1 parent 1a9308e commit 4ff6d18

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

data/buildings/polygons/H.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
]
2525
],
2626
"location": {
27-
"latitude": 45.4973223,
28-
"longitude": -73.5790288
27+
"latitude": 45.4971404,
28+
"longitude": -73.5787654
2929
},
3030
"buildingCode": "H",
3131
"buildingName": "Henry F. Hall Building",

utils/directions.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ import { getConcordiaShuttleSchedule } from "@/utils/getShuttleSchedule";
44
import isEqual from "lodash.isequal";
55

66
const ROUTES_BASE_URL = "https://routes.googleapis.com/directions/v2:computeRoutes";
7-
export const interCampusPolyline = "adutGxhb`MvpFnhJ"; // Formatted Map Polyline for the shuttle route between the two campuses
7+
export const interCampusPolyline = "crmtGnnm`McpFatJ"; // Formatted Map Polyline for the shuttle route between the two campuses
88
export const LOY_STOP_COORD: Coordinate = {
9-
latitude: 45.4584539,
10-
longitude: -73.6389287,
9+
latitude: 45.458417,
10+
longitude: -73.638317,
1111
};
1212
export const SGW_STOP_COORD: Coordinate = {
13-
latitude: 45.4971279,
14-
longitude: -73.5805579,
13+
latitude: 45.496997,
14+
longitude: -73.578633,
1515
};
1616
const DISTANCE_BETWEEN_CAMPUSES = 6700;
1717
const shuttleTransitTime = 30 * 60;

0 commit comments

Comments
 (0)