Help: Boolean for points with same location?

Hello everyone,

How can I get boolean values for points with same location to be used for masking afterwards? Alternatively, I would like to remove points from the list that have the same location. Not pruning duplicates, deleting them altogether.

Thanks!
Arek

To completely remove points that occur twice, use Set Difference (it’s in BuiltIn Fuctions)

If you want to generate a true/false list, it’s a little more complicated

Thanks Zach, this helped a lot and I learned a bit thanks to it. My situation was a little different, but I managed. I felt like it would be nice to share it. Thanks again, you’re the best.