Skip to content

Commit

Permalink
add parser for cattrack with TTF column
Browse files Browse the repository at this point in the history
  • Loading branch information
nicokant committed Feb 26, 2024
1 parent c60cc49 commit 8878c84
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions wizard/parsers/parser_gps.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,11 @@ class GPSCatTrackNoDivider(GPSCatTrackParser):
}


class GPSCatTrackNoDividerTTF(GPSCatTrackNoDivider):
FIELDS = [
"Date", "Time", "Latitude", "Longitude", "Altitude", "Satellites", "HDOP", "PDOP", "TTF [s]"]


class GPS2JMParser(CSVParser):
'''
Parser for 2Jm format
Expand Down Expand Up @@ -361,4 +366,5 @@ def __init__(self, stream):
GPS2JMParser,
GPSCatTrackNoDivider,
GPSUnknownFormatParserFromExcel,
GPSCatTrackNoDividerTTF,
]

0 comments on commit 8878c84

Please sign in to comment.