Versions Compared

Key

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

...

The following link describes in detail of to configure a timestep.

httphttps://publicpublicwiki.deltares.nl/display/FEWSDOC/02+Data+Handling+in+DELFT-FEWS#02DataHandlinginDELFTFEWS#id-02DataHandlinginDELFT-FEWS-timeStep

yearlyTimeStep

A timeStep that defines a pattern of dates in a year. This pattern will be repeated every year.

...

To define a yearly time step an id should be configured. Secondly the monthDays of the time steps should be configured.
In this example the yearly time step has 4 monthDays. The start attribute defines the start of the aggregation period and the
end tag defines the end of the aggregation period. The value defines the timestamp used to store the aggregated value of the monthDay itself.

When using the yearly timestep in combination with the accumulation transformations, the value determines a restart moment for the accumulation. For those situations it is advised to set the value at the start of the season.

Monthly time step

A timeStep that defines a pattern of days in a month. This pattern will be repeated every month. Each day in the month can have a different aggregation period. The start of the aggregation period is exclusive and the end of the aggregation period is inclusive.

...

Code Block
xml
xml
	<monthlyTimeStep id="example">
		<day start="01" end="02" value="02"></day>
		<day start="10" end="11" value="11"></day>
	</monthlyTimeStep>

 

Weekly timestep

A timestep that defines a pattern of times in week. This pattern will be repeated every week (since 2014.01).  In this example values stored for this timestep are stored on Sunday, 00:00. This could be useful if the default weekly time (Thursday) is not suitable.

Code Block
	<weeklyTimeStep id="Week" label="week">
        <sunday times="00:00"/>
    </weeklyTimeStep>

 

Other examples

every day at 13:00
<timeStep times="13:00"/>

every day at 13:00 and 20:00
<timeStep times="13:00 20:00"/>

every hour at each half hour (0:30, 1:30, etc.)

<timeStep minutes="30"/>

every hour at 5 and 45 minutes

<timeStep minutes="05 45">

every 12th of the month
<timeStep daysOfMonth="12"/>

...