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
Ref. CartoDB/torque#55
Carto has a max zoom value of 22. Changing that value produces unexpected results, so obviously there is more to it.
@javisantana @tiangolo
The text was updated successfully, but these errors were encountered:
at z22 there are 2^30+buffer pixels, at z23 there are 2^31+buffer pixels, so use of 32 bit integers to represent pixel coordinate from 0,0 will fail.
All sorts of parts most tile stack have implicit assumptions like this which break down at z23.
fyi, at middle-north latitudes, z22 is 2.5cm/px
Sorry, something went wrong.
No branches or pull requests
Ref. CartoDB/torque#55
Carto has a max zoom value of 22. Changing that value produces unexpected results, so obviously there is more to it.
@javisantana
@tiangolo
The text was updated successfully, but these errors were encountered: