Hello everyone, and thank you for looking!
I am asking your help on an operation that I would like to do, but I am unsure how to do it in FME.
I have a table such as this:
ID AREA VILLAGE
1 232 Oxenfurt
1 452 Las Vegas
1 923 New York
2 124 Jacksonville
2 298 Charlotte
3 767 Las Vegas
3 422 Charlotte
3 223 Oxenfurt
etc...
What I want to get is table where ID is unique with a single VILLAGE entry, selected based on the maximum value of the AREA entry, and all other entries with the same ID removed. Taking the above table as example, the result that I would like would be:
ID AREA VILLAGE
1 923 New York
2 298 Charlotte
3 767 Las Vegas
etc...
How do I achieve this? Note that the input also has polygons, but those do not matter; I want to only have a resulting list of unique ID with the VILLAGE that has the highest AREA only, and delete the others.