Dms
SCPI Command :
[SOURce<HW>]:BB:GBAS:VDB<CH>:MCONfig:LOCation: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 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 height above the ellipsoid (HAE) altitude. Range: -83886.07 to 83886.07
- get(vdbTransmitter=VdbTransmitter.Default) DmsStruct [source]
# SCPI: [SOURce<HW>]:BB:GBAS:VDB<CH>:MCONfig:LOCation:COORdinates:DMS value: DmsStruct = driver.source.bb.gbas.vdb.mconfig.location.coordinates.dms.get(vdbTransmitter = repcap.VdbTransmitter.Default)
Defines the coordinates of the ground station reference 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: RsSmw.Implementations.Source.Bb.Gbas.Vdb.Mconfig.Location.Coordinates.Dms.DmsCls.DmsStruct, vdbTransmitter=VdbTransmitter.Default) None [source]
# SCPI: [SOURce<HW>]:BB:GBAS:VDB<CH>:MCONfig:LOCation:COORdinates:DMS structure = driver.source.bb.gbas.vdb.mconfig.location.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' structure.Altitude: float = 1.0 driver.source.bb.gbas.vdb.mconfig.location.coordinates.dms.set(structure, vdbTransmitter = repcap.VdbTransmitter.Default)
Defines the coordinates of the ground station reference 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’)