Versions Compared

Key

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

...

Code Block
xml
xml
<TimeSeries xmlns="http://www.wldelft.nl/fews/PI"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.wldelft.nl/fews/PI http://fews.wldelft.nl/schemas/version1.0/pi-schemas/pi_timeseries.xsd"
version="1.2">
<timeZone>0.0</timeZone>
<series>
  <header>
    <type>instantaneous</type>
    <locationId>locA</locationId> <!-- Put the locationId here.
                                     the locationId is defined by the data supplier. Delft-Fews
                                     will map this to an internal location if needed.
                              -->
    <parameterId>H.obs</parameterId> <!-- Put the parameterId here.
                                     the parameterIdis defined by the data supplier. Delft-Fews
                                     will map this to an internal location if needed. -->
    <timeStep unit="second" multiplier="3600"/>
    <!-- start and end date/time are required! -->
    <startDate date="2006-08-23" time="17:00:00"/>
    <endDate date="2006-08-24" time="00:00:00"/>
    <missVal>-8888.0</missVal>
    <longName>Bobbio Trebbia</longName>
    <units>m</units>
  </header>
  <event date="2006-08-23" time="17:00:00" value="8.66"/>
  <event date="2006-08-23" time="18:00:00" value="9.66"/>
  <event date="2006-08-23" time="19:00:00" value="8.66" flag="3" flagSource="SX"/> <!-- flag=3 means doubtfull, the flagsource explains the reason: exceeding the Soft Max criteria-->
  <event date="2006-08-23" time="20:00:00" value="-8888.0" flag="9"/>
  <event date="2006-08-23" time="21:00:00" value="8888.0"/>
  <event date="2006-08-23" time="22:00:00" value="8888.0" flag="2"/>
  <event date="2006-08-23" time="23:00:00" value="8888.0" flag="1"/>
  <event date="2006-08-24" time="00:00:00" value="-8888.0" flag="9"/>
</series>
<series>
  <header>
    <type>instantaneous</type>
    <locationId>locB</locationId> <!-- Put the locationId here.
                                   the locationId is defined by the data supplier. Delft-Fews
                                   will map this to an internal location if needed.
                            -->
    <qualifierId>test</qualifierId> <!-- here are the (optional) qualifierIds listed, there can be more than only one -->
    <qualifierId>temp</qualifierId>
    <parameterId>H.obs</parameterId> <!-- Put the parameterId here.
                            the parameterIdis defined by the data supplier. Delft-Fews
                                   will map this to an internal location if needed. -->
    <qualifierId>test</qualifierId> <!-- here are the (optional) qualifierIds listed, there can be more than only one -->
    <qualifierId>temp</qualifierId>
    <timeStep unit="second" multiplier="3600"/>
    <!-- start and end date/time are required! -->
    <startDate date="2006-08-23" time="17:00:00"/>
    <endDate date="2006-08-24" time="00:00:00"/>
    <missVal>-999.0</missVal>
    <longName>Fitz</longName>
    <units>m</units>
  </header>
  <properties>
    <dateTime key="requestTime" date="2014-03-10" time="15:43:04" />
    <string value="source" key="Matroos"/>
  </properties>
  <event date="2006-08-23" time="17:00:00" value="2.66"/>
  <event date="2006-08-23" time="18:00:00" value="2.66"/>
  <event date="2006-08-23" time="19:00:00" value="2.66"/>
  <event date="2006-08-23" time="20:00:00" value="-2.0"/>
  <event date="2006-08-23" time="21:00:00" value="2.0"/>
  <event date="2006-08-23" time="22:00:00" value="2.0"/>
  <event date="2006-08-23" time="23:00:00" value="2.0"/>
  <event date="2006-08-24" time="00:00:00" value="-2.0"/>
</series>
</TimeSeries>

...