ST_LineFromWKB — Crea un LINESTRING
desde un WKB con el SRID dado
geometry ST_LineFromWKB(
bytea WKB)
;
geometry ST_LineFromWKB(
bytea WKB, integer srid)
;
La función ST_GeomFromWKB
, toma una representación binaria "well-known" de una geometría y un ID de un Sistema de Referencia Espacial (SRID
) y crea una instancia del tipo de geometría adecuado - 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 un LINESTRING
.
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_LineFromWKB(ST_AsBinary(ST_GeomFromText('LINESTRING(1 2, 3 4)'))) AS aline, ST_LineFromWKB(ST_AsBinary(ST_GeomFromText('POINT(1 2)'))) IS NULL AS null_return; aline | null_return ------------------------------------------------ 010200000002000000000000000000F ... | t