You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def test_snap_bounds_edge_cases():
# as zoom level increases, so increases the potential rounding errors
tp = TilePyramid("geodetic")
for zoom in range(18):
snapped = snap_bounds(bounds=tp.bounds, tile_pyramid=tp, zoom=zoom)
assert snapped == tp.bounds
at some point the check whether a given point hits the border between two tiles fails which subsequently causes the snap_bounds function to return a tile outside of the tile matrix
The text was updated successfully, but these errors were encountered:
the following test fails at zoom 15:
at some point the check whether a given point hits the border between two tiles fails which subsequently causes the snap_bounds function to return a tile outside of the tile matrix
The text was updated successfully, but these errors were encountered: