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
I have a come across a couple times when H3_POLYFILL does not produce results. For example:
SELECT carto.H3_POLYFILL(ST_Transform(ST_TileEnvelope(1, 0, 0), 4326), 2, 'center'); -- empty
however, the same geometry works with different H3 resolutions. For example, these 2 produce valid results:
SELECT carto.H3_POLYFILL(ST_Transform(ST_TileEnvelope(1, 0, 0), 4326), 1, 'center'); -- valid SELECT carto.H3_POLYFILL(ST_Transform(ST_TileEnvelope(1, 0, 0), 4326), 3, 'center'); -- valid
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a come across a couple times when H3_POLYFILL does not produce results. For example:
however, the same geometry works with different H3 resolutions. For example, these 2 produce valid results:
The text was updated successfully, but these errors were encountered: