python-ogn-client/ogn/parser/aprs_comment/lt24_parser.py

17 wiersze
633 B
Python

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
2017-10-05 08:36:53 +00:00
from .base import BaseParser
class LT24Parser(BaseParser):
def __init__(self):
self.beacon_type = 'lt24'
2020-05-21 21:14:31 +00:00
self.position_pattern = PATTERN_LT24_POSITION_COMMENT
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)
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}