ST_PointOnSurface

定义

ST_PointOnSurface 以 ST_Polygon 或 ST_MultiPolygon 类型的对象为输入参数,并返回保证位于其表面上的 ST_Point。

语法

sde.st_pointonsurface (pl1 sde.st_geometry)
sde.st_pointonsurface (mpl1 sde.st_geometry)

返回类型

ST_Point

示例

市政工程师想要为每个建筑物的覆盖区创建标注点。建筑物覆盖区存储在使用以下 CREATE TABLE 语句创建的 buildingfootprints 表中:

CREATE TABLE buildings (building_id integer,
footprint sde.st_geometry);
INSERT INTO buildings (building_id, footprint) VALUES (
1,
sde.st_polygon ('polygon ((0 0, 0 10, 10 10, 10 0, 0 0))', 0)
);

INSERT INTO buildings (building_id, footprint) VALUES (
2,
sde.st_polygon ('polygon ((20 0, 20 10, 30 10, 30 0, 20 0))', 0)
);

ST_PointOnSurface 函数生成确保位于建筑物覆盖区表面上的点。ST_PointOnSurface 函数返回点对象以便由 ST_AsText 函数将其转换为文本进一步供应用程序使用。

Oracle

SELECT sde.st_astext (sde.st_pointonsurface (footprint)) Surface_Points
FROM BUILDINGS;

SURFACE_POINTS

POINT  (5.00000000 5.00000000)
POINT  (25.00000000 5.00000000)

PostgreSQL

SELECT sde.st_astext (sde.st_pointonsurface (footprint)) 
AS Surface_Points
FROM buildings;

surface_points

POINT  (5 5)
POINT  (25 5)

7/10/2012