-
-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
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
Update API documentation #21
Comments
We are actually working on automatically generating API documentation on the We haven't yet managed to get the GiST and SP-GiST indexes working properly. Any help is appreciated. Good point on documenting supported indexes, that should definitely be in there. I do not know whether the indexes support clustering. Have you tested it out? I'll have to do a bit of research on that. |
I have found the operators info at https://github.com/bytesandbrains/h3-pg/blob/master/sql/install/00-type.sql but looks like the interesting ones are R-tree related, and looks like GiST is not available yet, so no use for these operators then 😞 Both B-tree and R-tree (with Performing a clustering over an index that take into account spatial vicinity might improve later spatial quieries in several orders of magnitude. As per the 1st Law of Geography, most of the queries will read only a few pages from disk. Some benchmarks at the end of this page; the time improvements depends on the volume and how spatially scattered is the data |
The API reference is now automatically generated from the sql files, which means the operators, types and functions should now all be documented. I've also added a test for clustering, which works as far as I can tell :-) |
Looks like the API documentation missed latest releases info, like:
=, >, <, <=, >=, &&, @>, <@
) and the type of index they are supported by.And some bonus points about indexing 😃
h3index
datatype.h3index
support clustering to improve spatial operations (and add this feature if the don't! 😝 )The text was updated successfully, but these errors were encountered: