Skip to main content

Green icon with white hexagon inside. That hexagon has arrows pointing to a white circle inside the hexagon. Poly-Build Tool

One Tool Example

Poly-Build has a One Tool Example. Visit Sample Workflows to learn how to access this and many other examples directly in Alteryx Designer.

Use Poly-Build tool to take a group of spatial point objects and draw a polygon or polyline in a specific sort order to represent that group of points.

This tool can also be used for spatial layer development by translating a collection of GPS data into polygon or polyline objects, where a polygon is a simple bounded region, such as a state boundary, and a polyline contains multiple line segments with any number of points between its start and endpoints, such as a river or road.

Use to create a Convex Hull polygon representation for a set of points. See the ConvexHull_TradeArea.yxmd from the Spatial Samples directory.

Configure the Tool

  1. BuildMethod: Select what shape is built.

    • ConvexHull: The Convex Hull polygon is the smallest convex polygon that can be drawn to include a set of points. The polygon does not contain any concave angles, so it never turns in on itself.

    • SequencePolygon: The polygon is drawn based on all the points within their sequential order.

    • SequencePolyline: The polyline is drawn based on all the points within their sequential order.

  2. Depending on the Build mode chosen, you need to populate a series of dropdown lists with the appropriate field name with respect to their data stream.

    • SourceField: These are the points the tool is using to create the polygon object.

    • GroupField: The group field should be the field that represents the poly object, so all the records that fall into the group will make up one poly object.

    • SequenceField: The sequence field is what the tool uses to draw the poly object. It sorts the records based on the sequence field and uses that order to draw the poly object.