1#
2#  xdx - GTK+ DX-cluster client for amateur radio
3#  Copyright (C) 2002-2006 Joop Stakenborg <pg4i@amsat.org>
4#
5#  This program is free software; you can redistribute it and/or modify
6#  it under the terms of the GNU General Public License as published by
7#  the Free Software Foundation; either version 2 of the License, or
8#  (at your option) any later version.
9#
10#  This program is distributed in the hope that it will be useful,
11#  but WITHOUT ANY WARRANTY; without even the implied warranty of
12#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13#  GNU Library General Public License for more details.
14#
15#  You should have received a copy of the GNU General Public License
16#  along with this program; if not, write to the Free Software
17#  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18#
19
20# gnuplot script for displaying wwv data, call with 'gnuplot wwv.gnuplot'
21# version 1.0, March 8, 2006 - initial release, distributed with xdx-2.0
22
23set term png xFFFFFF
24set out '~/.xdx/DK0WCY.png
25set format x "%.0f"
26set xtics rotate
27
28set multiplot
29
30set title "Solar Flux Index"
31set size 0.4,0.45
32set origin 0.0,0.55
33plot '~/.xdx/DK0WCY-3.tsv' using 1:2  with lines notitle
34
35set title "A Index"
36set size 0.4,0.45
37set origin 0.5,0.55
38plot '~/.xdx/DK0WCY-3.tsv' using 1:3  with lines notitle
39
40set title "K Index"
41set size 0.4,0.45
42set origin 0.0,0.05
43plot '~/.xdx/DK0WCY-3.tsv' using 1:4  with lines notitle
44
45set title "Sunspot number"
46set size 0.4,0.45
47set origin 0.5,0.05
48plot '~/.xdx/DK0WCY-3.tsv' using 1:5  with lines notitle
49
50unset multiplot
51