跳转至
Apache Sedona 1.9.0 已正式发布,新增 Spark 4.1 支持、proj4sedona 坐标系转换、Bing Tile 函数等众多特性!

ST_MLineFromText

Introduction: Construct a MultiLineString from Text and Optional SRID

Format:

ST_MLineFromText (Wkt: String)

ST_MLineFromText (Wkt: String, Srid: Integer)

Return type: Geometry

Since: 1.3.1

Example:

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

Output:

MULTILINESTRING ((1 2, 3 4), (4 5, 6 7))