-
Notifications
You must be signed in to change notification settings - Fork 0
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
Congestion Network 2: Validate Network #67
Comments
Might add identifying segments with low/no data and doing a little investigation per https://github.com/Toronto-Big-Data-Innovation-Team/rapidto/pull/38#issuecomment-1284227182 |
I think two of these tables are names wrong:
|
There are concerns that some meaningful segments of streets may be missing due to road classification.
|
Should I be looking at |
I found a few issues with Please see the following example from the CafeTO project for more clarifications and details. As it can be seen in the output table, some segments such 1172 and 1173 have incorrect vids. Their start_vid and or end_vid represent segment sets rather than individual segment.
|
Listed layers that needs to be validated and suggest validation methods.
Network Segments
congestion.network_segments
Layer of the congestion network segments
Check for length, see if there are super short or super long segments and if they are valid
Check for
link_dir
that makes up a segment, are there any cases of duplicated link_dir?Is the length correct? Summing up link_dir's length to double check
congestion.network_links_22_2
(the lookup table)Is the highway label correct? Are the segments labeled as highway actually highways? (can check with centreline)
Are there any segments with no direction tagged?
Network Nodes
congestion.network_nodes
Layer contains nodes that make up each network segment
If all the nodes are used in the network segment table
Are there duplicate nodes?
Centreline int_id and HERE node matching
network_int_px_22_2
Centreline segments
congestion.centreline_segments
Layer contains sets of geo_ids that represents each segments.
Compare the length of the segments and the length of the centreline, there is a lookup table created in
congestion.segment_centreline_lookup
that has segment set length and centreline set length for comparisonIf segment_ids were used more than once incorrectly
Centreline segments
congestion.centreline_segments_name
Layer contains sets of geo_ids that represents each segments + Street name
Are the names correct?? There are arrays of street_name, if its more than 2 its kinda weird and should be investigated
any null name ?
The text was updated successfully, but these errors were encountered: