We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A little surprised to find the following…
It's great that I can declare the schema for input data:
tree = rbush(16, ["['x']", "['y']", "['x']", "['y']"]); tree.insert(point);
But I would expect search (etc.) to use the same schema:
tree.search(point) // []
Instead I need to:
tree.search(tree.toBBox(point)) // [point]
I'm guessing a conscious decision, rather than a bug?
The text was updated successfully, but these errors were encountered:
Oops just saw #54 (thanks for explaining, in advance of my question ;-).
Sorry, something went wrong.
No branches or pull requests
A little surprised to find the following…
It's great that I can declare the schema for input data:
But I would expect search (etc.) to use the same schema:
Instead I need to:
I'm guessing a conscious decision, rather than a bug?
The text was updated successfully, but these errors were encountered: