I have three datasets containing points which I want to bring down to one complete set.
Dataset A contains most of the points but not very accurate in terms of location
Dataset B contains less points but is more accurate then dataset A
Dataset C contains the least points but is the most accurate of all three sets.
So I am looking to create something like the following:
When there are three points (dataset A, B and C) within one meter of each other merge the A and B with the point from C. When there are two points, for example dataset A and C, merge the point from dataset A with the one from C. And so on.. A way of ranking I would say.
Now I have tried using the NeighborhoodAggregator but I cannot specify which point I want to merge which point. I have also looked at the NeighborFinder but I cannot seem to get that working either. Is it possible to have all three datasets analyzed together? Or do I have to do two at a time?