from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class GlonassCls:
"""Glonass commands group definition. 4 total commands, 0 Subgroups, 4 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("glonass", core, parent)
[docs] def get_active(self) -> int:
"""SCPI: [SOURce<HW>]:BB:GNSS:SV:SELection:GLONass:ACTive \n
Snippet: value: int = driver.source.bb.gnss.sv.selection.glonass.get_active() \n
Queries the number of active satellites per GNSS system that are currently part of the satellite's constellation. \n
:return: active_svs: integer Range: 0 to 24
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:GNSS:SV:SELection:GLONass:ACTive?')
return Conversions.str_to_int(response)
[docs] def get_available(self) -> int:
"""SCPI: [SOURce<HW>]:BB:GNSS:SV:SELection:GLONass:AVAilable \n
Snippet: value: int = driver.source.bb.gnss.sv.selection.glonass.get_available() \n
Queries the number of available satellites per GNSS system. \n
:return: available_svs: integer Range: 0 to 40
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:GNSS:SV:SELection:GLONass:AVAilable?')
return Conversions.str_to_int(response)
[docs] def get_max(self) -> int:
"""SCPI: [SOURce<HW>]:BB:GNSS:SV:SELection:GLONass:MAX \n
Snippet: value: int = driver.source.bb.gnss.sv.selection.glonass.get_max() \n
Sets the minimum and maximum number of satellites per GNSS system that can be included in the satellite constellation. \n
:return: maximum_svs: integer Range: 0 to 24
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:GNSS:SV:SELection:GLONass:MAX?')
return Conversions.str_to_int(response)
[docs] def set_max(self, maximum_svs: int) -> None:
"""SCPI: [SOURce<HW>]:BB:GNSS:SV:SELection:GLONass:MAX \n
Snippet: driver.source.bb.gnss.sv.selection.glonass.set_max(maximum_svs = 1) \n
Sets the minimum and maximum number of satellites per GNSS system that can be included in the satellite constellation. \n
:param maximum_svs: integer Range: 0 to 24
"""
param = Conversions.decimal_value_to_str(maximum_svs)
self._core.io.write(f'SOURce<HwInstance>:BB:GNSS:SV:SELection:GLONass:MAX {param}')
[docs] def get_min(self) -> int:
"""SCPI: [SOURce<HW>]:BB:GNSS:SV:SELection:GLONass:MIN \n
Snippet: value: int = driver.source.bb.gnss.sv.selection.glonass.get_min() \n
Sets the minimum and maximum number of satellites per GNSS system that can be included in the satellite constellation. \n
:return: minimum_svs: No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:GNSS:SV:SELection:GLONass:MIN?')
return Conversions.str_to_int(response)
[docs] def set_min(self, minimum_svs: int) -> None:
"""SCPI: [SOURce<HW>]:BB:GNSS:SV:SELection:GLONass:MIN \n
Snippet: driver.source.bb.gnss.sv.selection.glonass.set_min(minimum_svs = 1) \n
Sets the minimum and maximum number of satellites per GNSS system that can be included in the satellite constellation. \n
:param minimum_svs: integer Range: 0 to 24
"""
param = Conversions.decimal_value_to_str(minimum_svs)
self._core.io.write(f'SOURce<HwInstance>:BB:GNSS:SV:SELection:GLONass:MIN {param}')