Wgs

SCPI Command :

[SOURce<HW>]:BB:GNSS:ADGeneration:GALileo:LOCation:COORdinates:DECimal:[WGS]
Commands in total: 1
Subgroups: 0
Direct child commands: 1
class WgsStruct[source]

Response structure. Fields:

  • 1 Longitude: float: float Range: -180 to 180

  • 2 Latitude: float: float Range: -90 to 90

  • 3 Altitude: float: float Range: -10E3 to 50E6

get() WgsStruct[source]
# [SOURce<HW>]:BB:GNSS:ADGeneration:GALileo:LOCation:COORdinates:DECimal:[WGS]
value: WgsStruct = driver.source.bb.gnss.adGeneration.galileo.location.coordinates.decimal.wgs.get()

Sets the geographic reference location in decimal format.

Returns:

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

set(longitude: float, latitude: float, altitude: float) None[source]
# [SOURce<HW>]:BB:GNSS:ADGeneration:GALileo:LOCation:COORdinates:DECimal:[WGS]
driver.source.bb.gnss.adGeneration.galileo.location.coordinates.decimal.wgs.set(longitude = 1.0, latitude = 1.0, altitude = 1.0)

Sets the geographic reference location in decimal format.

Parameters:
  • longitude – float Range: -180 to 180

  • latitude – float Range: -90 to 90

  • altitude – float Range: -10E3 to 50E6