Wgs

SCPI Command :

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

Structure for setting input parameters. Fields:

  • 1 Longitude_Deg: int: integer Defines the longitude degrees. Range: 0 to 180

  • 2 Longitude_Min: int: integer Defines the longitude minutes. Range: 0 to 59

  • 3 Longitude_Sec: float: float Defines the longitude seconds. Range: 0 to 59.999

  • 4 Longitude_Dir: str: EAST | WEST Defines the longitude direction.

  • 5 Latitude_Deg: int: integer Defines the latitude degrees. Range: 0 to 90

  • 6 Latitude_Min: int: integer Defines the latitude minutes. Range: 0 to 59

  • 7 Latitude_Sec: float: float Defines the latitude seconds. Range: 0 to 59.999

  • 8 Latitude_Dir: str: NORTh | SOUTh Defines the latitude direction.

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

Defines the coordinates of the geographic location of the RTK base station in degrees, minutes and seconds.

Parameters:

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

Returns:

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

set(structure: WgsStruct, baseSt=BaseSt.Default) None[source]
# [SOURce<HW>]:BB:GNSS:RTK:BASE<ST>:LOCation:COORdinates:DMS:[WGS]
structure = driver.source.bb.gnss.rtk.base.location.coordinates.dms.wgs.WgsStruct()
structure.Longitude_Deg: int = 1
structure.Longitude_Min: int = 1
structure.Longitude_Sec: float = 1.0
structure.Longitude_Dir: str = 'abc'
structure.Latitude_Deg: int = 1
structure.Latitude_Min: int = 1
structure.Latitude_Sec: float = 1.0
structure.Latitude_Dir: str = 'abc'
structure.Altitude: float = 1.0
driver.source.bb.gnss.rtk.base.location.coordinates.dms.wgs.set(structure, baseSt = repcap.BaseSt.Default)

Defines the coordinates of the geographic location of the RTK base station in degrees, minutes and seconds.

Parameters:
  • structure – for set value, see the help for WgsStruct structure arguments.

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