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
Problem: Now pmtiles-serve directly uses y value in sqlite table tiles from MBTiles, which is TMS scheme.
pmtiles-serve
y
tiles
In fact, MBTiles always follow TMS scheme. So if we want to serve tiles with XYZ scheme, the y value should be
# y is the value in MBTiles 2^z - 1 - y
The text was updated successfully, but these errors were encountered:
Fix MBTiles converter TMS coords, flip tile_row [#8,#10]
a829db1
@typebrook can you try with version 0.0.5?
Sorry, something went wrong.
@bdon Looks good on latest version! Well done!
Correctly flip back to TMS in pmt_to_mbt. Fixes protomaps#8
a159ffa
No branches or pull requests
Problem: Now
pmtiles-serve
directly usesy
value in sqlite tabletiles
from MBTiles, which is TMS scheme.In fact, MBTiles always follow TMS scheme. So if we want to serve tiles with XYZ scheme, the
y
value should be# y is the value in MBTiles 2^z - 1 - y
The text was updated successfully, but these errors were encountered: