Skip to main content

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.

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.


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.


Reply