state-hiu / ittc-server-django

Front-End ITTC Server with Proxy, Cache, Logs, and Stats
MIT License
0 stars 3 forks source link

Parent Tiles Not Calculating Properly #8

Closed state-hiu closed 9 years ago

state-hiu commented 9 years ago

Parent Tiles Not Calculating properly For http://b.tile.openstreetmap.fr/hot/9/156/228.png the getParentTiles function at https://github.com/state-hiu/ittc-server-django/blob/master/ittc/ittc/cache/views.py#L338 returns

[(0, 0, 0), (0, 1, 1), (1, 2, 2), (2, 4, 3), (4, 8, 4), (9, 17, 5), (19, 35, 6), (39, 70, 7), (78, 141, 8)]

state-hiu commented 9 years ago

Was actually working correctly since the values are (x, y, z). Added option to only request parent tiles within a certain depth in https://github.com/state-hiu/ittc-server-django/commit/9621ec664100c69f61f87120c0c921f9a440986d. Should prevent queue from being flooded.