ICustomPropagation Interface
Interface for a custom propagation model that can be used by an instance of LineOfSightOperator or one of its derived classes.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECustomObjects assembly)
Syntax
public interface ICustomPropagation
Remarks
A custom propagation is an object written by an application developer that extends the standard functionality of the Carmenta Engine operator LineOfSightOperator or its subclasses TargetLineOfSightOperator and AirspaceCoverageOperator. The custom propagation is just a regular class that can be written in C++, Java, or any Microsoft .NET language like C#, that implements the ICustomPropagation interface.
The custom propagation can be used in a map configuration via a CustomPropagationProxy object that is used as the customPropagation property of the operator. The presence of the proxy object will make the operator skip its standard line-of-sight propagation algorithm along each vertical profile radiating from the observer; instead, the operator will delegate the calculation to your custom object by calling its Propagate method. In this way, you can implement a non-standard propagation model for line-of-sight, or other propagation models for radio, sound, ballistic trajectories, etc. However, a basic limitation is that the vertical profiles from the observer always follow straight routes, so you cannot implement a model where diffraction allows radio signals to bend sideways around a building, for example.
In the folder samples/CustomObjects you will find an example with a non-standard line-of-sight propagation model that assumes that forests and shrubs are semitransparent, and the generated raster indicates the probability of sight. See also An Overview of the Carmenta Engine Custom Object Samples.
![]() |
Please see CustomPropagationProxy for more information how to configure and load the custom object.
The ICustomPropagation interface contains six methods: Clone, InitNew, Prepare, Propagate, NeedsEquidistantProfilePoints and OutputType. Your implementation must ensure that they are threadsafe, since the operators that call them will assume that.
Exceptions that are thrown by custom object implementations will be logged and then propagated by Carmenta Engine as an EngineException to the application. Also, the only way a C++ custom object implementation can include a relevant error message to an application is by throwing an EngineException.
Platforms
Windows, Linux, Android
See Also
Reference
CustomObjects Module
CustomPropagationProxy
CustomPropagationContext
LineOfSightOperator.CustomPropagation
PropagationOutputType
PropagationProfilePoint
ICustomDataSet
ICustomVisualizer
ICustomOperator
ICustomSymbol
ICustomPropagation Members
The ICustomPropagation type has the following members.
Methods
Name | Description |
---|---|
Clone | Called to create a copy of the custom object. |
InitNew | Called when the custom propagation is created by or connected to a CustomPropagationProxy. |
NeedsEquidistantProfilePoints | Tells whether the Propagate method needs a profile with equidistant points. |
OutputType | Tells whether the propagated values can be described as a kind of height, and if so, what kind of height. |
Prepare | Prepares for future calls to Propagate, either from one observer to surrounding terrain (when used by a LineOfSightOperator or an AirspaceCoverageOperator), or from one observer to one target (when used by a TargetLineOfSightOperator). |
Propagate | Given a ray from the current observer, characterized by a relative bearing and a terrain profile, returns the propagated values at requested indices. |