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_SKYLINES_POSITION_COMMENT
|
2018-03-10 08:15:09 +00:00
|
|
|
|
2017-10-05 08:36:53 +00:00
|
|
|
from .base import BaseParser
|
|
|
|
|
|
|
|
|
|
|
|
class SkylinesParser(BaseParser):
|
|
|
|
def __init__(self):
|
2018-03-10 07:58:32 +00:00
|
|
|
self.beacon_type = 'skylines'
|
2020-05-21 21:14:31 +00:00
|
|
|
self.position_pattern = PATTERN_SKYLINES_POSITION_COMMENT
|
2018-03-10 08:15:09 +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)
|
|
|
|
return {'address': match.group('id'),
|
|
|
|
'climb_rate': int(match.group('climb_rate')) * FPM_TO_MS if match.group('climb_rate') else None}
|