Versions Compared

Key

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

...

1) Open the DisplayGroups.xml file and go to a subplot:

noformat
Code Block
xml
xml
	<displayGroup name="MyCatchments">
		<display name="A">
			<relativeViewPeriod unit="hour" start="-24" end="24"/>
			<subplot>
				<timeSeriesSet>
				<moduleInstanceId>MergedPrecipitation_Historical</moduleInstanceId>
				<valueType>scalar</valueType>
				<parameterId>P.merged</parameterId>
				<locationId>XX</locationId>
				<timeSeriesType>simulated historical</timeSeriesType>
				<timeStep unit="minute" multiplier="15"/>
				<relativeViewPeriod unit="hour" start="-48" end="24"/>
				<readWriteMode>read only</readWriteMode>
				</timeSeriesSet>

2)Now insert a forecastConfidenceTimeSpan1 element with a unit attribute (hour) just after the subplot element, like this:

noformat
Code Block
xml
xml
	<displayGroup name="MyCatchments">
		<display name="A">
			<relativeViewPeriod unit="hour" start="-24" end="24"/>
			<subplot>
				<forecastConfidenceTimeSpan1 unit="hour"/>
				<timeSeriesSet>
				<moduleInstanceId>MergedPrecipitation_Historical</moduleInstanceId>
				<valueType>scalar</valueType>
				<parameterId>P.merged</parameterId>
				<locationId>XX</locationId>
				<timeSeriesType>simulated historical</timeSeriesType>
				<timeStep unit="minute" multiplier="15"/>
				<relativeViewPeriod unit="hour" start="-48" end="24"/>
				<readWriteMode>read only</readWriteMode>
				</timeSeriesSet>

...