Skip to main content
Question

How to identify polygons that intersect and or overlap each other and collect the feature attribution from the overlaps?

  • February 15, 2016
  • 3 replies
  • 105 views

ngstoke
Contributor
Forum|alt.badge.img+1

I have 2 polygon shapefiles. I want to identify polygons (A,B,C.... labeled in JPG) that intersect with another set of polygons (Abstract #1, #2, #3,#4). Once the Abstract polygons that intersect are identified, I'd like to merge just the attributions from these into the A,B,C polygons.

I'm attempting to use the SpatialRelator but I'm having difficulties.

Single Shapfile with this attribution:

Polygon A ---(Abstract 1,2,3,4)

Polygon B---(Abstract 1,2,4)

 

Thanks in advance

 

 

 

 

 

 

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+26
  • Contributor
  • February 16, 2016

AreaonAreaOverlayer is the transformer that you want to use.

It will merge the attributes and clip if the polygons overlap partly.


erik_jan
Contributor
Forum|alt.badge.img+26
  • Contributor
  • February 16, 2016

AreaonAreaOverlayer is the transformer that you want to use.

It will merge the attributes and clip if the polygons overlap partly.

And if you do not want to Clip the polygons, the SpatialFilter transformer can be used.


mark2atsafe
Safer
Forum|alt.badge.img+59
  • Safer
  • February 16, 2016

I'd try a different test, just to prove that it is working. Also, I wonder if there are aggregate features there? Try putting a Deaggregator transformer before the SpatialRelator?