Skip to content

Commit

Permalink
Make date a string
Browse files Browse the repository at this point in the history
It's just a grouping var anyway and this makes the intermediate python output easier to read
  • Loading branch information
Nate-Wessel committed Jun 12, 2024
1 parent e46e8fe commit 786f557
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/app/get_travel_time.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def get_travel_time(start_node, end_node, start_time, end_time, start_date, end_
query = f'''
SELECT
link_dir,
dt,
dt::text,
extract(HOUR FROM tod) AS hr,
mean::real AS speed_kmph
FROM here.ta
Expand Down

0 comments on commit 786f557

Please sign in to comment.