mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
9 lines
490 B
Plaintext
9 lines
490 B
Plaintext
|
{
|
||
|
"name": "line_interpolate_point",
|
||
|
"type": "function",
|
||
|
"description": "Returns the point interpolated by a specified distance along a linestring geometry.",
|
||
|
"arguments": [ {"arg":"geometry","description":"a linestring geometry"},
|
||
|
{"arg":"distance","description":"distance along line to interpolate"}],
|
||
|
"examples": [ { "expression":"geom_to_wkt(line_interpolate_point(geometry:=geom_from_wkt('LineString(0 0, 10 0)'),distance:=5))", "returns":"'Point (5 0)'"}]
|
||
|
}
|