How about the Aggregator with a Group By? Or does your outer polygon have to be contiguous?
Does the red line drawn in the second image illustrate the required "outer boundary" for group A? Should the separate parts (like islands) be connected as shown in your image?
How about the Aggregator with a Group By? Or does your outer polygon have to be contiguous?
yes red is the result I need. outer polygon should be contiguous.
create hull grouped by attribute. You get 4 hulls, a,b,c,d
Clipp each hull by the other parcell area areas. So clip Hull a by parcells b,c,d (u can use an "IN" test).
Then you need to clip the resulting area by eachother. Using for instance a AreaOnArea overlayer and test for overlaps = 0
(of course you might end up with more then 4 areas depending on the complexity of the Hull shape. Then a way to avoid or minimize that is to do a buffer on the hulls prior to the aforementioned process.)