User Tools

Site Tools


api:dk11:delphi:gisinterpolation.tgis_pointcloudformula

Table of Contents

TGIS_PointCloudFormula enum

DK11 for Delphi | GisInterpolation.TGIS_PointCloudFormula | Enums

Specifies cell assignment method for NoData filling.

Available also on: .NET | Java | ActiveX | Python.

Syntax

// Delphi
type
  TGIS_PointCloudFormula = (
    DefaultValue, Mean, IDW, NearestNeighbor, Triangulation
  );
// C++ Builder
enum DECLSPEC_DENUM TGIS_PointCloudFormula unsigned short {
  DefaultValue, Mean, IDW, NearestNeighbor, Triangulation
};

Members

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.

2024/12/20 22:18

Page Tools