Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch data source to ta_path #183

Open
wants to merge 1 commit into
base: deploy
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions backend/app/get_travel_time.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def get_travel_time(start_node, end_node, start_time, end_time, start_date, end_
holiday_clause = ''
if not include_holidays:
holiday_clause = '''AND NOT EXISTS (
SELECT 1 FROM ref.holiday WHERE ta.dt = holiday.dt
SELECT 1 FROM ref.holiday WHERE ta_path.dt = holiday.dt
)'''

# if end_time is less than the start_time, then we wrap around midnight
Expand All @@ -75,7 +75,7 @@ def get_travel_time(start_node, end_node, start_time, end_time, start_date, end_
dt::text,
extract(HOUR FROM tod)::smallint AS hr,
mean::real AS speed_kmph
FROM here.ta
FROM here.ta_path
WHERE
link_dir = ANY(%(link_dir_list)s)
AND (
Expand Down
Loading