Skip to main content
Question

How to stop RasterToPolygonCoercer from aggregating cells into larger polygons when neighboring cell values are the same?

  • November 14, 2014
  • 2 replies
  • 67 views

makt
Contributor
Forum|alt.badge.img+1
It seems that by default that RasterToPolygonCoercer transformer joins polygons if they have the same value as the neighbouring cell, as seen below:

 

 

And there seems to be no option in the RasterToPolygonCoercer to stop it from doing this.

 

 

What is the simplest way I can fix or avoid this aggregation of cells to larger polygons - either by using a different transformer(s) to coerce the raster, or by further processing the polygon output? 
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.

2 replies

takashi
Celebrity
  • November 14, 2014
Hi,

 

 

You can use the RasterCellCoercer transformer to transform a raster into individual cell polygons. Set "Polygons" to the "Output Cell Geometry" parameter.

 

 

Takashi

makt
Contributor
Forum|alt.badge.img+1
  • Author
  • Contributor
  • November 14, 2014
ah yes, I forgot about the RastercellCoercer! Thanks!