← Back to carmenta.com
Carmenta Engine SDK Documentation
×

BufferZoneOperator Class

Generates 2-dimensional buffer zones around vector and raster features.

Namespace: Carmenta.Engine
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CEOperators assembly)
Thread safety: Members defined in this class are, in general, not thread-safe. Show

Syntax

C#
public class BufferZoneOperator : UnaryOperator

Remarks

This operator generates 2-dimensional buffer zones around vector and raster features. A buffer zone around a feature is defined as the union of circular areas with a specified Radius, such that every point in the feature is the center of one circular area. So the buffer zone for a point becomes a circle, and the buffer zone for a straight line becomes a hot-dog shaped polygon.

Buffer zones generated around a line and a point.


Note

Just setting the Radius is not enough. You must also set the Margin to be larger than any possible value of Radius.

For input features that are points, lines or polygons, the output features will be polygons. For an input polygon, it makes sense to use a negative radius, which would shrink the polygon instead of expanding it.

A polygon can be expanded by a positive radius, and be shrunk by a negative one.

To make a buffer zone for a thematic (discrete) raster, the operator uses the RasterValue property: the raster area filled with that value shall be buffered. For example, in the buffer_zone_operator.px sample configuration, the RasterValue is 11, which is the code for water in a terrain type raster. The output raster will have the same resolution as the original one, but will be a one-bit raster, in which raster cells containing 1 represent the buffer zone, and cells containing 0 represent everything else; the undefined value will be 0.

For raster input, too, it makes sense to use a negative Radius to shrink the area of interest.

A terrain type raster.
A semi-transparent overlay shows the water buffered with a positive radius (left), or with a negative one (right).


Note

The methods LineGeometry.BufferZone and PolygonGeometry.BufferZone are similar to this operator, but like all Geometry methods, they treat the coordinates as if they were expressed in a plane Cartesian coordinate system with an unspecified length unit, and this doesn't work well if the coordinates were really LongLat, for example. The BufferZoneOperator, on the other hand, knows about LongLat and map projections, and does its best to calculate true distances on the ground regardless of the input feature Crs. However, the calculation of true distance is most accurate for small features.

Inheritance Hierarchy

System.Object (not available in C#)
  EngineObject
    Operator
      UnaryOperator
        BufferZoneOperator

Platforms

Windows, Linux, Android

BufferZoneOperator Members

The BufferZoneOperator type has the following members.

Constructors

NameDescription
BufferZoneOperatorInitializes a new instance of the BufferZoneOperator class.

Properties

NameDescription
ArcAccuracyGets or sets a value specifying the accuracy of generated arcs.
DescriptionGets or sets a short description of the operator. Inherited from Operator
DisplayNameGets or sets a display name for the operator. Inherited from Operator
InputGets or sets the input operator, from which this operator reads features. Inherited from UnaryOperator
IsDisposedGets a value that tells whether the current BufferZoneOperator has been disposed. Inherited from EngineObject
IsoMetadataDocumentGets or sets the path to an ISO 19139 metadata document for the operator. Inherited from Operator
MarginGets or sets a margin added to the view area when requesting data from the input operator.
NameGets or sets the name of the operator. Inherited from Operator
NativeHandleGets the native Carmenta Engine kernel object the current BufferZoneOperator represents. Inherited from EngineObject
RadiusGets or sets the radius of the buffer zone.
RadiusUnitGets or sets the length unit that Radius is specified in.
RasterValueGets or sets the raster category that the buffer zone should be generated around.
IUserProperties.UserPropertiesGets the AttributeSet that contains the user properties. Inherited from IUserProperties

Methods

NameDescription
CloneCreates a copy of an object. Inherited from EngineObject
DisposeReleases the reference to the native Carmenta Engine kernel instance the EngineObject represents. Inherited from EngineObject
EqualsDetermines whether this instance is equal to another. Inherited from EngineObject
FindChildObjectOverloaded. Finds the child object with the specified name. Inherited from Operator
FlushCacheMarks the layer as flushed which will release cached resources during the next update. Inherited from Operator
GetChildObjectsOverloaded. Gets the child objects of the current object. Inherited from Operator
GetFeaturesOverloaded. Gets features from the operator chain. Inherited from Operator
GetLocalizedDescriptionGets a localized version of the operator description in a specific language. Inherited from Operator
GetLocalizedDisplayNameGets a localized version of the operator display name in a specific language. Inherited from Operator
GetLocalizedIsoMetadataDocumentGets the path to an ISO 19139 metadata document for a specific language. Inherited from Operator
GetRasterFeatureOverloaded. Gets raster features from the operator chain and merges them into a single raster. Inherited from Operator
HasLocalizedDescriptionChecks if a localized version of the operator description is available in a specific language. Inherited from Operator
HasLocalizedDisplayNameChecks if a localized version of the operator display name is available in a specific language. Inherited from Operator
HasLocalizedIsoMetadataDocumentChecks if an ISO 19139 metadata document is available for a specific language. Inherited from Operator
SetLocalizedDescriptionSets a operator description in a specific language. Inherited from Operator
SetLocalizedDisplayNameSets a operator display name in a specific language. Inherited from Operator
SetLocalizedIsoMetadataDocumentSets the path to an ISO 19139 metadata document for the operator, for a specific language. Inherited from Operator

By accessing the information on this site you accept our terms and conditions and privacy policy.
This site uses cookies to enhance your experience and provide additional functionality.

Accept