I'm trying to run a workflow to remove duplicates from a location database.
I have used the unique tool which removes one site of two (or more) that match centroids.
However I'm looking to expand this to return one site from any that are within 0.1km of each other, not just those whose centroids are identical, as such there is no unique value to filter on.
My idea is to use distance calculations and a filter, this returns a list similar to the below:
Target site id...Universe site id...Distance
[1]...[35]...[distance <0.1km]
[1]...[2]...[distance <0.1km]
[2]...[1]...[[distance <0.1km]
.
.
.
[35]...[1]...[distance <0.1km]
However I cannot find a way to produce a list that returns [1] only and [2] and [35] to a different list for tagging as "removed from site list"
Many thanks in advance