LevelOfDetailOperator Class
Selects data based on the view scale or resolution.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Syntax
public class LevelOfDetailOperator : Operator
Remarks
A LevelOfDetailOperator selects different inputs based on required scale or raster resolution (in meters). Use this operator if data is available in several resolutions and should be visualized in the same way. If the visualization or processing is different, then it may be better to use an OrdinaryLayer with Layer.MinScale and Layer.MaxScale set.
In normal usage, exactly one of the inputs is used at each update. But if your detailed data does not cover the entire area of interest, you can set FillArea = True, to fill remaining areas of the view with coarser data.
A LevelOfDetailOperator will ignore the given LevelOfDetail.Limit of its first LevelOfDetail, treating this limit as zero. This means that the data from the first LevelOfDetail will be displayed at the most detailed scales. To get a blank visualization at the most detailed scales, you can use a ReadOperator with an empty MemoryDataSet as in the second picture below. This method is of course applicable at other levels too, if you want a scale or resolution interval that does not visualize any data.
![]() |
Above, the limit of the first LevelOfDetail is ignored. If you want the visualization to start at scale 1 : 2000, use an empty MemoryDataSet like this:
![]() |
Inheritance Hierarchy
System.Object (not available in C#)
EngineObject
Operator
LevelOfDetailOperator
Platforms
Windows, Linux, Android
LevelOfDetailOperator Members
The LevelOfDetailOperator type has the following members.
Constructors
Name | Description |
---|---|
LevelOfDetailOperator | Creates a new LevelOfDetailOperator. |
Properties
Name | Description |
---|---|
Criteria | Gets or sets the criteria that should be used for selecting input. |
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 |
FillArea | Gets or sets a value that determines whether gaps in detailed data shall be filled by coarser data. |
Inputs | Gets the collection with all LevelOfDetail objects the LevelOfDetailOperator will read data from. |
IsDisposed | Gets a value that tells whether the current LevelOfDetailOperator 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 LevelOfDetailOperator represents. Inherited from EngineObject |
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 |