[docs]classCatalogCls:"""Catalog commands group definition. 2 total commands, 0 Subgroups, 2 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("catalog",core,parent)
[docs]defget_predefined(self)->List[str]:"""SCPI: [SOURce<HW>]:BB:GNSS:OBSCuration:VOBS:CATalog:PREDefined \n Snippet: value: List[str] = driver.source.bb.gnss.obscuration.vobs.catalog.get_predefined() \n Queries the names of predefined files in the system directory. INTRO_CMD_HELP: Listed are only the following file types: \n - Obstacles description files (*.rs_obst) - Roadside buildings description files (*.rs_buil) - Land mobile multipath (LMM) files (*.lmm) \n :return: gnss_obsc_vert_obst_cat_names: No help available """response=self._core.io.query_str('SOURce<HwInstance>:BB:GNSS:OBSCuration:VOBS:CATalog:PREDefined?')returnConversions.str_to_str_list(response)
[docs]defget_user(self)->List[str]:"""SCPI: [SOURce<HW>]:BB:GNSS:OBSCuration:VOBS:CATalog:USER \n Snippet: value: List[str] = driver.source.bb.gnss.obscuration.vobs.catalog.get_user() \n Queries the names of the user-defined files in the default directory. The default directory is set using command method RsSmw.MassMemory.currentDirectory. INTRO_CMD_HELP: Listed are the following file types: \n - Obstacles description files (*.rs_obst) - Roadside buildings description files (*.rs_buil) - Land mobile multipath (LMM) files (*.lmm) \n :return: gnss_obsc_vert_obst_user_cat_names: No help available """response=self._core.io.query_str('SOURce<HwInstance>:BB:GNSS:OBSCuration:VOBS:CATalog:USER?')returnConversions.str_to_str_list(response)