File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -91,6 +91,9 @@ def products(self) -> IndexedFeatures[EOProductProtocol]:
9191 if not isinstance (item , CorruptedProductMetadata )
9292 ],
9393 crs = self .tile .crs ,
94+ # by not using rtree, we avoid an edge case where products outside of process CRS bounds
95+ # cause rtree to fail when indexing the products.
96+ index = None ,
9497 )
9598
9699 # just return the prouducts as is
@@ -101,6 +104,9 @@ def products(self) -> IndexedFeatures[EOProductProtocol]:
101104 if not isinstance (item , CorruptedProductMetadata )
102105 ],
103106 crs = self .tile .crs ,
107+ # by not using rtree, we avoid an edge case where products outside of process CRS bounds
108+ # cause rtree to fail when indexing the products.
109+ index = None ,
104110 )
105111
106112 def read (
You can’t perform that action at this time.
0 commit comments