DK11 for Delphi | GisInterpolation.TGIS_PointCloudFormula | Enums
Specifies cell assignment method for NoData filling.
// Delphi type TGIS_PointCloudFormula = ( DefaultValue, Mean, IDW, NearestNeighbor, Triangulation );
// C++ Builder enum DECLSPEC_DENUM TGIS_PointCloudFormula unsigned short { DefaultValue, Mean, IDW, NearestNeighbor, Triangulation };
Name | Value | Description | |
---|---|---|---|
DefaultValue | For each grid cell with NoData, DefaultValue will be assigned. | ||
Mean | Computes mean value from grid cells within search window. | ||
IDW | Uses Inverse Distance Weighted interpolation for grid cells within search window. | ||
NearestNeighbor | Searches for nearest grid cell within search window. | ||
Triangulation | Uses Triangulation interpolation to determine value for empty grid cells. WindowSize parameter is omitted. It takes longer to execute. Recommended for data with local holes. | ||