Skip to main content

I have a shapefile, it is all lines with only two points in each line. Ultimately I'd like to expose the X and Y, start and end, of each line. CoordinateExtractor seems to be able to expose the X and Y of all the points but is there a way to filter that list, like Start X, Start Y; End X, End Y?

Hi @inframan​  You could use two CoordinateExtractors to get both coordinates without a list. The first coordinate is 0 and the last is -1.


Hi @inframan​  You could use two CoordinateExtractors to get both coordinates without a list. The first coordinate is 0 and the last is -1.

That worked, I put two Extractors inline then changed mode to Specify Coordinate and changed the names to x_a, y_b, etc. Thanks.


Reply