QGIS Symbology – Visualize Polyline with Decreasing Width Towards One End

lineqgisstylesymbologywidth

I am acquiring data related to the hydrography of a territory. I would like to use a symbology that allows me to have a line whose thickness decreases as it reaches its end (like the example in the image).

example

I could divide each line into many segments and give each one its own thickness, but I'm looking for a much faster and more effective method. The geometry generator could probably be a solution .

Currently, I have vectorized each waterway with a single line.

example 2

Best Answer

Try geometry generator:

 tapered_buffer( $geometry, 10, 50)

enter image description here