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

ST_Polygon

Introduction: Function to create a polygon built from the given LineString and sets the spatial reference system from the srid

ST_Polygon

Format: ST_Polygon(geom: Geometry, srid: Integer)

Return type: Geometry

Since: v1.5.0

SQL Example

SELECT ST_AsText( ST_Polygon(ST_GeomFromEWKT('LINESTRING(75 29 1, 77 29 2, 77 29 3, 75 29 1)'), 4326) );

Output:

POLYGON((75 29 1, 77 29 2, 77 29 3, 75 29 1))