Versions Compared

Key

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

...

Since 2018.02 thresholds can be made seasonal if a threshold is only valid for part of a year. When not configured the threshold is valid for the entire year.

Within a threshold group and a threshold value set, both seasonal and non-seasonal thresholds can be used together.

Code Block
languagexml
themeEclipse
firstline1
titleSeasonal Thresholds
	<thresholdGroup id="Waterlevel" name="Seasonal Thresholds">
		<defaultThreshold shortName="None"/>
		<levelThreshold id="River Alert" name="River Alert">
			<upWarningLevelId>River Alert</upWarningLevelId>
		</levelThreshold>
		<levelThreshold id="Minor Flooding June" name="Minor Flooding June">
			<upWarningLevelId>Minor Flooding</upWarningLevelId>
			<season startMonthDay="--06-01" endMonthDay="--06-30"/>
		</levelThreshold>
		<levelThreshold id="Minor Flooding July" name="Minor Flooding July">
			<upWarningLevelId>Minor Flooding</upWarningLevelId>
			<season startMonthDay="--07-01" endMonthDay="--07-31"/>
		</levelThreshold>
		<levelThreshold id="Minor Flooding August" name="Minor Flooding August">
			<upWarningLevelId>Minor Flooding</upWarningLevelId>
			<season startMonthDay="--08-01" endMonthDay="--08-31"/>
		</levelThreshold>
	</thresholdGroup>

...