ClearSKY FaviconClearSKY Polygon Tools
Back to Glossary

Convex hull

The smallest convex polygon that fully contains a geometry (think: a tight rubber band around it).

Category: Geometry · Also known as: minimum convex polygon, convex hull polygon, ST_ConvexHull

Definition (expanded)

A convex hull is a simplified outline with no inward dents. It is often used for quick approximations, coarse filtering, or as a first-pass shape for analysis. Convex hulls ignore holes and concavities by design, so they can overestimate area for concave shapes.

Examples

PostGIS convex hull

SQL

SELECT ST_AsText(ST_ConvexHull(geom)) FROM my_table;

Common mistakes