from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class SbasCls:
"""Sbas commands group definition. 32 total commands, 4 Subgroups, 0 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("sbas", core, parent)
@property
def egnos(self):
"""egnos commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_egnos'):
from .Egnos import EgnosCls
self._egnos = EgnosCls(self._core, self._cmd_group)
return self._egnos
@property
def gagan(self):
"""gagan commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_gagan'):
from .Gagan import GaganCls
self._gagan = GaganCls(self._core, self._cmd_group)
return self._gagan
@property
def msas(self):
"""msas commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_msas'):
from .Msas import MsasCls
self._msas = MsasCls(self._core, self._cmd_group)
return self._msas
@property
def waas(self):
"""waas commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_waas'):
from .Waas import WaasCls
self._waas = WaasCls(self._core, self._cmd_group)
return self._waas
def clone(self) -> 'SbasCls':
"""Clones the group by creating new object from it and its whole existing subgroups
Also copies all the existing default Repeated Capabilities setting,
which you can change independently without affecting the original group"""
new_group = SbasCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group