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
There's an extra multiplication with 360 in the calculation of y. If you compare to the original, this value is not there. It causes issues when reverting back: https://docs.microsoft.com/en-us/bingmaps/articles/bing-maps-tile-system
y
PS: Thanks for the code. It's great! PPS: What kind of license is this code? Can I freely use it in my projects (i.e. MIT license or so?) Thanks...
Satellite-Aerial-Image-Retrieval/tilesystem.py
Line 124 in 769a698
should be
y = 0.5 - TileSystem.clip(pixelY, 0, mapsize - 1) / mapsize
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There's an extra multiplication with 360 in the calculation of
y
. If you compare to the original, this value is not there. It causes issues when reverting back: https://docs.microsoft.com/en-us/bingmaps/articles/bing-maps-tile-systemPS: Thanks for the code. It's great!
PPS: What kind of license is this code? Can I freely use it in my projects (i.e. MIT license or so?) Thanks...
Satellite-Aerial-Image-Retrieval/tilesystem.py
Line 124 in 769a698
should be
The text was updated successfully, but these errors were encountered: