Please I would like to have unique black lines for my 2D contour.
set terminal png size 800,800 font 'Times New Roman, 12'
set output 'TH1.png'
set view map
set pm3d map
unset surface
set cont base
set cntrparam levels 50
set isosamples 10
unset key
set xrange[0:180]
set yrange[0:180]
set xlabel '{/Symbol q}'
set ylabel '{/Symbol q}''
set palette rgb 33,13,10
splot 'TH1TH2.dat' w ima, 'TH1TH2.dat' w l lt -4 lw 1.6
For values great than 2000 I want a red contour.
Can someone help me?
Here is my 2D cut But I would like to have only the black lines.
link for the data
It would be ideal if we could use the original data (maybe minimized). Anyway, the following example creates its own data. If you need further explanations please let me know.
Script:
Result:
Addition: (with OP's data, please reduce for a minimal example.)
I'm still confused. Ok, contour lines all in black, but values above 2000 in red? You could use the ternary operator to map all values >=2000 to the fixed value of 6000 (which will be red).
Script:
Result:
Script 2:
Result 2: