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 Line from Wkt text

Signatures

ST_LineFromText (Wkt: String)

Parameters

Wkt
String
required
A Well-Known Text (WKT) representation of a geometry.

Return type

The resulting geometry.

Example

SELECT ST_LineFromText('LINESTRING(1 2,3 4)')
LINESTRING (1 2, 3 4)