from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal import Conversions
from ....... import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class KcGlonassCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("kcGlonass", core, parent)
[docs]
def set(self, kmd_ec_glonass: float, vdbTransmitter=repcap.VdbTransmitter.Default) -> None:
"""
``[SOURce<HW>]:BB:GBAS:VDB<CH>:MCONfig:KCGLonass`` \n
Snippet: ``driver.source.bb.gbas.vdb.mconfig.kcGlonass.set(kmd_ec_glonass = 1.0, vdbTransmitter = repcap.VdbTransmitter.Default)`` \n
Sets the ephemeris missed detection parameter (Kmd_e) , category I precision approach and approach with vertical guidance
(APV) . This is a multiplier considered when calculating the ephemeris error position bound for the category I precision
approach and APV. It is derived from the probability that a detection is missed because of an ephemeris error in a
GPS/GLONASS satellite.
:param kmd_ec_glonass: float Range: 0 to 12.75
:param vdbTransmitter: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Vdb')
"""
param = Conversions.decimal_value_to_str(kmd_ec_glonass)
vdbTransmitter_cmd_val = self._cmd_group.get_repcap_cmd_value(vdbTransmitter, repcap.VdbTransmitter)
self._core.io.write(f'SOURce<HwInstance>:BB:GBAS:VDB{vdbTransmitter_cmd_val}:MCONfig:KCGLonass {param}')
[docs]
def get(self, vdbTransmitter=repcap.VdbTransmitter.Default) -> float:
"""
``[SOURce<HW>]:BB:GBAS:VDB<CH>:MCONfig:KCGLonass`` \n
Snippet: ``value: float = driver.source.bb.gbas.vdb.mconfig.kcGlonass.get(vdbTransmitter = repcap.VdbTransmitter.Default)`` \n
Sets the ephemeris missed detection parameter (Kmd_e) , category I precision approach and approach with vertical guidance
(APV) . This is a multiplier considered when calculating the ephemeris error position bound for the category I precision
approach and APV. It is derived from the probability that a detection is missed because of an ephemeris error in a
GPS/GLONASS satellite.
:param vdbTransmitter: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Vdb')
"""
vdbTransmitter_cmd_val = self._cmd_group.get_repcap_cmd_value(vdbTransmitter, repcap.VdbTransmitter)
response = self._core.io.query_str(f'SOURce<HwInstance>:BB:GBAS:VDB{vdbTransmitter_cmd_val}:MCONfig:KCGLonass?')
return Conversions.str_to_float(response)