Dms

SCPI Command :

[SOURce<HW>]:BB:GBAS:VDB<CH>:MCONfig:DFLocation:COORdinates:DMS
class DmsCls[source]

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

class DmsStruct[source]

Structure for setting input parameters. Fields:

  • Longitude_Deg: int: integer Range: 0 to 1.0

  • 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 1.0

  • 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.

get(vdbTransmitter=VdbTransmitter.Default) DmsStruct[source]
# SCPI: [SOURce<HW>]:BB:GBAS:VDB<CH>:MCONfig:DFLocation:COORdinates:DMS
value: DmsStruct = driver.source.bb.gbas.vdb.mconfig.dfLocation.coordinates.dms.get(vdbTransmitter = repcap.VdbTransmitter.Default)

Defines the coordinates of the Delta FPAD location in degrees, minutes and seconds.

param vdbTransmitter

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

return

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

set(structure: RsSmbv.Implementations.Source.Bb.Gbas.Vdb.Mconfig.DfLocation.Coordinates.Dms.DmsCls.DmsStruct, vdbTransmitter=VdbTransmitter.Default) None[source]
# SCPI: [SOURce<HW>]:BB:GBAS:VDB<CH>:MCONfig:DFLocation:COORdinates:DMS
structure = driver.source.bb.gbas.vdb.mconfig.dfLocation.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.dfLocation.coordinates.dms.set(structure, vdbTransmitter = repcap.VdbTransmitter.Default)

Defines the coordinates of the Delta FPAD location in degrees, minutes and seconds.

param structure

for set value, see the help for DmsStruct structure arguments.

param vdbTransmitter

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