Skip to main content
Solved

Equivalent of the ArcGIS "Eliminate"

  • February 13, 2019
  • 6 replies
  • 190 views

Hello everybody, im looking for a transformer that replace the "eleminate of Arcgis", i want to merge the small polygone (less than 5000m2) with neighboring polygons that have the largest area or the longest shared border.

i heard that sliver remover can do it but im not sure

Thanks

Best answer by markatsafe

@hafida115 In FME 2018 the SliverRemover was replaced by the AreaGapAndOverlapCleaner. To expand on @danilo_fme 's comment. You could try using the AreaCalculator & TestFilter to drop the polygon's with areas less than 5000m2 , and then try using the AreaGapAndOverlapCleaner to fill in the holes left behind.

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

6 replies

danilo_fme
Celebrity
Forum|alt.badge.img+51
  • Celebrity
  • 2077 replies
  • February 13, 2019

Hi @hafida115

There is the transformer Dissolver that merge all polygons that are touching.

Before this Dissolver, I suggest you to use the transformer AreaCalculator and after the Tester to filter polygons less than 5000m2.

 

Thanks,

Danilo


ebygomm
Influencer
Forum|alt.badge.img+44
  • Influencer
  • 3429 replies
  • February 13, 2019

Do you want to merge by largest area or longest shared border, one is more straightforward than the other in fme


  • Author
  • 4 replies
  • February 13, 2019

Hi @hafida115

There is the transformer Dissolver that merge all polygons that are touching.

Before this Dissolver, I suggest you to use the transformer AreaCalculator and after the Tester to filter polygons less than 5000m2.

 

Thanks,

Danilo

sorry im new on fme can you explain me how the dissolver work?

thanks


Forum|alt.badge.img+2
  • 1891 replies
  • Best Answer
  • February 13, 2019

@hafida115 In FME 2018 the SliverRemover was replaced by the AreaGapAndOverlapCleaner. To expand on @danilo_fme 's comment. You could try using the AreaCalculator & TestFilter to drop the polygon's with areas less than 5000m2 , and then try using the AreaGapAndOverlapCleaner to fill in the holes left behind.


  • Author
  • 4 replies
  • February 13, 2019

@hafida115 In FME 2018 the SliverRemover was replaced by the AreaGapAndOverlapCleaner. To expand on @danilo_fme 's comment. You could try using the AreaCalculator & TestFilter to drop the polygon's with areas less than 5000m2 , and then try using the AreaGapAndOverlapCleaner to fill in the holes left behind.

thanks the AreaGapAndOverlapCleaner work


danilo_fme
Celebrity
Forum|alt.badge.img+51
  • Celebrity
  • 2077 replies
  • February 14, 2019

@hafida115 In FME 2018 the SliverRemover was replaced by the AreaGapAndOverlapCleaner. To expand on @danilo_fme 's comment. You could try using the AreaCalculator & TestFilter to drop the polygon's with areas less than 5000m2 , and then try using the AreaGapAndOverlapCleaner to fill in the holes left behind.

Thanks @MarkAtSafe to help us with this case.