Skip to main content
Solved

Point on polygon analysis and list all the records under each polygon without merging duplicates

  • November 3, 2017
  • 3 replies
  • 17 views

Hi, I want to do a point on polygon analysis and list all the records under each polygon without merging duplicate properties.

I’m using Spatial Filter to find the properties within a given area. It’s giving the correct output if I send one record at a time. But when I send all the area records to Spatial Filter it merge duplicate properties (candidates) to a one record.

I’ve change parameters on the Spatial filter but failed to get the expected output. Can someone please help me?

Area record and relevant properties

Area ID Property 1 A 1 B 1 C

Area ID Property 2 C 2 D 2 E

Expected Output

Area ID Property 1 A 1 B 1 C 2 C 2 D 2 E

Expecting 6 properties, not 5 properties after merging the duplicated property C.

Thank you.

Best answer by erik_jan

Have a look at the PointonAreaOverlayer, using the point output port.

Exactly what it is built for.

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

erik_jan
Contributor
Forum|alt.badge.img+22
  • Contributor
  • 2179 replies
  • Best Answer
  • November 3, 2017

Have a look at the PointonAreaOverlayer, using the point output port.

Exactly what it is built for.


redgeographics
Celebrity
Forum|alt.badge.img+60
  • Celebrity
  • 3704 replies
  • November 3, 2017

Have a look at the PointonAreaOverlayer, using the point output port.

Exactly what it is built for.

And in addition to @erik_jan's answer: the PointOnAreaOverlayer can create a list, if you then use a ListExploder you'll get your 2 copies for points that fall on the boundary of 2 areas.

 


  • Author
  • 1 reply
  • November 6, 2017

Thank you very much for the replies. By using PointonAreaOverlayer and using ListExploder I've managed to get properties for each area separately.

As I have polygons and points as input I need to make few changes.Probably a buffer for point to make it a area.