Wgs
SCPI Command :
[SOURce<HW>]:BB:GNSS:RECeiver:[V<ST>]:LOCation:COORdinates:DMS:[WGS]
- Commands in total: 1Subgroups: 0Direct 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(vehicle=Vehicle.Default) WgsStruct[source]
# [SOURce<HW>]:BB:GNSS:RECeiver:[V<ST>]:LOCation:COORdinates:DMS:[WGS] value: WgsStruct = driver.source.bb.gnss.receiver.v.location.coordinates.dms.wgs.get(vehicle = repcap.Vehicle.Default)
Defines the coordinates of the geographic location of the GNSS receiver in degrees, minutes and seconds.
- 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(structure: WgsStruct, vehicle=Vehicle.Default) None[source]
# [SOURce<HW>]:BB:GNSS:RECeiver:[V<ST>]:LOCation:COORdinates:DMS:[WGS] structure = driver.source.bb.gnss.receiver.v.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.receiver.v.location.coordinates.dms.wgs.set(structure, vehicle = repcap.Vehicle.Default)
Defines the coordinates of the geographic location of the GNSS receiver in degrees, minutes and seconds.
- Parameters:
structure – for set value, see the help for WgsStruct structure arguments.
vehicle – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘V’)