summaryrefslogtreecommitdiff
path: root/ADSBDecoder/main.swift
diff options
context:
space:
mode:
Diffstat (limited to 'ADSBDecoder/main.swift')
-rw-r--r--ADSBDecoder/main.swift40
1 files changed, 0 insertions, 40 deletions
diff --git a/ADSBDecoder/main.swift b/ADSBDecoder/main.swift
index a346fbb..3148a9d 100644
--- a/ADSBDecoder/main.swift
+++ b/ADSBDecoder/main.swift
@@ -10,19 +10,7 @@ import ArgumentParser
import RegexBuilder
import SQLite3
-//return true if file excists
-func checkIfFileExists(_ fname: String) -> Bool {
- let fm = FileManager.default
- if fm.fileExists(atPath: fname) {
- return true
- }
- return false
-}
-//get current run directory
-func getCurrentDirPath() -> String {
- return Process().currentDirectoryPath
-}
struct CommandLineArgs: ParsableCommand {
@Option(name: .shortAndLong) var inputfile: String
@@ -52,34 +40,6 @@ do {
exit(1)
}
-
-
-let matchADSBLong = Regex {
- Anchor.startOfLine
- "*"
-
- Repeat(
- CharacterClass(
- ("a"..."f"),
- ("0"..."9")
- )
- ,count:28)
-
- ";"
-}
-
-let matchADSBShort = Regex {
- Anchor.startOfLine
- "*"
- Repeat(
- CharacterClass(
- ("a"..."f"),
- ("0"..."9")
- )
- ,count:14)
- ";"
-}
-
//gather stats
var q_df = QueryDF()
var q_dftc = QueryDF17TC()