ST_EndPoint
Définition
ST_EndPoint retourne le dernier point d'un objet linestring.
Syntaxe
sde.st_endpoint (ln1 sde.st_geometry)
Type de retour
ST_Point
Exemple
La table endpoint_test stocke la colonne gid integer qui identifie chaque ligne , de façon unique, et la colonne ln1 ST_LineString qui stocke les objets linestring.
CREATE TABLE endpoint_test (gid integer, ln1 sde.st_geometry);
Les instructions INSERT suivantes insèrent des chaînes de lignes dans la table endpoint_test. Contrairement à la deuxième, la première chaîne de lignes n'a ni coordonnées z ni mesures.
Oracle
INSERT INTO ENDPOINT_TEST VALUES (
1,
sde.st_linefromtext ('linestring (10.02 20.01, 23.73 21.92, 30.10 40.23)', 0)
);
INSERT INTO ENDPOINT_TEST VALUES (
2,
sde.st_linefromtext ('linestring zm(10.02 20.01 5.0 7.0, 23.73 21.92 6.5 7.1,30.10 40.23 6.9 7.2)', 0)
);
PostgreSQL
INSERT INTO endpoint_test VALUES (
1,
st_linestring ('linestring (10.02 20.01, 23.73 21.92, 30.10 40.23)', 0)
);
INSERT INTO endpoint_test VALUES (
2,
st_linestring ('linestring zm(10.02 20.01 5.0 7.0, 23.73 21.92 6.5 7.1,30.10 40.23 6.9 7.2)', 0)
);
Cette requête liste la colonne gid avec le résultat de la fonction ST_EndPoint. La fonction ST_EndPoint génère une géométrie ST_Point.
Oracle
SELECT gid, sde.st_astext (sde.st_endpoint (ln1)) Endpoint
FROM ENDPOINT_TEST;
GID Endpoint
1 POINT (30.10 40.23)
2 POINT ZM (30.10 40.23 6.9 7.2)
PostgreSQL
SELECT gid, st_astext (st_endpoint (ln1))
AS endpoint
FROM endpoint_test;
gid endpoint
1 POINT (30.10 40.23)
2 POINT ZM (30.10 40.23 6.9 7.2)
9/12/2013