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

Compare with Current View Page History

« Previous Version 3 Next »

Overview

The ZRXP format is a ASCII data exchange file format of Wiski. The file may contain one or more time series.
The time series are defined by a header line that starts with #REXCHANGE.
Directly after this keyword the ID of the time series is defined: #REXCHANGE013S050
After the keyword RINVAL the missing value is defined.
In a complete example of the header

#REXCHANGE013S050|*|RINVAL-777|*|

the next items will be read:

  • time series ID = 013S050
  • missing value = -777

A new time series starts simply with a new header. It also means that the previous series has ended.

Configuration

ZRXP does not identify both a location and a parameter ID. It only has a time series ID. To import these series into FEWS you have to set both the external location ID and parameter ID to this time series ID.

Example of the import module instance:

  <import>
    <general>
      <importType>WISKI</importType>
      <folder>$IMPORT_FOLDER$/zrxp</folder>
      ....
    </general>

Example of the id mapping:

<?xml version="1.0" encoding="UTF-8"?>
<idMap version="1.1" 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/idMap.xsd">
  <map internalParameter="H" internalLocation="013" externalParameter="013S050" externalLocation="013S050"/>
  <map internalParameter="H" internalLocation="013" externalParameter="013S065" externalLocation="013S065"/>
.....

Example file

#REXCHANGE013S050|*|RINVAL-777|*|
20081111000000 7.538
20081111002000 7.541
20081111004000 7.544
20081111010000 7.547
20081111012000 7.549
20081111014000 7.550
20081111020000 7.553
20081111022000 7.554
20081111024000 7.555
#REXCHANGE013S065|*|RINVAL-777|*|
20081111000000 7.195
20081111002000 7.188
20081111004000 7.184
20081111010000 7.189
20081111012000 7.200
20081111014000 7.213
20081111020000 7.220
20081111022000 7.218
20081111024000 7.211
  • No labels