ST_PointFromWKB — Makes a geometry from WKB with the given SRID
geometry ST_GeomFromWKB(bytea geom);
geometry ST_GeomFromWKB(bytea geom, integer srid);
The ST_PointFromWKB function, takes a well-known binary representation of geometry and a Spatial Reference System ID (SRID) and creates an instance of the appropriate geometry type - in this case, a POINT geometry. This function plays the role of the Geometry Factory in SQL.
If an SRID is not specified, it defaults to 0. NULL is returned if the input bytea does not represent a POINT geometry.
Questo metodo implementa le OGC Simple Features Implementation Specification for SQL 1.1.
s3.2.7.2
Questo metodo implementa la specifica SQL/MM.
SQL-MM 3: 6.1.9
Questa funzione supporta il 3d e non distrugge gli z-index.
Questo metodo supporta le Curve e le Circular String.