Skip to content

Commit

Permalink
fix #26
Browse files Browse the repository at this point in the history
  • Loading branch information
nicokant committed Jun 14, 2024
1 parent 2eb3d3c commit 64b2b4b
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion wizard/parsers/tdr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class TDR2Parser(TDRParser):
class PathtrackPressParser(Parser):
DATATYPE = "tdr"
DIVIDER = "*" * 85 + "\n"
HEAD = DIVIDER + "PathTrack Raw Pressure Data File Downloaded from Base Station 50854 (NanoFix Pressure Format)"
HEAD = DIVIDER + "PathTrack Raw Pressure Data File Downloaded from Base Station"
FIELDS = (
"year",
"month",
Expand Down Expand Up @@ -127,9 +127,19 @@ class SimpleTDR(CSVParser):
]


class SimpleTDRVariantDate(CSVParser):
DATATYPE = "tdr"
FIELDS = [
"Date/Time Stamp",
"Pressure",
"Temp",
]


PARSERS = [
TDRParser,
TDR2Parser,
PathtrackPressParser,
SimpleTDR,
SimpleTDRVariantDate,
]

0 comments on commit 64b2b4b

Please sign in to comment.