Skip to content

Commit

Permalink
#1065 add bike exits filter to volumes_daily_unfiltered insert
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielwol committed Sep 9, 2024
1 parent c6f03a9 commit 7c275ec
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,13 @@ BEGIN
v.datetime_bin >= start_date
AND v.datetime_bin < end_date
AND v.intersection_uid = ANY(target_intersections)
--exclude bike exits
AND NOT (
classification_uid = 10
AND movement_uid = 8
)
--exclude bikes in crosswalk
AND NOT (classification_uid = 7)
GROUP BY
v.intersection_uid,
v.classification_uid,
Expand Down

0 comments on commit 7c275ec

Please sign in to comment.