Similar to this question I have a set of polylines that I need to be split by a equal distance. How do I do this with QGIS, gdal/ogr2ogr and other open source tools (on Mac)? I don't have access to ArcGIS, therefore not a duplicate question, I hope.
I figured out to extract the coordinates at a specific distance from start of a line with this in QGIS (1000 m from start):
x(line_interpolate_point($geometry, 1000))
y(line_interpolate_point($geometry, 1000))
From there I'm not sure how to continue.
I need this to be able to create points along contour lines where I can extract angle and elevation value (from attribute). See this question and answer where I need this information.



ogr2ogrsolution? If you like there isv.split.lengthtool in QGIS Processing Toolbox. – Kazuhito Oct 11 '17 at 23:39