Using gnuplot 5.0 patchlevel 5, I am trying to create an eps file containing a contour plot. However, the contour lines are accompanied by a grid and do not have the requested color. The output using the png terminal is just fine.
Here is the minimum code I use to generate the eps image:
set terminal epscairo
set output "test.eps"
set pm3d map impl
set style increment user
set contour
do for [i=1:5] { set style line i lc rgb "black" lw 3}
splot "data.dat" w pm3d notitle
eps image created by gnuplot with the funny feature around the contour
replacing the epscairo terminal by png gives the desired output:
png image created by gnuplot, this how I would like the eps image to look like
The data file I am using can be found here: data.dat