-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRutgers_Maps.py
131 lines (113 loc) · 5.26 KB
/
Rutgers_Maps.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
import math
import numpy
import googlemaps
import json
import requests
from datetime import datetime, timedelta
import heapdict
def stopsToSearch(stop):
listOfDoubles = ["Allison Road Classrooms", "Science Building", "Werblin Main Entrance", "Weblin Recreation Center", "SoCam Apts (NB)", "SoCam Apts (SB)"]
if stop in listOfDoubles:
if stop == "Allison Road Classrooms":
return ["Allison Road Classrooms", "Science Building"]
elif stop == "Science Building":
return ["Allison Road Classrooms", "Science Building"]
elif stop == "Werblin Main Entrance":
return ["Werblin Main Entrance", "Weblin Recreation Center"]
elif stop == "Weblin Recreation Center":
return ["Werblin Main Entrance", "Weblin Recreation Center"]
elif stop == "SoCam Apts (NB)":
return ["SoCam Apts (NB)", "SoCam Apts (SB)"]
elif stop == "SoCam Apts (SB)":
return ["SoCam Apts (NB)", "SoCam Apts (SB)"]
else:
return [stop]
return [stop]
#load all bus stop coordinates
bus_stops = {}
with open("Bus_Stops_locations.txt") as f:
for line in f:
line = line.rstrip()
lat, lng = tuple(next(f).split(", "))
bus_stops[line] = (float(lat)), (float(lng))
# Get user input and store it in a variable
user_input_origin = input("Enter your origin address: ")
user_input_destination = input("Enter your destination address: ")
# Display the user input
print("This is your origin address: ", user_input_origin)
print("This is your destination address: ", user_input_destination)
gmaps = googlemaps.Client(key='AIzaSyAM-OL61bAhosULEJcT9sxONxjyw-bjo60')
geocode_result = gmaps.geocode(user_input_origin)
origin_lat = geocode_result[0]['geometry']['location']['lat']
origin_lng = geocode_result[0]['geometry']['location']['lng']
geocode_result = gmaps.geocode(user_input_destination)
dest_lat = geocode_result[0]['geometry']['location']['lat']
dest_lng = geocode_result[0]['geometry']['location']['lng']
closest_origin = heapdict.heapdict()
closest_destination = heapdict.heapdict()
now = datetime.now()
for stop, coordinates in bus_stops.items():
leg_o = gmaps.directions((origin_lat, origin_lng), coordinates, mode="walking", departure_time=now)
leg_d = gmaps.directions(coordinates, (dest_lat, dest_lng), mode="walking", departure_time=now)
closest_origin[stop] = leg_o[0]['legs'][0]['distance']['value']
closest_destination[stop] = leg_d[0]['legs'][0]['distance']['value']
url = "https://store.transitstat.us/passio_go/rutgers" # website from transitstat.us
# Make an HTTP GET request to the URL
response = requests.get(url)
# Check if the request was successful (status code 200)
if response.status_code == 200:
# Assuming `response` is the response object from a web request
# columns = ['bus_id', 'line', 'lineCode', 'dest', 'stationID', 'stationName', 'actualETA', 'noETA']
data = response.json()['trains']
# print(data)
else:
print(f"Error: Unable to retrieve data. Status code: {response.status_code}")
print(closest_origin.peekitem())
print(closest_destination.peekitem())
walkingArrivalTime = datetime.now() + timedelta(seconds=closest_origin.peekitem()[1])
# print(walkingArrivalTime)
closest_o = closest_origin.peekitem()[0]
closest_d = closest_destination.peekitem()[0]
routes = []
origin_stops = stopsToSearch(closest_o)
print(origin_stops)
destination_stops = stopsToSearch(closest_d)
print(destination_stops)
for bus in data:
origin_included = False
destination_included = False
setOfETA = []
for prediction in data[bus]['predictions']:
ETA = datetime.fromtimestamp(prediction['actualETA']/1000)
# print(bus, prediction['stationName'], ETA)
if len(origin_stops) > 1:
if prediction['stationName'] == origin_stops[0] or prediction['stationName'] == origin_stops[1]:
origin_included = True
setOfETA.append((prediction['stationName'], ETA))
else:
if prediction['stationName'] == closest_o:
origin_included = True
setOfETA.append((closest_o, ETA))
if len(destination_stops) > 1:
if prediction['stationName'] == destination_stops[0] or prediction['stationName'] == destination_stops[1]:
destination_included = True
setOfETA.append((prediction['stationName'], ETA))
else:
if prediction['stationName'] == closest_d or data[bus]['dest'] == closest_d:
destination_included = True
setOfETA.append((closest_d, ETA))
# print(origin_included, destination_included)
if origin_included and destination_included:
routes.append((bus, data[bus]['line'], setOfETA))
totalTime = None
busToTake = None
# for route in routes:
# totalTime = heapdict.heapdict()
# for route in routes:
# a, b = route[2][0], route[2][1]
# if a[0] == closest_o and a[1] > walkingArrivalTime and a[1] < b[1]:
# totalTime[route[0]] = (b[1] - a[1]) + timedelta(seconds=leg_d[0]['legs'][0]['duration']['value'])
# elif b[0] == closest_o and b[1] > walkingArrivalTime and b[1] < a[1]:
# totalTime[route[0]] = (a[1] - b[1]) + timedelta(seconds=leg_d[0]['legs'][0]['duration']['value'])
# print(totalTime.peekitem())
print(routes)