-
-
Notifications
You must be signed in to change notification settings - Fork 36
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
Question about usage #32
Comments
Hi Jan If you simply wish to calculate a H3Index for a given point
But I'm assuming by aggregating on lower resolutions you mean finding all children below a given, coarser, H3Index, and then aggregating over their values. For example: You have a table, Right now you would have to calculate the children at the given resolution like so:
This, however, is going to be too slow (or run possibly run out of memory) when the resolution gap is too large. So you will probably be forced to precompute each aggregated resolution. It is worth mentioning that we have been trying to implement GiST and GIN indexes (see #7) which would allow something like the following (which doesn't work yet)
But no work has been done on that since October. |
HI zacharias, thanks for your answer, you got me right in all the points. I think GiST is what I was looking for. Thanks |
Hello I'm just starting to learn about Geo spatial data processing, and I'm not quite sure about a certain usage of the extension.
I would like the calculate for each data point (GPS location) a H3index (high resolution e.g. 13/14). I'm now looking for a way to easily aggregate for zoom levels 1-11 to display on a map.
I came up with to possible solutions (both I don't like):
I'm missing a function for such aggregations. If it is possible with some Postgis functionality please point me to, thanks.
Thanks for your help Jan
The text was updated successfully, but these errors were encountered: