I am using matplotlib for countour plotting a function. I want to plot in such a way that up to a certain value of the function same colour is shown ( say, black ) and beyond that value of the function color gradient is shown. I am new to contour plotting and I don't know how to achieve this.
Here is a code sample. This code results into continuously varying colors. I want a fixed color upto threshold
and beyond that the color should vary in a continuous manner.
x = np.linspace(0,50, 1000)
y = np.linspace(0, 20, 1000)
[X,Y] = np.meshgrid(x,y)
Z = np.sin(X) + np.cos(Y)
threshold = 1.03
lvls = np.linspace((Z).min(),(Z).max(),3000)
contour_plot=plt.contourf(X,Y,Z,levels=lvls,cmap='viridis')
colorbar = plt.colorbar(contour_plot)
See below my solution, based on example in matplotlib documentation.
Resulting in the following image
Side note. The grid you gave in your MWE was quite heavy to be processed, had to downscale it.
Hope this helps!