Versions Compared

Key

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

...

maxGapLength
Optional element defining the maximum length of gaps that should be filled. The length is equal to the number of time steps. Gaps equal to or smaller than maxGapLength will be filled with interpolated values. Gaps larger than maxGapLength will not be filled. If maxGapLength is not defined, then all gaps will be filled with interpolated values.

interpolateMissingGridCellsinterpolateGrids
Optional element which can be set as true to enable the interpolation of missing grid cells (pixels) for grid coverage time series (default is false). When using this option a maxGapLengthshould be specified or a default maxGapLength value of 1 will be used.

outputCustomFlagSourceId
Optional element to define what customFlagSource should be written to the flagSourceColumn (defined in the workflow file) for interpolated values. The customFlagSourceId should be configured in CustomFlagSources configuration file. 

...

Code Block
xml
xml
<transformation id="interpolation serial linear">
	<interpolationSerial>
		<linear>
			<inputVariable>
				<variableId>input</variableId>
			</inputVariable>
			<maxGapLength>5</maxGapLength>
			<interpolateGrids>false<<interpolateMissingGridCells>false</interpolateGrids>interpolateMissingGridCells>
            <outputVariable>
				<variableId>output</variableId>
			</outputVariable>
			<outputComment>outputCommentTest</outputComment>
            <outputCustomFlagSourceId>INTP</outputCustomFlagSourceId>
		</linear>
	</interpolationSerial>
</transformation>

...