[processing][gdal] Fix SQL command in points along lines algorithm

This commit is contained in:
Nyall Dawson 2021-02-26 12:05:41 +10:00
parent c5dd8714a8
commit 964431a0cc

View File

@ -112,7 +112,7 @@ class PointsAlongLines(GdalAlgorithm):
ogrLayer,
'-dialect',
'sqlite',
'-sql'
'-sql',
f'SELECT ST_Line_Interpolate_Point({geometry}, {distance}) AS {geometry}{other_fields} FROM "{layerName}"'
]