ST_LinestringFromWKB — Crea una geometría desde un WKB con el SRID dado.
geometry ST_LinestringFromWKB(
bytea WKB)
;
geometry ST_LinestringFromWKB(
bytea WKB, integer srid)
;
La función ST_LinestringFromWKB
, toma una representación de una geometría en "well-known binary" y un ID de un Sistema de Referencia Espacial (SRID
) y crea una instancia del tipo apropiado de geometría - en este caso, una geometría LINESTRING
. Esta función juega un rol de "Geometry Factory" en SQL.
Si no se especifica un SRID, el valor predeterminado es 0.NULL
se devuelve si la entrada bytea
no representa una geometría LINESTRING
. Esto es un alias para ST_LineFromWKB.
OGC SPEC 3.2.6.2 - La opción SRID es del paquete de conformidad |
Si sabes que todas tus geometrías son |
This method implements the OGC Simple Features Implementation Specification for SQL 1.1. s3.2.6.2
This method implements the SQL/MM specification. SQL-MM 3: 7.2.9
SELECT ST_LineStringFromWKB( ST_AsBinary(ST_GeomFromText('LINESTRING(1 2, 3 4)')) ) AS aline, ST_LinestringFromWKB( ST_AsBinary(ST_GeomFromText('POINT(1 2)')) ) IS NULL AS null_return; aline | null_return ------------------------------------------------ 010200000002000000000000000000F ... | t