<div dir="auto">Thanks for your suggestion but Unfortunately, I'm a beginner with python or Qpy so it'll take me time to find out how to write the script. <div dir="auto"><br></div><div dir="auto">Regards</div><div dir="auto"><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Tue, 11 Jun 2019 20:50 Raymond Nijssen, <<a href="mailto:r.nijssen@terglobo.nl">r.nijssen@terglobo.nl</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Elisenda,<br>
<br>
I'm afraid you need a bit of python script to do so, since the algorithm <br>
dialog does not have an expression input button for the distance field.<br>
<br>
Should go something like this:<br>
<br>
<br>
inputLayer = iface.activeLayer()<br>
<br>
for feat in inputLayer.getFeatures():<br>
     dist = feat['DIST'] # field name with distances<br>
     geom = feat.geometry()<br>
     l = 0<br>
     while l < geom.length():<br>
        p = geom.interpolate(l)<br>
        print(p)<br>
        l += dist<br>
<br>
<br>
Hope this helps,<br>
Raymond<br>
<br>
<br>
On 11-06-19 12:15, elisenda montaner wrote:<br>
> Hi all,<br>
> <br>
> I'm trying to create points along lines using the tool 'points along <br>
> geometry'.<br>
> I would like to use different distances for each line at start/end point <br>
> which I have a column with this data in the attributes.<br>
>   Is this possible with this tool? I've tried it and it doesn't seem to <br>
> work.<br>
> <br>
> Any help would be appreciated. Thanks<br>
> <br>
> Elisenda<br>
> <br>
> _______________________________________________<br>
> Qgis-user mailing list<br>
> <a href="mailto:Qgis-user@lists.osgeo.org" target="_blank" rel="noreferrer">Qgis-user@lists.osgeo.org</a><br>
> List info: <a href="https://lists.osgeo.org/mailman/listinfo/qgis-user" rel="noreferrer noreferrer" target="_blank">https://lists.osgeo.org/mailman/listinfo/qgis-user</a><br>
> Unsubscribe: <a href="https://lists.osgeo.org/mailman/listinfo/qgis-user" rel="noreferrer noreferrer" target="_blank">https://lists.osgeo.org/mailman/listinfo/qgis-user</a><br>
> <br>
_______________________________________________<br>
Qgis-user mailing list<br>
<a href="mailto:Qgis-user@lists.osgeo.org" target="_blank" rel="noreferrer">Qgis-user@lists.osgeo.org</a><br>
List info: <a href="https://lists.osgeo.org/mailman/listinfo/qgis-user" rel="noreferrer noreferrer" target="_blank">https://lists.osgeo.org/mailman/listinfo/qgis-user</a><br>
Unsubscribe: <a href="https://lists.osgeo.org/mailman/listinfo/qgis-user" rel="noreferrer noreferrer" target="_blank">https://lists.osgeo.org/mailman/listinfo/qgis-user</a></blockquote></div>