Name

ST_IsRing — Prüft, ob ein LineString geschlossen und einfach ist.

Synopsis

boolean ST_IsRing(geometry g);

Beschreibung

Liefert TRUE wenn dieser LINESTRING sowohl ST_IsClosed (ST_StartPoint(g) ~= ST_Endpoint(g)) als auch ST_IsSimple (schneidet sich nicht selbst) ist.

Diese Methode implementiert die OGC Simple Features Implementation Specification for SQL 1.1. 2.1.5.1

Diese Methode setzt die SQL/MM-Spezifikation um. SQL-MM 3: 7.1.6

[Note]

SQL-MM gibt vor, daß das Ergebnis vonST_IsRing(NULL) der Wert 0 sein soll, während PostGIS den Wert NULL zurückgibt.

Beispiele

SELECT ST_IsRing(geom), ST_IsClosed(geom), ST_IsSimple(geom)
FROM (SELECT 'LINESTRING(0 0, 0 1, 1 1, 1 0, 0 0)'::geometry AS geom) AS foo;
 st_isring | st_isclosed | st_issimple
-----------+-------------+-------------
 t         | t           | t
(1 row)

SELECT ST_IsRing(geom), ST_IsClosed(geom), ST_IsSimple(geom)
FROM (SELECT 'LINESTRING(0 0, 0 1, 1 0, 1 1, 0 0)'::geometry AS geom) AS foo;
 st_isring | st_isclosed | st_issimple
-----------+-------------+-------------
 f         | t           | f
(1 row)