Skip to main content
Question

Is there a transformer in FME that can build sector polygons based on coordinates provided.

  • April 5, 2018
  • 2 replies
  • 15 views

Is there a transformer in FME that can build sector polygons based on coordinates provided.

 

 

e.g. Source data has 10,000 point geometries. Output needs to be list of polygons with no more than 500 points within the polygon.

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

daveatsafe
Safer
Forum|alt.badge.img+19
  • Safer
  • 1637 replies
  • April 5, 2018

Hi @shankarvishwana,

Please try the following steps:

1. Use a PointCloudCombiner to create a pointcloud from the points.

2. Use the PointCloudDensityTiler transformer to break separate point clouds with a maximum number of points of 500. If this transformer is not available in Workbench, it can be downloaded from FME Hub.

3. Use a CenterPointReplacer to replace each point cloud with its center point.

4. Use the VoronoiDiagrammer on the center points to create the sector polygons.


  • Author
  • 1 reply
  • April 10, 2018

Thank you very much. Followed your steps and the result was awesome!!

Thanks.