Remove lines that overlap in 2D

Hello,

We would like to know if it is possible to remove one of the lines which overlap in the 2d view. These lines share the coordinate in X and Z and they are different in Y.
004

Of course it’s possible, the problem is that which one to be removed.

Hello Hyunu_Kim

In this case, I can remove either but I would prefer to remove the line behind.

I’d recommend one of two options. Either project both lines onto a plane and then check for duplicates there or break the lines down into X and Z components (since you can ignore Y) and check for duplicates that way. Using the components of both lines also allows you to remove the “back” line specifically since you can compare Y coordinates…

I will try that option.