Source code for RsSmbv.Implementations.Source.Bb.Gnss.System.Sbas.Gagan

from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
from ........Internal import Conversions


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class GaganCls: """Gagan commands group definition. 24 total commands, 1 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("gagan", core, parent) @property def nmessage(self): """nmessage commands group. 1 Sub-classes, 0 commands.""" if not hasattr(self, '_nmessage'): from .Nmessage import NmessageCls self._nmessage = NmessageCls(self._core, self._cmd_group) return self._nmessage
[docs] def get_state(self) -> bool: """SCPI: [SOURce<HW>]:BB:GNSS:SYSTem:SBAS:GAGAN:[STATe] \n Snippet: value: bool = driver.source.bb.gnss.system.sbas.gagan.get_state() \n Defines if satellites from the selected GNSS system are included in the simulated satellites constellation. \n :return: state: 1| ON| 0| OFF Disabling a GNSS system deactivates all SVID and signals from this system. """ response = self._core.io.query_str('SOURce<HwInstance>:BB:GNSS:SYSTem:SBAS:GAGAN:STATe?') return Conversions.str_to_bool(response)
[docs] def set_state(self, state: bool) -> None: """SCPI: [SOURce<HW>]:BB:GNSS:SYSTem:SBAS:GAGAN:[STATe] \n Snippet: driver.source.bb.gnss.system.sbas.gagan.set_state(state = False) \n Defines if satellites from the selected GNSS system are included in the simulated satellites constellation. \n :param state: 1| ON| 0| OFF Disabling a GNSS system deactivates all SVID and signals from this system. """ param = Conversions.bool_to_str(state) self._core.io.write(f'SOURce<HwInstance>:BB:GNSS:SYSTem:SBAS:GAGAN:STATe {param}')
def clone(self) -> 'GaganCls': """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 = GaganCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group