Versions Compared

Key

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

 Delft-FEWS contains a TimeSeriesSerializer that is able to export to the ZRXP wiski format. Note that the implementation currently is specific, eventhough some configuration options are available (see the description below). The exact format (headers, order of columns) might not fit with all Wiski implementations.

Configuration example:

Code Block
languagexml
linenumberstrue
<?xml version="1.0" encoding="UTF-8"?>
<timeSeriesExportRun xmlns="http://www.wldelft.nl/fews" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.wldelft.nl/fews http://fews.wldelft.nl/schemas/version1.0/timeSeriesExportRun.xsd">
   <export>
      <general>
         <serializerClassName>nl.wldelft.timeseriesserializers.NoeWiskiTimeSeriesSerializer</serializerClassName>
         <folder>%REGION_HOME%/Export</folder>
         <exportFileName>
            <name>RELBRAGG_Forecast_Q.zrx</name>
         </exportFileName>
         <idMapId>IdExportWISKI_Det</idMapId>
         <exportMissingValue>-777</exportMissingValue>
         <omitMissingValues>false</omitMissingValues>
         <exportTimeZone>
            <timeZoneOffset>-07:00</timeZoneOffset>
         </exportTimeZone>
      </general>
      <properties>
		<!--Default value is false-->
         <bool key="twoDigitMemberId" value="true"/>
		<!--Default value is false-->
         <bool key="writeFourColumnsOnly" value="true"/>
		<!--Default value is false-->
         <bool key="useAlternateHeaderLayout" value="true"/>
      </properties>
      <timeSeriesSet>
         <moduleInstanceId>Elbow_Hydstra_Forecast</moduleInstanceId>
         <valueType>scalar</valueType>
         <parameterId>QR.sim</parameterId>
         <locationId>05BJ004</locationId>
         <timeSeriesType>simulated forecasting</timeSeriesType>
         <timeStep unit="hour" multiplier="1"/>
         <relativeViewPeriod unit="day" start="-3" end="5" endOverrulable="true"/>
         <readWriteMode>read only</readWriteMode>
      </timeSeriesSet>
   </export>   
</timeSeriesExportRun>

...