Hello,
I'm trying to find an elegant solution for a feature merge based on the same list, twice.
So, data is a shapefile with polygons as features. Each polygon have a _class{}.ID list. The goal is to compare each _class{n}.ID to other polygons (not itself) _class{n}.ID (nmax is different for each polygon), to finally agglomerate their geometry.
Issue is that ListBasedFeatureMerger takes attributes as supplier key and not lists.
Example:
NAMEÂ
_class{0}.IDÂ
_class{1}.IDÂ
_class{2}.IDÂ
OscarÂ
27Â
92Â
1Â
TangoÂ
1Â
Â
Â
CharlieÂ
<Missing>Â
<Missing>Â
<Missing>Â
GolfÂ
22Â
12Â
Â
WhiskeyÂ
92Â
Â
Â
HotelÂ
137Â
4Â
6Â
Â
So here, Oscar, Tango and Whiskey would be agglomerated.
How could that be done ?
Thanks