QGIS: Mileage Plugin
Line interpolate equidistant points
Inputs
- Input layer
- Select identifier field
- Select start mileage field
- Select end mileage field
- Select interpolation distance field
- Output layer
Process
- Loop through line features, get Nth feature (geom + props)
- vLength = eM - sM = IN4 - IN3; vD = IN5;
- Generate list of fraction of total length (0-1);
- Interpolate point on line on $Length * fraction; Add line props to points, return and add to feature sink;
- Update Progress.
Add fields for interpolation config
Inputs
- Input layer(lists)
- Output layer
Process
- Loop through layers, get Nth layer (geom + props)
- Check if field exists, add if non-exist, log if field type don't match.
- (Optional?) Add length for reference.
- Update Progress.