Inverse Distance Weighted (IDW) Interpolation

ToolBox Implementation .NET Implementation
Uses Inverse Distance Weighted Interpolation (IDW) to interpolate a raster from the input features.

Inputs:

Output:

Examples:

Power = 0.5

Power = 2

Power = 15

Notes:

ToolBox implementation

Command line syntax

ETS_GPIDW <Input Dataset>  <Out Raster> <Elevation Field> < Cell Size> <Power>   <Number of Sources> {Cutoff Distance}

Parameters

Expression Explanation
<Input Dataset> A Point, Polyline or Polygon layer or feature class
<Out Raster> A String - the full name of the output raster (A raster with the same full name should not exist). The output raster type depends on the extension of the output file(see Notes above)
<Elevation  Field> A String representing the name of the field which values are going to be used for interpolation.
<Cell Size> A Double representing the cell size of the output raster.
 <Power> A Number - see main description above
 <Number of Sources> A Number - see description above
 {Cutoff Distance} A Double representing the Cutoff distance.

Scripting syntax

ETS_GPIDW (Input Dataset, Out Raster, Elevation Field, Cell Size, Power, Number of Sources ,Cutoff Distance)

See the explanations above:
<> - required parameter
{} - optional parameter

.NET implementation
(Go to TOP)

IDW (inFeatureClass As IFeatureClass, sOutRaster As String, sElevationField As String, dCellSize As Double, dPower As Double, iNumPoints As Integer, Optional dCutoff As Double = 0) As IRasterDataset2

Copyright © Ianko Tchoukanski