Solved

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

  • 18 September 2017
  • 2 replies
  • 1 view

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.

icon

Best answer by fmelizard 18 September 2017, 17:48

View original

2 replies

Userlevel 4
Badge +13

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.

Userlevel 2
Badge +17

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