[docs]classAlmanacCls:"""Almanac commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("almanac",core,parent)
[docs]defget_create(self)->str:"""SCPI: [SOURce<HW>]:BB:GNSS:ADGeneration:ALManac:CREate \n Snippet: value: str = driver.source.bb.gnss.adGeneration.almanac.get_create() \n Saves the current assistance data settings into the selected almanac file. Refer to 'MMEMory Subsystem' for general information on file handling in the default and in a specific directory. \n :return: filename: string Filename or complete file path The default extension is *.rs_al. It can be omitted in the filename. To save an almanac file as file with extension *.rs_yuma, specify it in the filename. """response=self._core.io.query_str('SOURce<HwInstance>:BB:GNSS:ADGeneration:ALManac:CREate?')returntrim_str_response(response)
[docs]defset_create(self,filename:str)->None:"""SCPI: [SOURce<HW>]:BB:GNSS:ADGeneration:ALManac:CREate \n Snippet: driver.source.bb.gnss.adGeneration.almanac.set_create(filename = 'abc') \n Saves the current assistance data settings into the selected almanac file. Refer to 'MMEMory Subsystem' for general information on file handling in the default and in a specific directory. \n :param filename: string Filename or complete file path The default extension is *.rs_al. It can be omitted in the filename. To save an almanac file as file with extension *.rs_yuma, specify it in the filename. """param=Conversions.value_to_quoted_str(filename)self._core.io.write(f'SOURce<HwInstance>:BB:GNSS:ADGeneration:ALManac:CREate {param}')