Re: [Qgis-user] Points along geometry

2019-06-12 Thread elisenda montaner
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. Regards On Tue, 11 Jun 2019 20:50 Raymond Nijssen, wrote: > Hi Elisenda, > > I'm afraid you need a bit of python script to do so, since the algorithm >

Re: [Qgis-user] Points along geometry

2019-06-11 Thread Raymond Nijssen
Hi Elisenda, I'm afraid you need a bit of python script to do so, since the algorithm dialog does not have an expression input button for the distance field. Should go something like this: inputLayer = iface.activeLayer() for feat in inputLayer.getFeatures(): dist = feat['DIST'] #

[Qgis-user] Points along geometry

2019-06-11 Thread elisenda montaner
Hi all, I'm trying to add points along lines using data from the attributes table. I want to add points at the end/beginning with a distance from a column on the attributes. I've tried it using the tools Points along geometry inside Graphical modeller but it doesn't seem to work. Any help would

[Qgis-user] Points along geometry

2019-06-11 Thread elisenda montaner
Hi all, I'm trying to create points along lines using the tool 'points along geometry'. I would like to use different distances for each line at start/end point which I have a column with this data in the attributes. Is this possible with this tool? I've tried it and it doesn't seem to work.