Version

SurfaceGridDataInterpolation Enumeration

Determines type of interpolation used for interpolating grid points
Syntax
'Declaration
 
Public Enum SurfaceGridDataInterpolation 
   Inherits System.Enum
public enum SurfaceGridDataInterpolation : System.Enum 
Members
MemberDescription
AverageLocalNeighborsSpecifies fastest interpolation that calculates average of all neighboring data points or defaults to zero if no neighboring points found in grid cell
InverseDistanceWeightSpecifies slowest interpolation that calculates Inverse Distance Weight (IDW) of neighboring data points in grid cell
MaxClosestNeighborsSpecifies slower interpolation that uses Maximum of Closest Neighboring data point in grid cell
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also