Pz

SCPI Command :

[SOURce<HW>]:BB:GNSS:RECeiver:[V<ST>]:LOCation:COORdinates:DECimal:PZ
class PzCls[source]

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

class PzStruct[source]

Response structure. Fields:

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

  • Latitude: float: float Defines the latitude. 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(vehicle=Vehicle.Default) PzStruct[source]
# SCPI: [SOURce<HW>]:BB:GNSS:RECeiver:[V<ST>]:LOCation:COORdinates:DECimal:PZ
value: PzStruct = driver.source.bb.gnss.receiver.v.location.coordinates.decimal.pz.get(vehicle = repcap.Vehicle.Default)

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

param vehicle

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

return

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

set(longitude: float, latitude: float, altitude: float, vehicle=Vehicle.Default) None[source]
# SCPI: [SOURce<HW>]:BB:GNSS:RECeiver:[V<ST>]:LOCation:COORdinates:DECimal:PZ
driver.source.bb.gnss.receiver.v.location.coordinates.decimal.pz.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.

param longitude

float Defines the longitude. Range: -180 to 180

param latitude

float Defines the latitude. 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 vehicle

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