View.TerrainWarningOverlay Property
Gets or sets parameters that control a terrain warning overlay in the view.
Syntax
public TerrainWarningOverlay TerrainWarningOverlay { get; set; }
Property Value
Default: null
Parameters that determine how a terrain warning overlay is generated, or null to disable the overlay.
Remarks
Assigning a TerrainWarningOverlay object to this property enables a terrain warning overlay in the view (an analysis that shows how close the ground is to an aircraft). Terrain warnings are only supported in a 2D View or in a GlobeView. Setting this property in any other kind of view will cause an exception to be thrown.
In a 2D view you must also use a TerrainWarningOperator so Carmenta Engine can identify the elevation data the terrain warning is generated from.
See TerrainWarningOverlay for more information about how to configure a terrain warning.
Example
// Set TerrainWarningOverlay the Aircraft position is fixed above Gothenburg. This
// terrain warning in this example is at a fixed position and altitude it is also
// possible to generate the warning from a point feature read from a MemoryDataSet.
public static void SetTerrainWarningOverlay(View view)
{
// The center coordinates of Gothenburg in Wgs84LatLong and 500m above the ground
Point aboveGothenburgCenter = new Point(11.974560, 57.708870, 500.0);
// Project the center coordinates of Gothenburg to the Crs of the View
aboveGothenburgCenter = view.Crs.ProjectFromLongLat(aboveGothenburgCenter);
// Create new TerrainWarningOverlay with the position of Gothenburg and a maximum
// distance of 1000m
TerrainWarningOverlay terrainWarningOverlay =
new TerrainWarningOverlay(aboveGothenburgCenter, 1000);
// Create a ColorTable entry to visualize where the distance to the ground is
// smaller than 100m
KeyedAttributeVariable<System.Drawing.Color> colorTable =
terrainWarningOverlay.ColorTable as KeyedAttributeVariable<System.Drawing.Color>;
colorTable.Table.Add(100, Color.Red);
// Set the TerrainWarningSettings in the View
view.TerrainWarningOverlay = terrainWarningOverlay;
// Update the View
view.Update();
}
Platforms
Windows, Linux, Android