ST_MPointFromText は、ST_MultiPoint タイプの WKB 表現と空間参照 ID を受け取って、ST_MultiPoint を作成します。 構文 Oracle sde.st_mpointfromwkb (wkb blob, srid integer) sde.st_mpointfromwkb (wkb blob) SRID を指定しない場合、空間参照がデフォルトで 4326 に設定されます。 PostgreS...
The ST_MPointFromWKB function takes a well-known binary (WKB) format of a multipoint and, optionally, a spatial reference system identifier as input parameters and returns the corresponding multipoint. If the specified WKB format is null, then null is returned. The recommended function for ach...
ST_MPointFromText 采用 ST_MultiPoint 类型的熟知二进制 (WKB) 表示和空间参考 ID,并创建 ST_MultiPoint。 语法 Oracle sde.st_mpointfromwkb (wkb blob, srid integer) sde.st_mpointfromwkb (wkb blob) 如果您未指定 SRID,则空间参考默认为 4326。
SET wkb = ST_AsBinary( geometry ) WHERE id = temporary_correlated.id 在以下 SELECT 语句中, ST_MPointFromWKB 函数用于从 WKB 列检索多点。 SELECT id, CAST( ST_AsText( ST_MLineFromWKB (wkb)) AS VARCHAR(100)) MULTIPOINT FROM sample_mpoints WHERE id = 10 结果: ID MULTIPOINT --- -...