ST_GeomFromShape
注:
仅适用于 PostgreSQL 的 ST_Geometry
定义
ST_GeomFromShape 通过 Esri shape 构造 ST_Geometry 对象。
语法
st_geomfromshape (esri_shape bytea, srid integer)
返回类型
ST_Geometry
示例
以下示例通过一个 ID 和两个几何列将记录插入到 geoshape 表中。
CREATE TABLE geoshape (id integer, g1 sde.st_geometry, g2 bytea);
INSERT 语句将数据插入到 geoshape 表的列中。结尾处的 SELECT 语句确保将数据插入到 g1 列中。
INSERT INTO geoshape (id, g1) VALUES (
1,
sde.st_geometry ('point (10 10)', 0)
);
INSERT INTO geoshape (id, g1) VALUES (
2,
sde.st_geometry ('linestring (10 10, 20 20, 30 30)', 0)
);
UPDATE geoshape
SET g2 = sde.st_asshape (g1)
WHERE id = 1;
UPDATE geoshape
SET g2 = sde.st_asshape (g1)
WHERE id = 2;
SELECT id, sde.st_astext (sde.st_geomfromshape (g2, 0))
FROM geoshape;
id st_astext
1 POINT ( 10 10)
2 LINESTRING ( 10 10, 20. 20, 3 30)
9/15/2013