Andres Prieto-Estrada
Andres Prieto-Estrada
The following lines of code: sim = flopy.mf6.MFSimulation.load(sim_ws='run_temp_ws') gwf = sim.get_model() mg = gwf.modelgrid mg.set_coord_info(xoff=5677631.08875377, yoff=18360574.17093341, angrot=50) chd = gwf.chd chd.stress_period_data.export(os.path.join('..', '..', 'arcpro', 'shp', 'pumptest_chd.shp'), sparse=True) Produce this error: 896...
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')...