Skip to main content
Question

I have a road network with streetnames i want to check some gaps in the continuity of the streetnames

  • March 9, 2018
  • 3 replies
  • 34 views

Forum|alt.badge.img

I have a road network with streetnames i want to check some gaps in the continuity of the streetnames

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.

3 replies

jdh
Contributor
Forum|alt.badge.img+37
  • Contributor
  • 2002 replies
  • March 9, 2018

You can use a LineCombiner (LineJoiner) grouped by streetname, followed by an Aggregator with the same group by. If the count attribute is greater than one, then you have discontinuous streets.


Forum|alt.badge.img
  • Author
  • 12 replies
  • March 10, 2018

Hy Guys

thx

I tried to use these transformers but I received a strange result

Count more than 1 but no gaps present except at the end but I think it is normal ...

see bmp

test.png


takashi
Celebrity
  • 7843 replies
  • March 10, 2018

Because the street is a network which consists of several branches, rather than a single polyline. If you need to determine if the branches exactly connect each other at the nodes (junctions), send them to the NetworkTopologyCalculator (Group By: street name), then check if the network ID (which is generated by the transformer) is unique or not for each street. If there are two or more network IDs for an identical street, there should be gaps at some nodes.