Not sure how to frame this question but here goes:
What I want to do:
From a bag of point of interests (POIs) with lat, long information, I want to create a cluster / group where each cluster / group contains some “x” number of members and the members are at least some “y” distance apart from all other members in the cluster / group.
I’ve been struggling with the Distance Matrix Calculate node and Similarity Search - I can get the “x” number of members and “y” distance apart for the first element - however, I can’t find a good way to filter the “y” distance between the other elements that Similarity Search has found for the first element.
Hi @seoseokho83,
this is just an idea that came to my mind, I have never tried something like that: could you use the DBSCAN node to find the clusters and simply invert the distances, so that points that are further apart may fall into the same cluster?
Kind regards
Alexander
Hi,
you can define your own distance using different nodes. There is for example the Java Distance or Aggregated Distance for custom distances. You need to write a little bit of Java code, though.
Kind regards
Alexander