Wgs

SCPI Command :

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

Response structure. Fields:

  • 1 Longitude: float: float Defines the longitude. Range: -180 to 180

  • 2 Latitude: float: float Defines the latitude. Range: -90 to 90

  • 3 Altitude: float: float Defines the altitude. The altitude value is in meters and is the height above the reference ellipsoid. Range: -10E3 to 50E6

get(vehicle=Vehicle.Default) WgsStruct[source]
# [SOURce<HW>]:BB:GNSS:RECeiver:[V<ST>]:LOCation:COORdinates:DECimal:[WGS]
value: WgsStruct = driver.source.bb.gnss.receiver.v.location.coordinates.decimal.wgs.get(vehicle = repcap.Vehicle.Default)

Defines the coordinates of the geographic location of the GNSS receiver in decimal format.

Parameters:

vehicle – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘V’)

Returns:

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

set(longitude: float, latitude: float, altitude: float, vehicle=Vehicle.Default) None[source]
# [SOURce<HW>]:BB:GNSS:RECeiver:[V<ST>]:LOCation:COORdinates:DECimal:[WGS]
driver.source.bb.gnss.receiver.v.location.coordinates.decimal.wgs.set(longitude = 1.0, latitude = 1.0, altitude = 1.0, vehicle = repcap.Vehicle.Default)

Defines the coordinates of the geographic location of the GNSS receiver in decimal format.

Parameters:
  • longitude – float Defines the longitude. Range: -180 to 180

  • latitude – float Defines the latitude. Range: -90 to 90

  • altitude – float Defines the altitude. The altitude value is in meters and is the height above the reference ellipsoid. Range: -10E3 to 50E6

  • vehicle – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘V’)