Question

Spatial join with keeping the attributes of all the intersected feature...


Badge +2

Hi

I have 2 feature class, I want to add the attributes from (the green polygons to the other feature class the red polygon) based on the location (Spatial join), is there any way to do this?

 

intersection


2 replies

Userlevel 1
Badge +21

Yes, a spatial relator can be used. As the red polygon relates to 3 different features, you'll need to choose to build a list within the transformer and then choose how you want to treat the list to add the attributes to the red polygon.

 

i.e. if you want the red polygon to have an attribute containing 'A,B,C' you would build a list of the names and then use a listconcatenator

Badge +2

Yes, a spatial relator can be used. As the red polygon relates to 3 different features, you'll need to choose to build a list within the transformer and then choose how you want to treat the list to add the attributes to the red polygon.

 

i.e. if you want the red polygon to have an attribute containing 'A,B,C' you would build a list of the names and then use a listconcatenator

Thanks a lot...

Reply