Start

SCPI Commands :

[SOURce<HW>]:BB:GNSS:TIME:STARt:TBASis
[SOURce<HW>]:BB:GNSS:TIME:STARt:TOWeek
[SOURce<HW>]:BB:GNSS:TIME:STARt:WNUMber
Commands in total: 42
Subgroups: 12
Direct child commands: 3
get_tbasis() TimeBasis[source]
# [SOURce<HW>]:BB:GNSS:TIME:STARt:TBASis
value: enums.TimeBasis = driver.source.bb.gnss.time.start.get_tbasis()

Sets the timebase to enter the simulation start time. This timebase is also the timebase for assistance data generation, see method RsSmw.source.bb.gnss.adGeneration.gps.toaData.tbasis() .

Returns:

system_time: UTC | GPS | GST | GLO | BDT | NAV

get_to_week() float[source]
# [SOURce<HW>]:BB:GNSS:TIME:STARt:TOWeek
value: float = driver.source.bb.gnss.time.start.get_to_week()

If time base is GPS or GST, sets the simulation start time within week set with the method RsSmw.source.bb.gnss.time.start.wnumber() .

Returns:

tow: float Number of seconds since the beginning of the week Range: 0 to 604799.999

get_wnumber() int[source]
# [SOURce<HW>]:BB:GNSS:TIME:STARt:WNUMber
value: int = driver.source.bb.gnss.time.start.get_wnumber()

If time base is GPS or GST, sets the week number (WN) .

Returns:

week: integer The weeks are numbered starting from a reference time point (WN_REF=0) , that depends on the navigation standard. Range: 0 to 9999``*53``

set_tbasis(system_time: TimeBasis) None[source]
# [SOURce<HW>]:BB:GNSS:TIME:STARt:TBASis
driver.source.bb.gnss.time.start.set_tbasis(system_time = enums.TimeBasis.BDT)

Sets the timebase to enter the simulation start time. This timebase is also the timebase for assistance data generation, see method RsSmw.source.bb.gnss.adGeneration.gps.toaData.tbasis() .

Parameters:

system_time – UTC | GPS | GST | GLO | BDT | NAV

set_to_week(tow: float) None[source]
# [SOURce<HW>]:BB:GNSS:TIME:STARt:TOWeek
driver.source.bb.gnss.time.start.set_to_week(tow = 1.0)

If time base is GPS or GST, sets the simulation start time within week set with the method RsSmw.source.bb.gnss.time.start.wnumber() .

Parameters:

tow – float Number of seconds since the beginning of the week Range: 0 to 604799.999

set_wnumber(week: int) None[source]
# [SOURce<HW>]:BB:GNSS:TIME:STARt:WNUMber
driver.source.bb.gnss.time.start.set_wnumber(week = 1)

If time base is GPS or GST, sets the week number (WN) .

Parameters:

week – integer The weeks are numbered starting from a reference time point (WN_REF=0) , that depends on the navigation standard. Range: 0 to 9999``*53``

Cloning the Group

# Create a copy of the original group, that exists independently
start_copy = driver.source.bb.gnss.time.start.clone()

Subgroups