ST_PointFromWKB — WKBと与えられたSRIDからジオメトリを生成します。
geometry ST_GeomFromWKB(
bytea geom)
;
geometry ST_GeomFromWKB(
bytea geom, integer srid)
;
ST_PointFromWKB
は、ジオメトリのWell-Known Binary表現と空間参照系識別番号 (SRID
)を取り、適切なジオメトリタイプのインスタンスを生成します。この場合、POINT
ジオメトリです。この関数はSQLのジオメトリファクトリの役割を果たします。
SRIDが指定されていない場合は0 (不明)となります。入力bytea
がPOINTジオメトリを表現しないならNULL
が返されます。
This method implements the OpenGIS Simple Features Implementation Specification for SQL 1.1. s3.2.7.2
This method implements the SQL/MM specification. SQL-MM 3: 6.1.9
This function supports 3d and will not drop the z-index.
This method supports Circular Strings and Curves