You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

Interpolation

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

This transformation can be used to map multiple grids to a single output grid.

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 a single grid in the output time series

 

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
<transformation id="merge interpolation example">
    <merge>
        <interpolation>
            <inputVariable>
                <variableId>input</variableId>
            </inputVariable>
            <interpolationType>closestDistance</interpolationType>
            <outputVariable>
                <variableId>output</variableId>
            </outputVariable>
        </interpolation>
    </merge>
</transformation>

  • No labels