|
From: <HBB...@t-...> - 2007-11-16 22:33:03
|
Wesley Rodrigues wrote:
> splot 'brazil2pts.txt' using 1:2:0 with lines, 'map.dat' using
> ($4):($3):($5) with pm3d
I'm pretty sure you'll have to draw the map first, then the outline of
brazil on top of it:
splot \
'map.dat' using ($4):($3):($5) with pm3d, \
'brazil2pts.txt' using 1:2:0 with lines
|