Skip to main content
Solved

Would like to find out the points which is not exactly placed on the vertex of its associated line.

  • September 18, 2017
  • 2 replies
  • 33 views

My DB contains line (say street network) and points (say Bus Stops), the points has to be placed on the vertex of the lines.

Would like to find out all those points which is not placed on the vertex of the snapped line.

Best answer by fmelizard

Hi @ujjwalpakhare, this Q&A; post ("I would like to find out point which does not intersect with line"), will provide you with some transformers that you can use to test for this.

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

fmelizard
Safer
Forum|alt.badge.img+20
  • Safer
  • 3719 replies
  • Best Answer
  • September 18, 2017

Hi @ujjwalpakhare, this Q&A; post ("I would like to find out point which does not intersect with line"), will provide you with some transformers that you can use to test for this.


takashi
Celebrity
  • 7843 replies
  • September 18, 2017

Hi @ujjwalpakhare, decompose the lines into individual vertices with a Chopper (Mode: By Vertex, Maximum Vertices: 1), then use a SpatialFilter to filter the bus stop points (Candidate) by the line vertices (Filter). Bus stops that doesn't match a vertex of lines will be output via the Failed port of the SpatialFilter.