Skip to content

Commit

Permalink
[processing][gdal] Fix SQL command in points along lines algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Feb 26, 2021
1 parent c5dd871 commit 964431a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/gdal/PointsAlongLines.py
Expand Up @@ -112,7 +112,7 @@ def getConsoleCommands(self, parameters, context, feedback, executing=True):
ogrLayer,
'-dialect',
'sqlite',
'-sql'
'-sql',
f'SELECT ST_Line_Interpolate_Point({geometry}, {distance}) AS {geometry}{other_fields} FROM "{layerName}"'
]

Expand Down

0 comments on commit 964431a

Please sign in to comment.