File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 8
8
* Refactor internal function and base classes for the ` minzoom/maxzoom ` calculation ** breaking change**
9
9
* Adding ` transform ` , ` height ` and ` width ` attributes (outside init) for ` SpatialMixin ` class
10
10
* Moved ` _dst_geom_in_tms_crs ` from Reader to ` SpatialMixin ` class ** breaking change**
11
+ * Removed use of rasterio's ` is_tiled ` method
11
12
12
13
# 6.7.0 (2024-09-05)
13
14
Original file line number Diff line number Diff line change @@ -477,7 +477,7 @@ def _requested_tile_aligned_with_internal_tile(
477
477
bounds_crs : CRS = WEB_MERCATOR_CRS ,
478
478
) -> bool :
479
479
"""Check if tile is aligned with internal tiles."""
480
- if not src_dst .is_tiled :
480
+ if src_dst . block_shapes and src_dst .block_shapes [ 0 ][ 1 ] == src_dst . width :
481
481
return False
482
482
483
483
if src_dst .crs != bounds_crs :
You can’t perform that action at this time.
0 commit comments