Question

I have many polyline Z features in the same feature class. I have modified them in such a way they are located at their own standard depth, relative to the surface level. How can I connect the last vertex at the same depth of connecting lines?

  • 25 October 2022
  • 2 replies
  • 2 views

Badge

I would like to modifiy the last vertex of each line feature, if the lines intersect, to copy the depth so that also the connection is made in Z-coordinates. Based on an attribute field there should be determined if the Z-value should be copied or overwritten of it's connecting neighbour. 


2 replies

Badge +3

use coordinate extractor transformer, change the z value, re create geometry using vertex creator.

 

Negative index positions indicate position relative to the last vertex, where -1 is the last, -2 is second-to-last, and so on.

Userlevel 2
Badge +12

To replace z-value of the last point:

replace_point

Reply