Versions Compared

Key

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

...

Transformation - InterpolationSpatial Inverse distance

schema:

transformationModule.xsd

keywords:

transformation, spatial interpolation, inverse distance

Description and usage

This transformation function calculates the output based on the weighted average of the closest input locations/grid cells. The weight of each input location/grid cell will be calculated by the inverse distance of each location.

...

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>
Common issues

...