mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
16 lines
605 B
Plaintext
16 lines
605 B
Plaintext
|
{
|
||
|
"name": "shortest_line",
|
||
|
"type": "function",
|
||
|
"description": "Returns the shortest line joining geometry 1 to geometry 2. The resultant line will start at geometry 1 and end at geometry 2.",
|
||
|
"arguments": [
|
||
|
{"arg":"geometry 1","description":"geometry to find shortest line from"},
|
||
|
{"arg":"geometry 2","description":"geometry to find shortest line to"}
|
||
|
],
|
||
|
"examples": [
|
||
|
{
|
||
|
"expression":"geom_to_wkt(shortest_line(geom_from_wkt('LINESTRING (20 80, 98 190, 110 180, 50 75 )'),geom_from_wkt('POINT(100 100)')))",
|
||
|
"returns":"LineString(73.0769 115.384, 100 100)"
|
||
|
}
|
||
|
]
|
||
|
}
|