跳转至
🎉 SedonaDB 0.4.0 已正式发布!🗺️ 新增 Python DataFrame API、R dplyr 接口、Geography 支持及 GPU 加速空间连接。阅读发布博客 →

ST_ConvexHull

Introduction: Return the Convex Hull of polygon A

ST_ConvexHull

Format: ST_ConvexHull (A: Geometry)

Return type: Geometry

Since: v1.5.0

Example:

SELECT ST_ConvexHull(ST_GeomFromText('POLYGON((175 150, 20 40, 50 60, 125 100, 175 150))'))

Output:

POLYGON ((20 40, 175 150, 125 100, 20 40))