I have a layer with several polylines that represents a hiking trail in southern Sweden. I need to segment this trail into equal lengths in one direction along the line, either starting from the north or the south. At one point the trail splits in two and one feature ends in the middle of another, otherwise all features are joined on the start and ending vertices of each other. The sum of lengths of the lines is 85 266.31 m.
The layer uses projected geographic coordinate system: SWEREF TM 13 30, which I believe is LatLong @david_r
I am trying to use the IterativeSnipper to cut the trail into 4000 m segments. First I tried to aggregate the polylines, since I want the lines to go in one direction, or to have one starting and one ending point. The translation failed because of invalid geometry that time. And I couldn't get the LineCombiner to work either @egomm.
And when I use only the IterativeSnipper with the below parameters, I get a result of 27 polylines with most of the features (18) having a length of 3900 to 4000 m, but the rest have much shorter lengths.
IterativeSnipper parameters:
- Snipping mode: Shorten to length
- Value: 4000
I can't seem to find any documentation on many parameters of snipper translators.
Thankful for any tips that you might have to achieve goal described!
/Sofia