Dms
SCPI Command :
[SOURce<HW>]:BB:GBAS:VDB<CH>:MCONfig:LFLocation:COORdinates:DMS
- Commands in total: 1Subgroups: 0Direct child commands: 1
- class DmsStruct[source]
Structure for setting input parameters. Fields:
1 Longitude_Deg: int: integer 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.
- get(vdbTransmitter=VdbTransmitter.Default) DmsStruct[source]
# [SOURce<HW>]:BB:GBAS:VDB<CH>:MCONfig:LFLocation:COORdinates:DMS value: DmsStruct = driver.source.bb.gbas.vdb.mconfig.lfLocation.coordinates.dms.get(vdbTransmitter = repcap.VdbTransmitter.Default)
Defines the coordinates of the LTP/FTP in degrees, minutes and seconds.
- Parameters:
vdbTransmitter – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Vdb’)
- Returns:
structure: for return value, see the help for DmsStruct structure arguments.
- set(structure: DmsStruct, vdbTransmitter=VdbTransmitter.Default) None[source]
# [SOURce<HW>]:BB:GBAS:VDB<CH>:MCONfig:LFLocation:COORdinates:DMS structure = driver.source.bb.gbas.vdb.mconfig.lfLocation.coordinates.dms.DmsStruct() 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' driver.source.bb.gbas.vdb.mconfig.lfLocation.coordinates.dms.set(structure, vdbTransmitter = repcap.VdbTransmitter.Default)
Defines the coordinates of the LTP/FTP in degrees, minutes and seconds.
- Parameters:
structure – for set value, see the help for DmsStruct structure arguments.
vdbTransmitter – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Vdb’)