Location

SCPI Commands :

SCENario:LOCalized:LOCation:ALTitude
SCENario:LOCalized:LOCation:AZIMuth
SCENario:LOCalized:LOCation:EAST
SCENario:LOCalized:LOCation:ELEVation
SCENario:LOCalized:LOCation:HEIGht
SCENario:LOCalized:LOCation:LATitude
SCENario:LOCalized:LOCation:LONGitude
SCENario:LOCalized:LOCation:NORTh
SCENario:LOCalized:LOCation:PMODe
class LocationCls[source]

Location commands group definition. 15 total commands, 3 Subgroups, 9 group commands

get_altitude() float[source]
# SCPI: SCENario:LOCalized:LOCation:ALTitude
value: float = driver.scenario.localized.location.get_altitude()

Sets the altitude of the antenna.

return:

altitude: float Range: -1e+09 to 1e+09

get_azimuth() float[source]
# SCPI: SCENario:LOCalized:LOCation:AZIMuth
value: float = driver.scenario.localized.location.get_azimuth()

Sets the azimuth.

return:

azimuth: float Range: 0 to 360

get_east() float[source]
# SCPI: SCENario:LOCalized:LOCation:EAST
value: float = driver.scenario.localized.location.get_east()

Sets the emitter coordinates.

return:

east: No help available

get_elevation() float[source]
# SCPI: SCENario:LOCalized:LOCation:ELEVation
value: float = driver.scenario.localized.location.get_elevation()

Sets the elevation.

return:

elevation: float Range: -90 to 90

get_height() float[source]
# SCPI: SCENario:LOCalized:LOCation:HEIGht
value: float = driver.scenario.localized.location.get_height()

Sets the height of the antenna.

return:

height: float Range: -1e+09 to 1e+09

get_latitude() float[source]
# SCPI: SCENario:LOCalized:LOCation:LATitude
value: float = driver.scenario.localized.location.get_latitude()

Use for defining the position of a fixed emitter (no movement) on a georeferenced map. Positive values represent DEGEast. Negative values represent DEGWest.

return:

latitude: No help available

get_longitude() float[source]
# SCPI: SCENario:LOCalized:LOCation:LONGitude
value: float = driver.scenario.localized.location.get_longitude()

Use for defining the position of a fixed emitter (no movement) on a georeferenced map. Positive values represent DEGEast. Negative values represent DEGWest.

return:

longitude: float Range: -180 to 180

get_north() float[source]
# SCPI: SCENario:LOCalized:LOCation:NORTh
value: float = driver.scenario.localized.location.get_north()

Sets the emitter coordinates.

return:

north: float Range: -1e+09 to 1e+09, Unit: m

get_pmode() PmodeLocation[source]
# SCPI: SCENario:LOCalized:LOCation:PMODe
value: enums.PmodeLocation = driver.scenario.localized.location.get_pmode()

Sets if the emitter is static or moving.

return:

pmode: STATic| STEPs| MOVing

set_altitude(altitude: float) None[source]
# SCPI: SCENario:LOCalized:LOCation:ALTitude
driver.scenario.localized.location.set_altitude(altitude = 1.0)

Sets the altitude of the antenna.

param altitude:

float Range: -1e+09 to 1e+09

set_azimuth(azimuth: float) None[source]
# SCPI: SCENario:LOCalized:LOCation:AZIMuth
driver.scenario.localized.location.set_azimuth(azimuth = 1.0)

Sets the azimuth.

param azimuth:

float Range: 0 to 360

set_east(east: float) None[source]
# SCPI: SCENario:LOCalized:LOCation:EAST
driver.scenario.localized.location.set_east(east = 1.0)

Sets the emitter coordinates.

param east:

float Range: -1e+09 to 1e+09, Unit: m

set_elevation(elevation: float) None[source]
# SCPI: SCENario:LOCalized:LOCation:ELEVation
driver.scenario.localized.location.set_elevation(elevation = 1.0)

Sets the elevation.

param elevation:

float Range: -90 to 90

set_height(height: float) None[source]
# SCPI: SCENario:LOCalized:LOCation:HEIGht
driver.scenario.localized.location.set_height(height = 1.0)

Sets the height of the antenna.

param height:

float Range: -1e+09 to 1e+09

set_latitude(latitude: float) None[source]
# SCPI: SCENario:LOCalized:LOCation:LATitude
driver.scenario.localized.location.set_latitude(latitude = 1.0)

Use for defining the position of a fixed emitter (no movement) on a georeferenced map. Positive values represent DEGEast. Negative values represent DEGWest.

param latitude:

float Range: -180 to 180

set_longitude(longitude: float) None[source]
# SCPI: SCENario:LOCalized:LOCation:LONGitude
driver.scenario.localized.location.set_longitude(longitude = 1.0)

Use for defining the position of a fixed emitter (no movement) on a georeferenced map. Positive values represent DEGEast. Negative values represent DEGWest.

param longitude:

float Range: -180 to 180

set_north(north: float) None[source]
# SCPI: SCENario:LOCalized:LOCation:NORTh
driver.scenario.localized.location.set_north(north = 1.0)

Sets the emitter coordinates.

param north:

float Range: -1e+09 to 1e+09, Unit: m

set_pmode(pmode: PmodeLocation) None[source]
# SCPI: SCENario:LOCalized:LOCation:PMODe
driver.scenario.localized.location.set_pmode(pmode = enums.PmodeLocation.MOVing)

Sets if the emitter is static or moving.

param pmode:

STATic| STEPs| MOVing

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.scenario.localized.location.clone()

Subgroups