ST_HasArc — 测试几何图形是否包含圆弧
boolean ST_HasArc(
geometry geomA)
;
如果几何或几何集合包含圆形字符串,则返回 true
可用性:1.2.3?
该函数支持 3d 并且不会丢失 z-index。
此方法支持圆形字符串和曲线。
SELECT ST_HasArc(ST_Collect('LINESTRING(1 2, 3 4, 5 6)', 'CIRCULARSTRING(1 1, 2 3, 4 5, 6 7, 5 6)')); st_hasarc -------- t