set term postscript eps enhanced colour # define convert functions RA2POS( hour, min, sec) = hour + min/60.0 + sec/60.0/60.0 DEC2POS( deg, arcmin, arcsec) = deg + (deg < 0 ? -arcmin : arcmin)/60.0 + (deg < 0 ? -arcsec : arcsec)/60.0/60.0 set size square set xlabel "RA" set ylabel "DEC" set xrange [0:24] set yrange [-90:90] set xtics 4 set ytics 30 set output "plot04.eps" plot "crop.dat"\ using (($7 < 1.0) ? RA2POS($1,$2,$3) : 1/0):(DEC2POS($4,$5,$6))\ notitle\ with points lt 1 pt 13 ps 1.2,\ ""\ using ((1.0 <= $7 && $7 < 2.0) ? RA2POS($1,$2,$3) : 1/0):(DEC2POS($4,$5,$6))\ notitle\ with points lt 1 pt 13 ps 1.0,\ ""\ using ((2.0 <= $7 && $7 < 3.0) ? RA2POS($1,$2,$3) : 1/0):(DEC2POS($4,$5,$6))\ notitle\ with points lt 1 pt 13 ps 0.8,\ ""\ using ((3.0 <= $7 && $7 < 4.0) ? RA2POS($1,$2,$3) : 1/0):(DEC2POS($4,$5,$6))\ notitle\ with points lt 1 pt 13 ps 0.6,\ ""\ using ((4.0 <= $7) ? RA2POS($1,$2,$3) : 1/0):(DEC2POS($4,$5,$6))\ notitle\ with points lt 1 pt 13 ps 0.1