Selection
SCPI Command :
[SOURce<HW>]:BB:GNSS:SV:SELection:MODE
- Commands in total: 33Subgroups: 10Direct child commands: 1
- get_mode() SelCriteria[source]
# [SOURce<HW>]:BB:GNSS:SV:SELection:MODE value: enums.SelCriteria = driver.source.bb.gnss.sv.selection.get_mode()
Selects a criterium to define the initial satellite constellation.
- Returns:
selection_mode: MANual | ELEVation | VISibility | DOP | ADOP MANual Manual selection to add active space vehicles of the satellite constellation and remove inactive space vehicles from the satellite constellation. You can also activate invisible space vehicles. ELEVation Automatic selection of space vehicles according to their highest elevation angle. VISibility Automatic selection of space vehicles according to their longest visibility time. DOP Automatic selection with good dilution of precision (DOP) values at simulation start. ADOP Adaptive DOP mode providing automatic selection with good DOP values at simulation start and during runtime.
- set_mode(selection_mode: SelCriteria) None[source]
# [SOURce<HW>]:BB:GNSS:SV:SELection:MODE driver.source.bb.gnss.sv.selection.set_mode(selection_mode = enums.SelCriteria.ADOP)
Selects a criterium to define the initial satellite constellation.
- Parameters:
selection_mode – MANual | ELEVation | VISibility | DOP | ADOP MANual Manual selection to add active space vehicles of the satellite constellation and remove inactive space vehicles from the satellite constellation. You can also activate invisible space vehicles. ELEVation Automatic selection of space vehicles according to their highest elevation angle. VISibility Automatic selection of space vehicles according to their longest visibility time. DOP Automatic selection with good dilution of precision (DOP) values at simulation start. ADOP Adaptive DOP mode providing automatic selection with good DOP values at simulation start and during runtime.
Cloning the Group
# Create a copy of the original group, that exists independently
selection_copy = driver.source.bb.gnss.sv.selection.clone()
Subgroups