ShadowOperator Class
An operator that calculates the shadows that the terrain casts on itself.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CEOperators assembly)
Syntax
public class ShadowOperator : Operator
Remarks
A ShadowOperator calculates the shadows that the terrain casts on itself. It cannot calculate the shadows of other objects. (Do not confuse this operator with ShadeOperator.)
![]() |
![]() |
The raster values in the output give the height of the shadow volume above ground. In other words: 0 means that the ground is sunlit, while z > 0 means that the ground is in shadow and you have to be z elevation units tall to see the sun.
The simplest way to visualize the shadows is to use transparency for zeros and a single semitransparent gray for values greater than zero.
However, some elevation data has artifacts that can become visible as stripes; see NOAA: DTED Characteristics. The visual impact of the stripes can be softened if you use a color ramp, for example if you show 0 as transparent, 1 as light gray, 2 as medium gray, and 3 and higher as dark gray.
The position of the sun is specified by the View.SunPosition property.
If you intend to display shadows also in zoomed-out map scales, the sun position must be given implicitly by date and time, instead of explicitly by direction and elevation. This is because the ShadowOperator accounts for the Earth curvature, so when the map control is zoomed-out, the apparent direction and elevation of the sun will vary across the view area. Therefore it would be pointless to specify them explicitly, especially in a TileLayer where each tile would think that the explicit position is valid at its own center.
Inheritance Hierarchy
System.Object (not available in C#)
EngineObject
Operator
ShadowOperator
Platforms
Windows, Linux, Android
ShadowOperator Members
The ShadowOperator type has the following members.
Constructors
Name | Description |
---|---|
ShadowOperator | Initializes a new instance of the ShadowOperator class |
Properties
Name | Description |
---|---|
Description | Gets or sets a short description of the operator. Inherited from Operator |
DisplayName | Gets or sets a display name for the operator. Inherited from Operator |
ElevationUnit | Gets or sets the LengthUnit in which the elevations in the input rasters are expressed. |
Input | Gets or sets the Operator from which the ShadowOperator reads elevation rasters. |
IsDisposed | Gets a value that tells whether the current ShadowOperator has been disposed. Inherited from EngineObject |
IsoMetadataDocument | Gets or sets the path to an ISO 19139 metadata document for the operator. Inherited from Operator |
Name | Gets or sets the name of the operator. Inherited from Operator |
NativeHandle | Gets the native Carmenta Engine kernel object the current ShadowOperator represents. Inherited from EngineObject |
ShadowLengthMax | Gets or sets the maximum length of the shadows that are generated by the ShadowOperator. |
IUserProperties.UserProperties | Gets the AttributeSet that contains the user properties. Inherited from IUserProperties |
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 |
FindChildObject | Overloaded. Finds the child object with the specified name. Inherited from Operator |
FlushCache | Marks the layer as flushed which will release cached resources during the next update. Inherited from Operator |
GetChildObjects | Overloaded. Gets the child objects of the current object. Inherited from Operator |
GetFeatures | Overloaded. Gets features from the operator chain. Inherited from Operator |
GetLocalizedDescription | Gets a localized version of the operator description in a specific language. Inherited from Operator |
GetLocalizedDisplayName | Gets a localized version of the operator display name in a specific language. Inherited from Operator |
GetLocalizedIsoMetadataDocument | Gets the path to an ISO 19139 metadata document for a specific language. Inherited from Operator |
GetRasterFeature | Overloaded. Gets raster features from the operator chain and merges them into a single raster. Inherited from Operator |
HasLocalizedDescription | Checks if a localized version of the operator description is available in a specific language. Inherited from Operator |
HasLocalizedDisplayName | Checks if a localized version of the operator display name is available in a specific language. Inherited from Operator |
HasLocalizedIsoMetadataDocument | Checks if an ISO 19139 metadata document is available for a specific language. Inherited from Operator |
SetLocalizedDescription | Sets a operator description in a specific language. Inherited from Operator |
SetLocalizedDisplayName | Sets a operator display name in a specific language. Inherited from Operator |
SetLocalizedIsoMetadataDocument | Sets the path to an ISO 19139 metadata document for the operator, for a specific language. Inherited from Operator |