I'm trying to make a colormap in Python, and I have everything except this minor annoyance that is making the map look bad.
The code is straightforward. I am just using a matrix of values and plotting them using tricontourf. I am the looping over collections in my plot and changing the edgecolor and linewidth.
What I've noticed is the following. Say I want a thin white line around every contour, then I do.
CS = plt.tricontourf(X,Y,Z, 70, cmap=cm.seismic, antialiased=True)
print CS.collections
for c in CS.collections:
c.set_edgecolor('white')
c.set_linewidth(1)
plt.colorbar()
plt.show()
and get
Now obviously we look at this and say, well, the white lines around the contours look pretty bad, lets get rid of them. You could do this in a number of ways, perhaps by setting the linewidth=0 or the color to 'none'. I'll just do both in the following code. We have
CS = plt.tricontourf(X,Y,Z, 70, cmap=cm.seismic, antialiased=True)
print CS.collections
for c in CS.collections:
c.set_edgecolor('none')
c.set_linewidth(0)
plt.colorbar()
plt.show()
and get
Better, but do you still see the faint outlines of the contours? This is not just a shift in color from the colormap - this is clearly a very light line going through each contour.
Is there a way to somehow blend the colormap so that this doesn't happen? Thanks.
When you save a picture in pdf format, the problem becomes even more visible. With an increase in the number of contours, the picture is smoothed, but there are still problems with pdf.
For example:
But very light lines running through each contour are still visible in pdf.
A partial solution is to use
tricontour
instead oftricontourf
with somelinewidths
option:tricontourf
does not support this option.