Hi Everyone,
I currently have MF Usg model with Voronoi grid. I would like to generate some mapviews with some of their properties.
I wrote this code, just to check the grid:
ml = flopy.mfusg.MfUsg.load("MN_Integrado_PC.nam")
fig, ax = plt.subplots(figsize=(12, 10))
# Create the plot map view with additional parameters
pmv = flopy.plot.PlotMapView(model=ml, layer=0) # Plot first layer
# Plot the grid with additional parameters
pmv.plot_grid(colors='black', alpha=0.5)
pmv.plot_bc(name='WEL', color='red') # Plot wells in red
# Add a title
plt.title('MODFLOW-USG Grid and Wells')
# Show the plot
plt.show()
But it doesnt seems to work. Is there a way to directly work with the DIS obtained from the USG packages?
Best regards.