[docs]classMsasCls:"""Msas commands group definition. 3 total commands, 0 Subgroups, 3 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("msas",core,parent)
[docs]defget_offset(self)->float:"""SCPI: [SOURce<HW>]:BB:GNSS:TIME:STARt:SBAS:MSAS:OFFSet \n Snippet: value: float = driver.source.bb.gnss.time.start.sbas.msas.get_offset() \n Queries the time offset between the time in the navigation standard and UTC. \n :return: utc_offset: float Range: -1E6 to 1E6 """response=self._core.io.query_str('SOURce<HwInstance>:BB:GNSS:TIME:STARt:SBAS:MSAS:OFFSet?')returnConversions.str_to_float(response)
[docs]defget_to_week(self)->float:"""SCPI: [SOURce<HW>]:BB:GNSS:TIME:STARt:SBAS:MSAS:TOWeek \n Snippet: value: float = driver.source.bb.gnss.time.start.sbas.msas.get_to_week() \n Queries the time of week at the simulation start of the selected navigation standard. \n :return: tow: float Range: 0 to 604799.999 """response=self._core.io.query_str('SOURce<HwInstance>:BB:GNSS:TIME:STARt:SBAS:MSAS:TOWeek?')returnConversions.str_to_float(response)
[docs]defget_wnumber(self)->int:"""SCPI: [SOURce<HW>]:BB:GNSS:TIME:STARt:SBAS:MSAS:WNUMber \n Snippet: value: int = driver.source.bb.gnss.time.start.sbas.msas.get_wnumber() \n Queries the week number at the simulation start of the selected navigation standard. \n :return: system_week_number: integer Range: 0 to 10000 """response=self._core.io.query_str('SOURce<HwInstance>:BB:GNSS:TIME:STARt:SBAS:MSAS:WNUMber?')returnConversions.str_to_int(response)