ST_HasArc — Tests if a geometry contains a circular arc
boolean ST_HasArc(
geometry geomA)
;
Restituisce TRUE se la geometria è una geometrycollection, un poligono o un punto vuoto, ecc.
Disponibilità: 2.0
Questa funzione supporta il 3d e non distrugge gli z-index.
Questo metodo supporta le Curve e le Circular String.
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