How would I make a countour grid in python using matplotlib.pyplot
, where the grid is one colour where the z
variable is below zero and another when z
is equal to or larger than zero? I'm not very familiar with matplotlib
so if anyone can give me a simple way of doing this, that would be great.
So far I have:
x= np.arange(0,361)
y= np.arange(0,91)
X,Y = np.meshgrid(x,y)
area = funcarea(L,D,H,W,X,Y) #L,D,H and W are all constants defined elsewhere.
plt.figure()
plt.contourf(X,Y,area)
plt.show()