[docs]defget_state(self)->bool:"""SCPI: [SOURce<HW>]:BB:GNSS:SYSTem:SBAS:[STATe] \n Snippet: value: bool = driver.source.bb.gnss.system.sbas.get_state() \n Queries if at least one of the SBAS system is enabled. \n :return: state: 1| ON| 0| OFF 1 At least one SBAS system is enabled. To enable each of the SBAS systems, use the corresponding command, e.g. [:SOURcehw]:BB:GNSS:SYSTem:SBAS:EGNOS[:STATe]. 0 All SBAS systems are disabled. """response=self._core.io.query_str('SOURce<HwInstance>:BB:GNSS:SYSTem:SBAS:STATe?')returnConversions.str_to_bool(response)
defclone(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)returnnew_group