RasterResampleResolution Enumeration
Specifies how RasterMergeOperator and ResampleOperator select the resolution of output rasters.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CEOperators assembly)
Syntax
public enum RasterResampleResolution
Values
Value name | Value | Description |
---|---|---|
RasterRelative | 0 | The cell width and height properties are interpreted as relative values, and are multiplied to the cell size of the input raster to determine the cell size of the output raster. For RasterMergeOperator, the cell size of the first input raster is used. |
ViewRelative | 1 | The cell width and height properties are interpreted as relative values, and are multiplied to the pixel size of the view to determine the cell size of the output raster. |
Absolute | 2 | The cell width and height properties are used as the absolute cell size, in the coordinate reference system of the raster feature. |
ViewRelativeNoUpsampling | 3 | The same as ViewRelative, except that if the input raster already has a lower resolution then the view, it will simply be passed through the operator, without resampling. This is a simple way to avoid unnecessary performance penalties from upscaling when the higher resolution is not needed, for instance when the output rasters are only for visualization. Note that this only has effect when used by a ResampleOperator. If used by a RasterMergeOperator, it will work just like ViewRelative. |
Platforms
Windows, Linux, Android