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
I'm working with a point-of-interest dataset that contains many locations at the same coordinates (e.g., stores in the same mall), and my desired behavior is to return all of the points at that one location [[1, 1, "green"], [1, 1, "red"]]. I have created a fork that does this with a couple minor changes. I would create a PR, but they are breaking changes because the results are now an array rather than a single value. It may not be worth trying to merge as is.
The text was updated successfully, but these errors were encountered:
Currently,
quadtree.find
returns one point even if many coincident points are in the tree.result
will be[1, 1, "green"]
.I'm working with a point-of-interest dataset that contains many locations at the same coordinates (e.g., stores in the same mall), and my desired behavior is to return all of the points at that one location
[[1, 1, "green"], [1, 1, "red"]]
. I have created a fork that does this with a couple minor changes. I would create a PR, but they are breaking changes because the results are now an array rather than a single value. It may not be worth trying to merge as is.The text was updated successfully, but these errors were encountered: