mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
11 lines
752 B
Plaintext
11 lines
752 B
Plaintext
{
|
|
"name": "line_merge",
|
|
"type": "function",
|
|
"groups": ["GeometryGroup"],
|
|
"description":"Returns a LineString or MultiLineString geometry, where any connected LineStrings from the input geometry have been merged into a single linestring. This function will return NULL if passed a geometry which is not a LineString/MultiLineString.",
|
|
"arguments": [ {"arg":"geometry","description":"a LineString/MultiLineString geometry"} ],
|
|
"examples": [ { "expression":"geom_to_wkt(line_merge(geom_from_wkt('MULTILINESTRING((0 0, 1 1),(1 1, 2 2))')))", "returns":"'LineString(0 0,1 1,2 2)'"},
|
|
{ "expression":"geom_to_wkt(line_merge(geom_from_wkt('MULTILINESTRING((0 0, 1 1),(11 1, 21 2))')))", "returns":"'MultiLineString((0 0, 1 1),(11 1, 21 2)'"}]
|
|
}
|
|
|