2016-01-15 12:50:11 +11:00
|
|
|
{
|
|
|
|
"name": "shortest_line",
|
|
|
|
"type": "function",
|
2020-07-02 01:46:48 +01:00
|
|
|
"groups": ["GeometryGroup"],
|
2018-05-10 19:59:12 +02:00
|
|
|
"description": "Returns the shortest line joining geometry1 to geometry2. The resultant line will start at geometry1 and end at geometry2.",
|
2022-01-07 08:33:29 -05:00
|
|
|
"arguments": [{
|
|
|
|
"arg": "geometry1",
|
|
|
|
"description": "geometry to find shortest line from"
|
|
|
|
}, {
|
|
|
|
"arg": "geometry2",
|
|
|
|
"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)'"
|
|
|
|
}],
|
|
|
|
"tags": ["start", "resultant", "joining", "end", "shortest", "line"]
|
2016-01-15 12:50:11 +11:00
|
|
|
}
|