Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

scrollbar

Transformation - InterpolationSpatial Inverse distance

...

Required elemet to defie the maximum number of points/grid cells which will be used to calculate the output.

excludePointOfOrigin

Optinal field, default value is false. If it is set to true, the point of origin in the inverse-distance spatial interpolation transformation will be excluded from the calculation.

Example

Code Block
xml
xml
<interpolationSpatial>

	<inverseDistance>

		<inputVariable>

			<variableId>input</variableId>

		</inputVariable>

		<minimumValue>0</minimumValue>

		<maximumValue>10000</maximumValue>

		<searchRadius>100000</searchRadius>

		<inverseDistancePower>2</inverseDistancePower>

		<numberOfPoints>3</numberOfPoints>

		<outputVariable>

			<variableId>output</variableId>

		</outputVariable>

	</inverseDistance>

</interpolationSpatial>

...