Skip to content

Commit

Permalink
#57 update network int px layer to exclude dist > 25m match
Browse files Browse the repository at this point in the history
  • Loading branch information
chmnata committed Jul 5, 2022
1 parent a40162f commit 7a7ec5e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions congestion_network_creation/network_int_px.sql
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,9 @@ order by dist desc;

COMMENT ON TABLE congestion.network_int_px_21_1
IS 'Lookup table containing nodes used in routing network and its equivalent centreline intersection id and px. Based on 21_1 map version nodes. ';


-- Ended up deleting matched nodes and ints where the distance between them were more than 25m
-- Next time should use a buffer when matching nodes to ints
DELETE FROM congestion.network_int_px_21_1
where dist > 25

0 comments on commit 7a7ec5e

Please sign in to comment.