ST_PolyFromText
注:
仅适用于 Oracle 中的 ST_Geometry
定义
ST_PolyFromText 以熟知文本表示和空间参考 ID 作为输入参数,返回 ST_Polygon 类型的对象。
语法
sde.st_polyfromtext (wkt clob, srid integer)
返回类型
ST_Polygon
示例
创建包含单个面列的 polygon_test 表。
CREATE TABLE polygon_test (pl1 sde.st_geometry);
INSERT 语句使用 ST_PolyFromText 函数将面插入到面列中。
INSERT INTO polygon_test VALUES ( sde.st_polyfromtext ('polygon ((10.01 20.03, 10.52 40.11, 30.29 41.56, 31.78 10.74, 10.01 20.03))', 0) );
7/10/2012