Utc

SCPI Commands :

[SOURce<HW>]:BB:GNSS:TIME:STARt:UTC:DATE
[SOURce<HW>]:BB:GNSS:TIME:STARt:UTC:OFFSet
[SOURce<HW>]:BB:GNSS:TIME:STARt:UTC:TIME
class UtcCls[source]

Utc commands group definition. 3 total commands, 0 Subgroups, 3 group commands

class DateStruct[source]

Structure for reading output parameters. Fields:

  • Year: int: integer Range: 1980 to 9999

  • Month: int: integer Range: 1 to 12

  • Day: int: integer Range: 1 to 31

class TimeStruct[source]

Structure for reading output parameters. Fields:

  • Hour: int: integer Range: 0 to 23

  • Minute: int: integer Range: 0 to 59

  • Second: float: float Range: 0 to 59.999

get_date() DateStruct[source]
# SCPI: [SOURce<HW>]:BB:GNSS:TIME:STARt:UTC:DATE
value: DateStruct = driver.source.bb.gnss.time.start.utc.get_date()

Queries the date at the simulation start time of the selected navigation standard.

return

structure: for return value, see the help for DateStruct structure arguments.

get_offset() float[source]
# SCPI: [SOURce<HW>]:BB:GNSS:TIME:STARt:UTC:OFFSet
value: float = driver.source.bb.gnss.time.start.utc.get_offset()

Queries the time offset between the time in the navigation standard and UTC.

return

utc_offset: float Range: -1E6 to 1E6

get_time() TimeStruct[source]
# SCPI: [SOURce<HW>]:BB:GNSS:TIME:STARt:UTC:TIME
value: TimeStruct = driver.source.bb.gnss.time.start.utc.get_time()

Queries the simulation start time of the selected navigation standard.

return

structure: for return value, see the help for TimeStruct structure arguments.