Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.wherobots.com/llms.txt

Use this file to discover all available pages before exploring further.

Construct a MultiLineString from Wkt. If srid is not set, it defaults to 0 (unknown).

Signatures

ST_MLineFromText (Wkt: String)
ST_MLineFromText (Wkt: String, srid: Integer)

Parameters

Wkt
String
required
A Well-Known Text (WKT) representation of a geometry.
srid
Integer
Spatial Reference Identifier.

Return type

The resulting geometry.

Example

SELECT ST_MLineFromText('MULTILINESTRING((1 2, 3 4), (4 5, 6 7))')
MULTILINESTRING ((1 2, 3 4), (4 5, 6 7))