ST_GeomCollFromWKB
注意:
PostgreSQL の ST_Geometry のみ
定義
ST_GeomCollFromWKB は、WKB 表現からジオメトリ コレクションを構築します。
構文
sde.st_geomcollfromwkb (wkb bytea, srid integer)
戻り値のタイプ
ST_GeomCollection
例
注意:
読みやすいように改行が挿入されています。ステートメントをコピーする際は改行を削除してください。
gcoll_test というテーブルを作成します。
CREATE TABLE gcoll_test (pkey integer, shape sde.st_geomcollection );
テーブルに値を挿入します。
INSERT INTO gcoll_test VALUES (1, st_geomcollfromwkb (sde.st_asbinary(sde.st_geomcollection ('multipoint(20 20, 30 30, 20 40, 30 50)', 0)), 0)); INSERT INTO into gcoll_test VALUES (2, sde.st_geomcollfromwkb (sde.st_asbinary(sde.st_geomcollection ('multilinestring ((10.02 20.01, 10.32 23.98, 11.92 25.64), (9.55 23.75,15.36 30.11),(10 10,20 20,30 30,40 40, 90 90))', 0)), 0)); INSERT INTO gcoll_test VALUES (3, sde.st_geomcollfromwkb (sde.st_asbinary(sde.st_geomcollection ('multipolygon(((0 0,4 0,4 4,0 4,0 0),(1 1,2 1,2 2,1 2,1 1)), ((-1 -1,-1 -2,-2 -2,-2 -1,-1 -1)))', 0)), 0));
gcoll_test テーブルからジオメトリを選択します。
SELECT pkey, sde.st_astext(shape) from gcoll_test; pkey st_astext 1 MULTIPOINT ( 20 20, 30 30, 20 40, 30 50) 3 MULTIPOLYGON ((( 0 0, 4 0, 4 4, 0 4, 0 0), (1 1, 1 2, 2 2, 2 1, 1 1)), ((-1 -1, -2 -1, -2 -2, -1 -2, -1 -1))
7/10/2012