I am trying to determine which model cells in a single layer intesect a single multi-polygon geometry object. This is my code:
from flopy.utils import GridIntersect
ix = GridIntersect(mg, method='structured')
intersects = ix.intersect(extent.geometry[0])
It's been hours and this is still running for a fairly small, single-layer structured grid. What is wrong with the method? Why is it sooo slow?