http://arrrrv3dzzoluxubt3p24lpn7qu4rxuem3fb4kcmboji3dgpkgt4b2ad.onion/worter/gnuplot
/bin/tcsh -f
echo "# long lat lat*100" > polar-test.dat
foreach i (`seq 30 60`)
foreach j (`seq -w -20 2 20`)
echo "$j $i "`echo "$i * 100"| bc -l` >> polar-test.dat
end
end Simple cartesian lat,lon plot cartesian-test.gnu: # plot lat/long points as is in cartesian plane
reset
file='polar-test.dat'
set title "Cartesian Map Test" textcolor rgb "white"
set cblabel "Latitude*100" textcolor rgb "white"
set term pngcairo background "#000000"
set output 'cartesian-test.png'
#Greenwich...