Pz
SCPI Command :
[SOURce<HW>]:BB:GNSS:RTK:BASE<ST>:LOCation:COORdinates:DMS:PZ
- class PzCls[source]
- Pz commands group definition. 1 total commands, 0 Subgroups, 1 group commands - class PzStruct[source]
- Structure for setting input parameters. Fields: - Longitude_Deg: int: integer Defines the longitude degrees. Range: 0 to 180 
- Longitude_Min: int: integer Defines the longitude minutes. Range: 0 to 59 
- Longitude_Sec: float: float Defines the longitude seconds. Range: 0 to 59.999 
- Longitude_Dir: str: EAST | WEST Defines the longitude direction. 
- Latitude_Deg: int: integer Defines the latitude degrees. Range: 0 to 90 
- Latitude_Min: int: integer Defines the latitude minutes. Range: 0 to 59 
- Latitude_Sec: float: float Defines the latitude seconds. Range: 0 to 59.999 
- Latitude_Dir: str: NORTh | SOUTh Defines the latitude direction. 
- 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) PzStruct[source]
- # SCPI: [SOURce<HW>]:BB:GNSS:RTK:BASE<ST>:LOCation:COORdinates:DMS:PZ value: PzStruct = driver.source.bb.gnss.rtk.base.location.coordinates.dms.pz.get(baseSt = repcap.BaseSt.Default) - Defines the coordinates of the geographic location of the RTK base station in degrees, minutes and seconds. - param baseSt:
- optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Base’) 
- return:
- structure: for return value, see the help for PzStruct structure arguments. 
 
 - set(structure: PzStruct, baseSt=BaseSt.Default) None[source]
- # SCPI: [SOURce<HW>]:BB:GNSS:RTK:BASE<ST>:LOCation:COORdinates:DMS:PZ structure = driver.source.bb.gnss.rtk.base.location.coordinates.dms.pz.PzStruct() 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.pz.set(structure, baseSt = repcap.BaseSt.Default) - Defines the coordinates of the geographic location of the RTK base station in degrees, minutes and seconds. - param structure:
- for set value, see the help for PzStruct structure arguments. 
- param baseSt:
- optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Base’)