Selection

SCPI Command :

[SOURce<HW>]:BB:GNSS:SV:SELection:MODE
class SelectionCls[source]

Selection commands group definition. 33 total commands, 10 Subgroups, 1 group commands

get_mode() RsSmbv.enums.SelCriteria[source]
# SCPI: [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.

return

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: RsSmbv.enums.SelCriteria) None[source]
# SCPI: [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.

param 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 clone of the original group, that exists independently
group2 = driver.source.bb.gnss.sv.selection.clone()

Subgroups