Versions Compared

Key

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

...

Note
titleNote

The endoverrulable attribute in the relative view period in time series sets must be set to true in all subsequent modules in which you want to use the actual forecast length.

Since 2011.02, the forecastLengthEstimator can also be used to set a fixed end date, e.g. the end of the water year.

Code Block
xml
xml


<?xml version="1.0" encoding="UTF-8"?>
<forecastLengthEstimator 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/forecastLengthEstimator.xsd">
 <timeZone>GMT-12:00</timeZone>
 <externalForecastTimeSeries>
 	<moduleInstanceId>ImportDATACARD</moduleInstanceId>
 	<valueType>scalar</valueType>
 	<parameterId>MAP</parameterId>
 	<locationSetId>Catchments</locationSetId>
 	<timeSeriesType>external forecasting</timeSeriesType>
 	<timeStep unit="hour" multiplier="6"/>
 	<relativeViewPeriod unit="day" start="0" end="365" endOverrulable="true"/>
 	<readWriteMode>read only</readWriteMode>
 </externalForecastTimeSeries>
 <minForecastEndDay>--09-30</minForecastEndDay>

</forecastLengthEstimator>

As of 2012.02, the forecast length can be forced to the end of the 2nd wateryear by using a combination of <minForecastLength> and <minforecastEndDay>

Code Block
xml
xml

	<minForecastLength multiplier="365" unit="day"/>
	<minForecastEndDay>--09-30</minForecastEndDay>

Sample input and output

Sample input and output

...