I have two datasets, one with 'old' parcels and one with 'new' parcels. I need to find out which old parcels turned into new ones and come up with a was - is list.
Desired output:
feature OLD parcel XX712 with a list with new parcel attribute(s): 557, 516
feature OLD parcel XX713 with a list with new parcel attribute(s): 584
feature OLD parcel XX713 with a list with new parcel attribute(s): 584
feature OLD parcel XX621 with a list with new parcel attribute(s): 189
What I have tried so far using the SpatialRelator with spatial predicates:
Contains, Within, Equals
Only works for parcels that stayed the same geometry wise. It is possible that geometry changed, see the example in the screenshots.
Intersects
This works but its giving me too much suppliers. When a parcel geometry has stayed the same its giving me a supplier from the parcel next to it because the outer lines are touching.
Touches
Giving me only the touching parcel to the side
Am I doing something wrong with the settings in the SpatialRelator? Or am I using the wrong transformer? Any ideas to nudge me in the right direction are appriciated.