Select element by location point coordinates?!

Is there a node to select an element by its location point coordinates? It would be the opposite action of the one in the screenshot.
Thanks!

There is no direct node that would solve this problem, But you could create a point at given coordinates (Point.ByCoordinates) Then Use a list with all your elements in your file and Cross check the distance for each Element. Get the MinimumItem (aka Distance) from that List and use that in a filter by bool mask. Now you should end up with the closest element to your input coordinate.

2 Likes

Thank you for the tip!