2018-04-30 19:00:08 +00:00
|
|
|
from ogn.parser.utils import FPM_TO_MS
|
2018-03-10 08:35:51 +00:00
|
|
|
from ogn.parser.pattern import PATTERN_LT24_POSITION_COMMENT
|
2018-03-10 07:58:32 +00:00
|
|
|
|
2017-10-05 08:36:53 +00:00
|
|
|
from .base import BaseParser
|
|
|
|
|
|
|
|
|
|
|
|
class LT24Parser(BaseParser):
|
|
|
|
def __init__(self):
|
2018-03-10 07:58:32 +00:00
|
|
|
self.beacon_type = 'lt24'
|
2020-05-21 21:14:31 +00:00
|
|
|
self.position_pattern = PATTERN_LT24_POSITION_COMMENT
|
2018-03-10 07:58:32 +00:00
|
|
|
|
2019-06-03 19:09:57 +00:00
|
|
|
def parse_position(self, aprs_comment):
|
2020-05-21 21:14:31 +00:00
|
|
|
match = self.position_pattern.match(aprs_comment)
|
2020-05-22 08:43:41 +00:00
|
|
|
return {'lt24_id': match.group('lt24_id'),
|
2020-05-21 21:14:31 +00:00
|
|
|
'climb_rate': int(match.group('climb_rate')) * FPM_TO_MS if match.group('climb_rate') else None,
|
|
|
|
'source': match.group('source') if match.group('source') else None}
|