0

I'm trying to display a highway on a map. But there is a transition between the lines (see picture within the red circles) that I would like to remove. Does anyone know how to remove the transition that the lines are showed continuously?

Lines with transition

vuayalo
  • 11
  • 2

1 Answers1

1

The number of vertices should make the line appear smooth enough for the scale at which it is used (more zoomed out than in your image). It depends on the resolution of your data.

If you want to 'fake' a smoother line, try using the Vector Geometry -> Smooth processing algorithm. Ironically, this will add more vertices to give the appearance of a smoother curve.

Original lines: enter image description here

After running Smooth with 4 iterations and 1m offset: enter image description here

Andre Geo
  • 538
  • 2
  • 11