CrsBoundaryGenerator Class
An operator that generates the boundary polygon of a coordinate reference system.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CEOperators assembly)
Syntax
public class CrsBoundaryGenerator : Generator
Remarks
This operator generates the boundary polygon of its coordinate reference system, normally the coordinate reference system of the view. This is useful when the geographic data contain land polygons but no sea polygons, and you want a blue (sea-colored) background wherever there are no land polygons. A layer with a CrsBoundaryGenerator is the most robust way to achieve this.
A simpler alternative could be to use a blue background color for the drawable. But sometimes, a data provider supplies geodata as well as loadable layers, but has no influence on the drawable used.
Another alternative could be to use a ScreenLayer, in which the size of a blue background polygon can be specified in pixels. The size can be made large enough to fill the drawable. However, many projections has a distinct boundary where the world ends (or the map, really). The blue background should not extend beyond the boundary.
An approach which is often tried, but seldom works, is to specify a rectangular background polygon in longitude and latitude, with the four corners of the world being [180°W, 90°S], and [180°E, 90°S], and [180°E, 90°N], and [180°W, 90°N]. The trouble is that if such polygon needs to be reprojected by the view, the result will usually be a zero-area polygon along meridian 180°. The reprojection machinery does not understand that such a polygon has been turned inside out.
So, the advantage of CrsBoundaryGenerator is that a background polygon that covers the earth is created directly in the projection of the view, and does not need reprojection.
Inheritance Hierarchy
System.Object (not available in C#)
EngineObject
Operator
Generator
CrsBoundaryGenerator
Platforms
Windows, Linux, Android
CrsBoundaryGenerator Members
The CrsBoundaryGenerator type has the following members.
Constructors
Name | Description |
---|---|
CrsBoundaryGenerator | Initializes a new instance of the CrsBoundaryGenerator class. |
Properties
Name | Description |
---|---|
Crs | Gets or sets the coordinate reference system for which to generate the boundary polygon. |
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 |
IsDisposed | Gets a value that tells whether the current CrsBoundaryGenerator 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 CrsBoundaryGenerator 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 |