Convex Hull
convex_toolComputes the smallest convex polygon containing a set of points for bounding area analysis, coverage estimation, or location wrapping. Works offline without API calls.
Instructions
Compute the convex hull of a set of points — the smallest convex polygon that contains all the points. Useful for bounding area analysis, estimating coverage area, or wrapping a set of locations. Works offline without API calls.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| points | Yes | Points to compute the convex hull from (minimum 3) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| geometry | Yes | GeoJSON Polygon geometry of the convex hull, or null if hull could not be computed | |
| num_points | Yes | Number of input points used |