Dms

SCPI Commands :

[SOURce<HW>]:BB:GNSS:ADGeneration:GALileo:LOCation:COORdinates:DMS:PZ
[SOURce<HW>]:BB:GNSS:ADGeneration:GALileo:LOCation:COORdinates:DMS:[WGS]
class DmsCls[source]

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

class PzStruct[source]

Structure for setting input parameters. Fields:

  • Longitude_Deg: int: integer Range: 0 to 180

  • Longitude_Min: int: integer Range: 0 to 59

  • Longitude_Sec: float: float Range: 0 to 59.999

  • Longitude_Dir: str: select

  • Latitude_Deg: int: integer Range: 0 to 90

  • Latitude_Min: int: integer Range: 0 to 59

  • Latitude_Sec: float: float Range: 0 to 59.999

  • Latitude_Dir: str: select

  • Altitude: float: float Range: -10E3 to 50E6

class WgsStruct[source]

Structure for setting input parameters. Fields:

  • Longitude_Deg: int: integer Range: 0 to 180

  • Longitude_Min: int: integer Range: 0 to 59

  • Longitude_Sec: float: float Range: 0 to 59.999

  • Longitude_Dir: str: select

  • Latitude_Deg: int: integer Range: 0 to 90

  • Latitude_Min: int: integer Range: 0 to 59

  • Latitude_Sec: float: float Range: 0 to 59.999

  • Latitude_Dir: str: select

  • Altitude: float: float Range: -10E3 to 50E6

get_pz() PzStruct[source]
# SCPI: [SOURce<HW>]:BB:GNSS:ADGeneration:GALileo:LOCation:COORdinates:DMS:PZ
value: PzStruct = driver.source.bb.gnss.adGeneration.galileo.location.coordinates.dms.get_pz()

Sets the geographic reference location in degrees, minutes and seconds.

return

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

get_wgs() WgsStruct[source]
# SCPI: [SOURce<HW>]:BB:GNSS:ADGeneration:GALileo:LOCation:COORdinates:DMS:[WGS]
value: WgsStruct = driver.source.bb.gnss.adGeneration.galileo.location.coordinates.dms.get_wgs()

Sets the geographic reference location in degrees, minutes and seconds.

return

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

set_pz(value: RsSmbv.Implementations.Source.Bb.Gnss.AdGeneration.Galileo.Location.Coordinates.Dms.DmsCls.PzStruct) None[source]
# SCPI: [SOURce<HW>]:BB:GNSS:ADGeneration:GALileo:LOCation:COORdinates:DMS:PZ
structure = driver.source.bb.gnss.adGeneration.galileo.location.coordinates.dms.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.adGeneration.galileo.location.coordinates.dms.set_pz(value = structure)

Sets the geographic reference location in degrees, minutes and seconds.

param value

see the help for PzStruct structure arguments.

set_wgs(value: RsSmbv.Implementations.Source.Bb.Gnss.AdGeneration.Galileo.Location.Coordinates.Dms.DmsCls.WgsStruct) None[source]
# SCPI: [SOURce<HW>]:BB:GNSS:ADGeneration:GALileo:LOCation:COORdinates:DMS:[WGS]
structure = driver.source.bb.gnss.adGeneration.galileo.location.coordinates.dms.WgsStruct()
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.adGeneration.galileo.location.coordinates.dms.set_wgs(value = structure)

Sets the geographic reference location in degrees, minutes and seconds.

param value

see the help for WgsStruct structure arguments.