-
Notifications
You must be signed in to change notification settings - Fork 133
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
hexRangeDistances function in 4.x #430
Comments
Would something like this work for you? def grid_disk_distances(h, k):
return [h3.grid_ring(h,i) for i in range(k)] |
Thanks! That seems to work. Noticed a couple of other functions that I use in my project and don't seem to be there in 4.x: h3_to_geo_boundary Are there alternative implementations of these in 4.x or am I better off just staying on 3.x for the time being? |
For the first, I think you want https://uber.github.io/h3-py/api_verbose.html#h3.cell_to_boundary For the last two, check out: |
Closing for now. Let me know if you have any additional questions. |
Are there plans to port the
hexRangeDistances
function to the 4.x API? It's currently only available in 3.x. If not, are there alternative ways to achieve the same output?The text was updated successfully, but these errors were encountered: