Versions Compared

Key

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

...

It is possible to configure overruling X and Y attributes, which will overrule the X and Y coordinates use for the interpolation.


Code Block
languagexml
<transformation id="bilinear">
   <interpolationSpatial>
      <bilinear>
         <inputVariable>
            <timeSeriesSet>
               <moduleInstanceId>SpatialInterpolationBilinearOverrulingCoordinatesTest</moduleInstanceId>
               <valueType>grid</valueType>
               <parameterId>T.historical</parameterId>
               <locationId>gridLocation3</locationId>
               <timeSeriesType>external historical</timeSeriesType>
               <timeStep unit="day"/>
               <relativeViewPeriod unit="day" start="0" end="10"/>
               <readWriteMode>add originals</readWriteMode>
            </timeSeriesSet>
         </inputVariable>
         <overrulingXAttribute>overrulingX</overrulingXAttribute>
         <overrulingYAttribute>overrulingY</overrulingYAttribute>
         <outputVariable>
            <timeSeriesSet>
               <moduleInstanceId>SpatialInterpolationBilinearOverrulingCoordinatesTest</moduleInstanceId>
               <valueType>scalar</valueType>
               <parameterId>T.historical</parameterId>
               <locationId>polygonLocation2</locationId>
               <timeSeriesType>external historical</timeSeriesType>
               <timeStep unit="day"/>
               <relativeViewPeriod unit="day" start="0" end="10"/>
               <readWriteMode>add originals</readWriteMode>
            </timeSeriesSet>
         </outputVariable>
      </bilinear>
   </interpolationSpatial>
</transformation>

...