Versions Compared

Key

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

...

Code Block
languagexml
titleWowModuleConfigFile
<fews:timeSeriesExportRun xmlns:fews="http://www.wldelft.nl/fews">
  <fews:export>
    <fews:general>
      <fews:serializerClassName>nl.wldelft.timeseriesserializers.WowTimeSeriesSerializer</fews:serializerClassName>
      <fews:serverUrl>http://wow.metoffice.gov.uk/automaticreading?</fews:serverUrl>
      <!-- <fews:connectionTimeOutMillis>3000</fews:connectionTimeOutMillis> -->
      <fews:idMapId>WosExportIdMap</fews:idMapId>
      <fews:unitConversionsId>WowExportUnitConversion</fews:unitConversionsId>
      <fews:omitMissingValues>true</fews:omitMissingValues>
      <fews:exportTimeZone>
        <fews:timeZoneName>GMT</fews:timeZoneName>
      </fews:exportTimeZone>
    </fews:general>
    <fews:properties>
      <fews:int key="AWSPinAwsPin" value="123456">
        <fews:description>Required PIN code for uploading data to station</fews:description>
      </fews:int>
<!--  <fews:int key="ReadTimeoutMillis" value="3000">
        <fews:description>Optional timeout for response message. Defaults to 3000</fews:description>
      </fews:int> -->
<!--  <fews:int key="ConnectionTimeoutMillis" value="3000">
        <fews:description>Optional timeout for establishing connection to server. Defaults to 3000</fews:description>
      </fews:int> -->
 <!--     <fews:string key="SoftwaretypeSoftwareType" value="FewsWowExport1.0">
          <fews:description>Optional identifier of decribingdescribing source of datavalues. Defaults to 'FewsWowExport1.0'</fews:description>
      </fews:string> -->
    </fews:properties>
    <fews:timeSeriesSet>
      <fews:moduleInstanceId>WowExport</fews:moduleInstanceId>
      <fews:valueType>scalar</fews:valueType>
      <fews:parameterId>a valid WOW parameter key</fews:parameterId>
<!--      <fews:locationId>site Id</fews:locationId> -->
      <fews:locationSetId>WowSiteIds</fews:locationSetId>
      <fews:timeSeriesType>external historical</fews:timeSeriesType>
      <fews:timeStep unit="nonequidistant"/>
      <fews:relativeViewPeriod unit="hour" start="-1" end="0" startOverrulable="false" endOverrulable="false">
        <fews:description>If more than one timestep available only latest value is uploaded</fews:description>
      </fews:relativeViewPeriod>
      <fews:readWriteMode>add originals</fews:readWriteMode>
    </fews:timeSeriesSet>
  </fews:export>
</fews:timeSeriesExportRun>

Example IdMap

Configure an IdMap for mapping the FEWS parameter ids to an excepted WOW data parameter key. The list of accepted data keys can be found here http://wow.metoffice.gov.uk/support/dataformats#automatic. De list of available site location ids can also be returned received from the WOW website. Keep in mind that data can only be uploaded for a measurement site if the AWS Pin code for the site is known.

Code Block
xml
xml
<fews:idMap version="1.1" xmlns:fews="http://www.wldelft.nl/fews">
    <fews:parameter internal="T.obs" external="tempf"/>
    <fews:parameter internal="P.acc" external="rainin"/>
    <fews:parameter internal="Wind.dir" external="winddir"/>
    <fews:location internal="Fews1" external="120000"/>
    <fews:location internal="Fews2" external="120001"/>
</fews:idMap>

Example UnitConversions

Configure a UnitConversions file for converting FEWS metric units to UK units. The following three types of conversion might be required:

  • Temperature: oC to Fahrenheit
  • Length: mm to inches
  • Speed: m/s or km/h to Miles per Hour

Code Block
languagexml
titleexample WowUnitConversions
<?xml version="1.0" encoding="UTF-8"?>
<unitConversions 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/unitConversions.xsd">
    <unitConversion>
        <inputUnitType>oC</inputUnitType>
        <outputUnitType>F</outputUnitType>
        <multiplier>1.8</multiplier>
        <incrementer>32</incrementer>
    </unitConversion>
    <unitConversion>
        <inputUnitType>mm</inputUnitType>
        <outputUnitType>in</outputUnitType>
        <multiplier>0.0393701</multiplier>
        <incrementer>0</incrementer>
    </unitConversion>
    <unitConversion>
        <inputUnitType>m/s</inputUnitType>
        <outputUnitType>mph</outputUnitType>
        <multiplier>2.23694</multiplier>
        <incrementer>0</incrementer>
    </unitConversion>
</unitConversions>