Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions mapchete_eo/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@ def products(self) -> IndexedFeatures[EOProductProtocol]:
if not isinstance(item, CorruptedProductMetadata)
],
crs=self.tile.crs,
# by not using rtree, we avoid an edge case where products outside of process CRS bounds
# cause rtree to fail when indexing the products.
index=None,
)

# just return the prouducts as is
Expand All @@ -101,6 +104,9 @@ def products(self) -> IndexedFeatures[EOProductProtocol]:
if not isinstance(item, CorruptedProductMetadata)
],
crs=self.tile.crs,
# by not using rtree, we avoid an edge case where products outside of process CRS bounds
# cause rtree to fail when indexing the products.
index=None,
)

def read(
Expand Down