LuciadCPillar C# 2023.1.04
Luciad.Rasters Namespace Reference

Classes

class  PixelDensity
 A pixel density represents the number of pixel in raster data over a unit of area in a given coordinate reference. More...
 

Enumerations

enum  RasterSamplingMode { Area , Point }
 Sampling mode of a raster. More...
 

Enumeration Type Documentation

◆ RasterSamplingMode

Sampling mode of a raster.

luciad/rasters/RasterSamplingMode.h The following image clarifies the interpretation of the sampling mode. The green rectangle represents the bounds of the image. On the left side the colored rectangles represent pixels in an area-sampled basic image and on the right side the colored dots represent pixels in a point-sampled basic image. Area vs point sampling

2022.1

Warning
C# documentation translation is incomplete. You can find more information in the C++ documentation for luciad::RasterSamplingMode.
Enumerator
Area 

Area-sampled data.

Each sample applies to the area covered by a pixel. This is for example the case for data that is retrieved using a photometric sensor. This is often used for color data.

Warning
C# documentation translation is incomplete. You can find more information in the C++ documentation for luciad::RasterSamplingMode::Area.
Point 

Point-sampled data.

Each sample applies to a single point. This is for example the case for data that is retrieved using laser scanning. This is often used for elevation data.

Warning
C# documentation translation is incomplete. You can find more information in the C++ documentation for luciad::RasterSamplingMode::Point.