Wgs

SCPI Command :

[SOURce<HW>]:BB:GNSS:RTK:BASE<ST>:LOCation:COORdinates:DECimal:[WGS]
class WgsCls[source]

Wgs commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class WgsStruct[source]

Response structure. Fields:

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

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

  • 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(baseSt=BaseSt.Default) WgsStruct[source]
# SCPI: [SOURce<HW>]:BB:GNSS:RTK:BASE<ST>:LOCation:COORdinates:DECimal:[WGS]
value: WgsStruct = driver.source.bb.gnss.rtk.base.location.coordinates.decimal.wgs.get(baseSt = repcap.BaseSt.Default)

Defines the coordinates of the geographic location of the RTK base station in decimal format.

param baseSt

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

return

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

set(longitude: float, latitude: float, altitude: float, baseSt=BaseSt.Default) None[source]
# SCPI: [SOURce<HW>]:BB:GNSS:RTK:BASE<ST>:LOCation:COORdinates:DECimal:[WGS]
driver.source.bb.gnss.rtk.base.location.coordinates.decimal.wgs.set(longitude = 1.0, latitude = 1.0, altitude = 1.0, baseSt = repcap.BaseSt.Default)

Defines the coordinates of the geographic location of the RTK base station in decimal format.

param longitude

float Defines the longitude in degrees. Range: -180 to 180

param latitude

float Defines the latitude in degrees. Range: -90 to 90

param altitude

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

param baseSt

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