1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
/***************************************************************************
dumptqsldata.c - description
-------------------
begin : Mon Mar 3 2003
copyright : (C) 2003 by ARRL
author : Jon Bloom
email : jbloom@arrl.org
revision : $Id: dumptqsldata.cpp,v 1.7 2005/02/18 20:21:01 ke3z Exp $
***************************************************************************/
/* Dumps the config data from the TQSL library */
#include <stdio.h>
#include <stdlib.h>
#include "tqsllib.h"
void
errchk(int stat) {
if (stat) {
printf("ERROR: %s\n", tqsl_getErrorString());
exit(1);
}
}
int
main() {
int count, i;
const char *cp1, *cp2;
tQSL_Date start, end;
int low, high;
char buf1[20], buf2[20];
errchk(tqsl_init());
puts("===== MODES =====\n Mode Group");
errchk(tqsl_getNumMode(&count));
for (i = 0; i < count; i++) {
errchk(tqsl_getMode(i, &cp1, &cp2));
printf(" %-10.10s %s\n", cp1, cp2);
}
puts("\n===== BANDS =====\n Band Spectrum Low High");
errchk(tqsl_getNumBand(&count));
for (i = 0; i < count; i++) {
errchk(tqsl_getBand(i, &cp1, &cp2, &low, &high));
printf(" %-10.10s %-8.8s %-8d %d\n", cp1, cp2, low, high);
}
puts("\n===== DXCC =====\n Entity Name");
errchk(tqsl_getNumDXCCEntity(&count));
for (i = 0; i < count; i++) {
errchk(tqsl_getDXCCEntity(i, &low, &cp1));
printf(" %-6d %s\n", low, cp1);
}
puts("\n===== PROP_MODES =====\n Mode Descrip");
errchk(tqsl_getNumPropagationMode(&count));
for (i = 0; i < count; i++) {
errchk(tqsl_getPropagationMode(i, &cp1, &cp2));
printf(" %-6s %s\n", cp1, cp2);
}
puts("\n===== SATELLITES =====\n Sat Start Date End Date Descrip");
errchk(tqsl_getNumSatellite(&count));
for (i = 0; i < count; i++) {
errchk(tqsl_getSatellite(i, &cp1, &cp2, &start, &end));
buf1[0] = buf2[0] = '\0';
tqsl_convertDateToText(&start, buf1, sizeof buf1);
tqsl_convertDateToText(&end, buf2, sizeof buf2);
printf(" %-6s %-10s %-10s %s\n", cp1, buf1, buf2, cp2);
}
return 0;
}
|