Versions Compared

Key

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

...

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. 

outputComment if outputCustomFlagSourceId is being used, then the ouputComment is added for the missing values. For the available values, the input comments would be used.


Example

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

...