I have a table full of point geometries that display normally in GIS clients. I want to group the points on an attribute (groupid) and create convex hulls around those. Seems straightforward, but getting an unexpected result: a 'geometry' field with mix of points, linestrings and polygons. I was expecting only polygons, and maybe for groups with a count of 1 to be ignored. Any ideas?
The query:
SELECT groupid, ST_ConvexHull(ST_Collect(geom))) As hull_geom into hulledpoints
FROM somepoints
GROUP BY groupid;
The easiest way to ensure that you only have polygons is to ensure that you only take the convex hull of groups where the groupid count is greater than 2.
This is because the convex hull of two points is a linestring, while the convex hull of a point is that same point, eg,
which returns LINESTRING(1 1,2 2).
If you wanted to use a geometric rather than a sql approach, you could check the returned hulls were polygons. The following example returns nothing, as although there are three points, two are coincident, so the convex hull will still be a linestring.
In your original example, you would write the above query along the lines of,