Radar Class
Represents a single Radar as part of a RadarVideoLayer.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Syntax
public class Radar : EngineObject
Remarks
A Radar represents the position and area of a radar intensity image and is visualized with a RadarVideoLayer. The intensity image is mapped such that the rows in the image represents the rays at different angles and the columns represents distance from the Position. The size of the intensity image is defined by the Rows and Columns properties. The intensity image is colored with the Color property. This property may be set to either a constant color value or a color palette defined by KeyedAttributeVariable<System.Drawing.Color>. A constant color value will assume intensity in the range [0,1] while a palette will use the range defined by the keys.
The orientation of the radar intensity image is defined by the MaxRange, MinRange, SweepAngle and Direction properties according to the image below.
![]() |
The intensity image's first row represent the ray directed towards direction - sweepAngle/2 and the last row represents the ray directed towards direction + sweepAngle/2. All angles are in degrees. The first column is located closest to the radar.
It is not possible to alter the maximum or minimum range or change the number of rows or columns after a radar is created. This requires a new radar instance.
The image data is set using the UpdateRows method that lets the user update any number of rows at once. The data is an array of doubles that are clamped to the range [0, 1] if a constant color value is used, otherwise the range of the keys in the color table is used.
The position of the radar is given in Wgs84 longitude and latitude coordinates.
Inheritance Hierarchy
System.Object (not available in C#)
EngineObject
Radar
Platforms
Windows, Linux, Android
Radar Members
The Radar type has the following members.
Constructors
Name | Description |
---|---|
Radar | Initializes a new instance of Radar with all properties. |
Properties
Name | Description |
---|---|
Color | Gets or sets the color used to visualize image intensity. |
ColorTableLookup | Gets or sets a value specifying how the lookup of colors in the color table is done. |
Columns | Gets the number of cells along a row. |
Direction | Gets or sets direction the of the Radar in degrees. |
Filter | Gets or sets a value specifying how values in the intensity image is sampled. |
IsDisposed | Gets a value that tells whether the current Radar has been disposed. Inherited from EngineObject |
MaxRange | Gets the maximum range of this Radar in meters. |
MinRange | Gets the minimum range of this Radar in meters. |
Name | Gets or sets the name of the Radar. |
NativeHandle | Gets the native Carmenta Engine kernel object the current Radar represents. Inherited from EngineObject |
Position | Gets or sets the Radar's position. |
Rows | Gets the number of rays used by this Radar. |
SweepAngle | Gets the size of the sweep arc used by this Radar in degrees. |
Methods
Name | Description |
---|---|
Clone | Creates a copy of an object. Inherited from EngineObject |
Dispose | Releases the reference to the native Carmenta Engine kernel instance the EngineObject represents. Inherited from EngineObject |
Equals | Determines whether this instance is equal to another. Inherited from EngineObject |
UpdateRows | Updates part of all of this Radar's image. |