Stu2 - W7IY

DX Packet Cluster - analysis of spots

What is this?

Goal is to find a way to decide when to change bands in a contest based on DX cluster activity. Determine where and when to move the antenna. Since this is based on the DX cluster, there are a lot of underlying assumptions. (e.g. cluster activity doens't necessarily mean a band is open - or does it?)

How does it work?

A program collects spots via a telnet session. The spots are logged in a mysql database, then parsed every 10 minutes. The data is dumped to round robin DB using rrdtool. Graphs are made every 10 minutes using the rrdtool. (rrdtool allows you to keep a data archive that never grows. The tools can create graphs to display the values over time.)

What can we see?

Tables:

  1. Spots per band - showing the distribution of data over the last 10 minutes, 30m, 1 hour, 2h and total. This works well for determining which band has the most activity.
  2. CQ Zone Distribution - shows the spots over time sorted by CQ zone. This locates the activity by zone.

Graphs:

  1. Azimuth graphs - create a query to show the distribution of activity by azimuth for a specific region, time period and band. Use this to decide where to point the antenna.
  2. Current 2 day trend graphs - Graph spots for each band over time. Select a source region and mode from the table. See the comment for a listing of eastern states. Use this to select a band.
  3. Current 2 day trend graphs - Graph spots for each band over time. Shows all regions on a single graph.

Interesting to see the differences between spots originating in various regions. Note the lag/lead times between the Eastern region and the world.

Archives:

1. Archived CQWW graphs and stats - see what happened in 2004

To Do:

  1. Fix graph limits - I set the limit of the graphs to be identical so you can compare across graphs, but this doesn't account for the HUGE difference between contest/non-contest periods. Look at ssb graphs for an example
  2. Do a little more analysis of the graphs
  3. Write up a paper.

Notes:

To get AC17 spot format to make it easier to parse:

Connect using "set/dx_arpc on"

Data is sampled every 10 minutes. Rates are calculated in graphs by mulitiplying sample by 6, which gives 'spots per hour' instead of 'spots per 10 minutes'.

Program files: (mostly perl)