LineOfSightOperator.CarrierType Property
Gets or sets an enumeration value, telling if the observer is ground-based or airborne.
Syntax
public AttributeVariable< CarrierType > CarrierType { get; set; }
Property Value
Default: GroundBased
Specifies whether the observer is ground-based or airborne.
Remarks
If GroundBased, the sensor will be placed SensorHeight above ground, and the z value of the observer feature will be ignored.
If Airborne, the sensor will be placed SensorHeight above an airborne carrier, whose altitude depends on the z value of the observer feature. The meaning of z is given by the ObserverHeightType, which can be AboveSeaLevel, AboveGround, or AboveTreetops.
![]() |
To the right in the image, the ObserverHeightType is AboveGround.
Remember that the SensorHeight and the z value is expressed in the VerticalUnit.
Example
// Configure LineOfSightOperator for an Airplane with the camera directed straight down,
// giving a picture that covers 10 degrees fore-to-aft and 20 degrees port-to-starboard
public static void ConfigureLineOfSightOperatorForAirplaneCamera(
LineOfSightOperator lineOfSightOperator)
{
// This property is a member of a type that might be referred to by a View
// or a GlobeView, either directly or indirectly through other objects, which means
// that you must use the Guard class to take the global configuration lock when it
// is modified to synchronize access with any running Carmenta Engine threads.
using (Guard guard = new Guard())
{
// Set the CarrierType to airborne
lineOfSightOperator.CarrierType = CarrierType.Airborne;
// Set the PictureDirection to starboard. This is 90 degrees clockwise from the course,
// which we assume is available from a Course attribute.
lineOfSightOperator.PictureDirection =
new ExpressionAttributeVariable<double>(
"if Course != null then Course + 90.0 else 90.0");
// Set the Picture elevation to the Roll attribute minus 90 degrees
// (we assume that positive roll means starboard up).
lineOfSightOperator.PictureElevation =
new ExpressionAttributeVariable<double>(
"if Roll != null then Roll - 90.0 else - 90.0");
// Set the PictureHeight to 20 degrees
lineOfSightOperator.PictureHeight = 20.0;
// Set the PictureWidth to 10 degrees
lineOfSightOperator.PictureWidth = 10.0;
// Set the VerticalUnit to Meter (Default is Meter)
lineOfSightOperator.VerticalUnit = LengthUnit.Meter;
// Set the VerticalRotationAxis to false, since this is not a radar system
// that rotates around a vertical axis, but a fixed camera.
lineOfSightOperator.VerticalRotationAxis = false;
}
}
Platforms
Windows, Linux, Android