Club Log's propagation charts are more properly "activity charts" - a record of when QSOs have been completed, which can be indexed by DXCCs, solar flux and so on.


You can see this information graphically by using https://clublog.org/propagation.php. However, you can also retrieve the information as a JSON array directly from Club Log, as follows:


URL: https://clublog.org/activity_json.php


GET paramaters:


  • month - Month of the year, between 1 and 12 [optional]
  • lastyear - Only use data from the last 12 months [optional]
  • sfi - Minimum solar flux index [optional]
  • usfi - Maximum solar flux index [optional]
  • source - Source DXCC ID as defined in the ADIF specification
  • dest - Destination DXCC ID as defined in the ADIF specification
  • api - Your API key


Note that the source and destination DXCC values are automatically reciprocal, and you do not need to perform two queries with these values inverted.


The information returned will be a JSON array for each band, with 24 hourly elements. For example:


https://clublog.org/activity_json.php?month=6&lastyear=1&sfi=100&usfi=110&source=1&dest=291&api=[APIKEY]


Returns:


{"160":{"0":0.263158,"1":0.263158,"2":0.368421,"3":0,"4":0,"5":0.078947,"6":0,"7":0.026316,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"count":38},"80":{"0":0.111111,"1":0.222222,"2":0.333333,"3":0.333333,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"count":9}....etc


The total of each 24 hour period comes to 1.0 (ie. the data is normalised against the number of QSOs). The final array element, count, is the total number of QSOs in that band (useful for scaling one band against another).


IMPORTANT: Please do not issue intensive / recursive lookups for data through this API. Your API key may be throttled or disabled automatically. Contact Michael G7VJR to discuss your needs first!