You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I'd like to pre-sort the point data I have prior to building an index, and then have the results of radiusSearch return indices in the same order. Any idea how this might be possible/doable?
The reason is because I've currently got some n^2 operations happening and would like to fix that for speed (loop is 1. radius search 2. sort results by z 3. using median z).
If the indices were returned in the same order, then I could just drop the re-sorting.
The text was updated successfully, but these errors were encountered:
Hello, I'd like to pre-sort the point data I have prior to building an index, and then have the results of radiusSearch return indices in the same order. Any idea how this might be possible/doable?
The reason is because I've currently got some n^2 operations happening and would like to fix that for speed (loop is 1. radius search 2. sort results by z 3. using median z).
If the indices were returned in the same order, then I could just drop the re-sorting.
The text was updated successfully, but these errors were encountered: