2020-09-20 21:09:47 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <math.h>
|
|
|
|
|
2020-10-15 23:16:57 +00:00
|
|
|
#include <vector>
|
|
|
|
#include <algorithm>
|
|
|
|
|
2020-09-20 21:09:47 +00:00
|
|
|
#include "format.h"
|
2021-03-05 22:19:04 +00:00
|
|
|
#include "ognconv.h"
|
2020-09-20 21:09:47 +00:00
|
|
|
|
2021-03-05 22:19:04 +00:00
|
|
|
static bool Earlier(const char *Line1, const char *Line2) { return strcmp(Line1, Line2)<0; }
|
2020-10-15 23:16:57 +00:00
|
|
|
|
2020-09-20 21:09:47 +00:00
|
|
|
static int Verbose = 1;
|
|
|
|
static int GeoidSepar = 40;
|
|
|
|
|
|
|
|
static FILE *OutFile = 0;
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
2020-10-19 01:02:31 +00:00
|
|
|
{ if(argc<2)
|
2020-09-20 21:09:47 +00:00
|
|
|
{ printf("Usage: %s <own-aircraft-APRS-call> <input-file.aprs>\n", argv[0]);
|
|
|
|
return 0; }
|
|
|
|
|
|
|
|
const char *OwnAcft = argv[1]; int OwnAcftLen = strlen(OwnAcft);
|
|
|
|
char OutFileName[32]; strcpy(OutFileName, OwnAcft); strcat(OutFileName, ".IGC");
|
|
|
|
|
|
|
|
const char *InpFileName = argv[2];
|
2020-10-19 01:02:31 +00:00
|
|
|
FILE *InpFile;
|
|
|
|
if(InpFileName==0 || strcmp(InpFileName,"-")==0) InpFile=stdin;
|
|
|
|
else
|
|
|
|
{ InpFile=fopen(InpFileName, "rt");
|
|
|
|
if(InpFile==0) { printf("Cannot open %s for read\n", InpFileName); return 0; }
|
|
|
|
}
|
2020-09-20 21:09:47 +00:00
|
|
|
|
2020-10-15 23:16:57 +00:00
|
|
|
std::vector<char *> OutLine;
|
2020-09-20 21:09:47 +00:00
|
|
|
char InpLine[256];
|
2020-10-15 23:16:57 +00:00
|
|
|
// char OutLine[256];
|
2020-09-20 21:09:47 +00:00
|
|
|
int InpLines=0;
|
2020-10-15 23:16:57 +00:00
|
|
|
// int OutLines=0;
|
|
|
|
char *Out=0;
|
2020-09-20 21:09:47 +00:00
|
|
|
for( ; ; )
|
|
|
|
{ if(fgets(InpLine, 256, InpFile)==0) break;
|
|
|
|
char *EOL = strchr(InpLine, '\n'); if(EOL==0) break;
|
|
|
|
*EOL = 0;
|
|
|
|
InpLines++;
|
|
|
|
if(memcmp(InpLine, OwnAcft, OwnAcftLen)) continue;
|
2020-10-15 23:16:57 +00:00
|
|
|
if(Out==0) Out = (char *)malloc(60);
|
|
|
|
int OutLen=APRS2IGC(Out, InpLine, GeoidSepar);
|
2020-09-20 21:09:47 +00:00
|
|
|
if(OutLen>0)
|
2020-10-15 23:16:57 +00:00
|
|
|
{ if(Verbose) printf("%s => %s [%d]\n", InpLine, Out, OutLen);
|
|
|
|
OutLine.push_back(Out); Out=0; }
|
2020-09-20 21:09:47 +00:00
|
|
|
}
|
2020-10-15 23:16:57 +00:00
|
|
|
if(Out) { free(Out); Out=0; }
|
2020-10-19 01:02:31 +00:00
|
|
|
if(InpFile!=stdin) fclose(InpFile);
|
2020-09-20 21:09:47 +00:00
|
|
|
printf("%d lines from %s\n", InpLines, InpFileName);
|
2020-10-15 23:16:57 +00:00
|
|
|
|
|
|
|
std::sort(OutLine.begin(), OutLine.end(), Earlier);
|
|
|
|
OutFile=fopen(OutFileName, "wt");
|
|
|
|
if(OutFile==0) { printf("Cannot open %s for write\n", OutFileName); return 0; }
|
2021-03-05 22:19:04 +00:00
|
|
|
for(size_t Idx=0; Idx<OutLine.size(); Idx++)
|
2021-03-06 20:19:08 +00:00
|
|
|
{ fprintf(OutFile, "%s", OutLine[Idx]); }
|
2020-09-20 21:09:47 +00:00
|
|
|
fclose(OutFile);
|
2021-03-05 22:19:04 +00:00
|
|
|
printf("%lu lines to %s\n", OutLine.size(), OutFileName);
|
2020-09-20 21:09:47 +00:00
|
|
|
|
|
|
|
return 0; }
|