Versions Compared

Key

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

...

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

Application

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. For example the results of a Delft3D-FM model that has been run on multiple computational domains can be imported as is, i.e. with the data spread out over the multiple domains. This way of data handling improves the efficiency of data display. However, you might want to export the model output as 1 single grid. In that case you can make use of this merge interpolation, to merge the data from the different computational domains into 1 single grid for export.

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>