Versions Compared

Key

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

...

  • inputVariable ( 1 or more input time series)
Options
  • fillGapConstantinterpolationType (closest distance or bilinear)
Output
  • outputVariable
Description

...

This transformation consists of 2 steps:

1) All input time series are mapped by using an spatial interpolation to the output grid.

2) All the time series created in step 1 are merged to the output grid.

 

This transformation can be used to merge several output grids to single output grid even if the input grids have a different grid than the output.

Configuration example
Code Block
<transformation id="merge interpolation example">
    <merge>
        <interpolation>
            <inputVariable>
                <variableId>input</variableId>
            </inputVariable>
            <interpolationType>closestDistance</interpolationType>
            <outputVariable>
                <variableId>output</variableId>
            </outputVariable>
        </interpolation>
    </merge>
</transformation>