Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding water flow arrows to Matplotlib Contour Plot

I am generating a groundwater elevation contour with Matplotlib. See below

Here is what I have now; how can I add water flow arrows like the image below? enter image description here

I want to add arrows to make it look like this: Groundwater Contour with Arrows

If anyone has some ideas and/or code samples that would be greatly appreciated.

like image 674
Nick Woodhams Avatar asked May 13 '13 19:05

Nick Woodhams


1 Answers

You'll need a recent (>= 1.2) version of matplotlib, but streamplot does this. You just need to take the negative gradient of your head (a.k.a. "water table" for surface aquifers) grid.

As a quick example generated from random point observations of head:

import numpy as np
from scipy.interpolate import Rbf
import matplotlib.pyplot as plt
# Make data repeatable
np.random.seed(1981)

# Generate some random wells with random head (water table) observations
x, y, z = np.random.random((3, 10))

# Interpolate these onto a regular grid
xi, yi = np.mgrid[0:1:100j, 0:1:100j]
func = Rbf(x, y, z, function='linear')
zi = func(xi, yi)

# -- Plot --------------------------
fig, ax = plt.subplots()

# Plot flowlines
dy, dx = np.gradient(-zi.T) # Flow goes down gradient (thus -zi)
ax.streamplot(xi[:,0], yi[0,:], dx, dy, color='0.8', density=2)

# Contour gridded head observations
contours = ax.contour(xi, yi, zi, linewidths=2)
ax.clabel(contours)

# Plot well locations
ax.plot(x, y, 'ko')

plt.show()

enter image description here

like image 178
Joe Kington Avatar answered Oct 13 '22 20:10

Joe Kington