Rt
SCPI Commands :
[SOURce<HW>]:BB:GNSS:RT:HDOP
[SOURce<HW>]:BB:GNSS:RT:HWTime
[SOURce<HW>]:BB:GNSS:RT:PDOP
[SOURce<HW>]:BB:GNSS:RT:VDOP
- class RtCls[source]
Rt commands group definition. 31 total commands, 9 Subgroups, 4 group commands
- get_hdop() float [source]
# SCPI: [SOURce<HW>]:BB:GNSS:RT:HDOP value: float = driver.source.bb.gnss.rt.get_hdop()
Queries the horizontal dilution of precision (HDOP) value of the selected satellite constellation.
- return
realtime_hdop: float
- get_hw_time() float [source]
# SCPI: [SOURce<HW>]:BB:GNSS:RT:HWTime value: float = driver.source.bb.gnss.rt.get_hw_time()
Queries the time elapsed since the simulation start. To query the simulation start time, use the command: [:SOURce<hw>]:BB:GNSS:TIME:STARt:TIME.
- return
elapsed_time: float Range: 0 to max, Unit: s
- get_pdop() float [source]
# SCPI: [SOURce<HW>]:BB:GNSS:RT:PDOP value: float = driver.source.bb.gnss.rt.get_pdop()
Queries the position dilution of precision (PDOP) value of the selected satellite constellation.
- return
realtime_pdop: float
- get_vdop() float [source]
# SCPI: [SOURce<HW>]:BB:GNSS:RT:VDOP value: float = driver.source.bb.gnss.rt.get_vdop()
Queries the vertical dilution of precision (VDOP) value of the selected satellite constellation.
- return
realtime_vdop: float
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.source.bb.gnss.rt.clone()
Subgroups