Skip to main content

i need to convert points to polygons. the points witch belong to the same polygon have the same id_parcel.i need to find a way to generate polygons based on this identifient(id_parcel)

Hi @nazlii. A suggested approach to get you started:

 

1) Use reader or VertexCreator to make points

 

2) Use Sorter to sort by attribute

 

3) LineBuilder next to create polygons, setting Connection Break Attribute to your attribute

Hi @nazlii. A suggested approach to get you started:

 

1) Use reader or VertexCreator to make points

 

2) Use Sorter to sort by attribute

 

3) LineBuilder next to create polygons, setting Connection Break Attribute to your attribute
additional to the procedure above, probably you will have to close the resulting line with the LineCloser to make a polygon.

 

 


Also, have a look at the discussion in this similar item:

issue-with-converting-points-to-polygon


Reply