Skip to main content
Solved

Can anyone please mention which transformer is useful to identify undershoot

  • April 2, 2021
  • 2 replies
  • 35 views

Can anyone please mention which transformer is useful to identify undershoot

Best answer by jdh

Alternatively, I use the TopologyBuilder and then test for nodes with only one edge (aka dangle nodes) and merge them back on to the edges (lines) based on edge id. There are then various things I can test these dangle lines for.

If they are very short, they are probably an overshoot.

 

A NeighbourFinder will give the distance and direction to nearby lines. This allows more granular logic in determining whether a dangle line is a true undershoot or a legitimate dead end. For example if the line is a residential street, and the only other line within tolerance is a closed access highway, chances are, that the residential line is not supposed to connect.

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

2 replies

caracadrian
Contributor
Forum|alt.badge.img+23
  • Contributor
  • April 2, 2021

Use Snapper, LineOnLineOverlayer and Tester (test for _overlaps=1)

You snap undershoots/undershorts, line on line the original and the snapped line (you need to create some unique identifiers for the lines to use GroupBy in LOLO) then test for features witch overlap a single time (the undershoots).

Snap and test


jdh
Contributor
Forum|alt.badge.img+40
  • Contributor
  • Best Answer
  • April 5, 2021

Alternatively, I use the TopologyBuilder and then test for nodes with only one edge (aka dangle nodes) and merge them back on to the edges (lines) based on edge id. There are then various things I can test these dangle lines for.

If they are very short, they are probably an overshoot.

 

A NeighbourFinder will give the distance and direction to nearby lines. This allows more granular logic in determining whether a dangle line is a true undershoot or a legitimate dead end. For example if the line is a residential street, and the only other line within tolerance is a closed access highway, chances are, that the residential line is not supposed to connect.