ST_PointN

定义

ST_PointN 采用 ST_LineString 和整型索引,并返回 ST_LineString 的路径中作为第 n 个折点的点。

语法

sde.st_pointn (ln1 sde.st_linestring, index integer)

返回类型

ST_Point

示例

使用唯一识别各行的 gid 列和 ln1 ST_LineString 列创建 pointn_test 表。INSERT 语句插入两个线串值。第一个线串没有 z 坐标和度量值,而第二个线串具有这两者。

Oracle

CREATE TABLE pointn_test (gid integer, ln1 sde.st_geometry);


INSERT INTO POINTN_TEST VALUES (
1,
sde.st_linefromtext ('linestring (10.02 20.01, 23.73 21.92, 30.10 40.23)', 0)
);

INSERT INTO POINTN_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

CREATE TABLE pointn_test (gid integer, ln1 sde.st_geometry);


INSERT INTO pointn_test VALUES (
1,
sde.st_linestring ('linestring (10.02 20.01, 23.73 21.92, 30.10 40.23)', 0)
);

INSERT INTO pointn_test VALUES (
2,
sde.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)
);

查询列出 gid 列和各线串的第二个折点。第一行生成没有 z 坐标和度量值的 ST_Point,而第二行生成具有 z 坐标和度量值的 ST_Point。如果源线串中存在 z 坐标和测量值,则 ST_PointN 函数还将包含 z 坐标或测量值。

Oracle

SELECT gid, sde.st_astext (sde.st_pointn (ln1, 2)) The_2ndvertex
FROM POINTN_TEST;

GID The_2ndvertex

1   POINT (23.73 21.92)
2   POINT ZM (23.73 21.92 6.5 7.1)

PostgreSQL

SELECT gid, sde.st_astext (sde.st_pointn (ln1, 2)) 
AS The_2ndvertex
FROM pointn_test;

gid the_2ndvertex

1   POINT (23.73 21.92)
2   POINT ZM (23.73 21.92 6.5 7.1)
9/15/2013