Versions Compared

Key

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

...

Code Block
languagexml
titleExample Configuration
collapsetrue
<?xml version="1.0" encoding="UTF-8"?>
<displayGroups version="1.0" 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/displayGroups.xsd">
	<plot id="MW_Observed">
		<subplot>
			<timeSeriesSet>
				<moduleInstanceId>ImportObserved</moduleInstanceId>
				<valueType>scalar</valueType>
				<parameterId>H.obs</parameterId>
				<locationSetId>MW_Stations</locationSetId>
				<timeSeriesType>external historical</timeSeriesType>
				<timeStep unit="nonequidistant"/>
				<relativeViewPeriod unit="day" start="-2" end="0"/>
				<readWriteMode>add originals</readWriteMode>
			</timeSeriesSet>
		</subplot>
	</plot>
	<displayGroup name="Rain gauges single location display">
		<displayGroup name="Single location display">
			<singleLocationDisplays>
				<locationSetId>MW_Stations</locationSetId>
				<plotId>MW_Observed</plotId>
			</singleLocationDisplays>
		</displayGroup>
	</displayGroup>
</displayGroups>

 

 

...

locationLoop

Since 2015.01 it is now possible to create a whole tree of display groups for each location in a location set. This is for site where there are a multiple subplots required for each location (including child locations, parameters etc).

Code Block
languagexml
titleExample Configuration
collapsetrue
<displayGroups version="1.0" 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/displayGroups.xsd">
	<plot id="MW_Observed">
		<subplot>
			<timeSeriesSet>
				<moduleInstanceId>ImportObserved</moduleInstanceId>
				<valueType>scalar</valueType>
				<parameterId>H.obs</parameterId>
				<locationSetId>MW_Stations</locationSetId>
				<timeSeriesType>external historical</timeSeriesType>
				<timeStep unit="nonequidistant"/>
				<relativeViewPeriod unit="day" start="-2" end="0"/>
				<readWriteMode>add originals</readWriteMode>
			</timeSeriesSet>
		</subplot>
	</plot>
	<displayGroup name="Rain gauges location loop">
		<displayGroup name="Loop display">
			<locationLoop>
				<locationSetId>MW_Stations</locationSetId>
				<includeChildren>true</includeChildren>
			</locationLoop>
			<display name="Observed">
				<plotId>MW_Observed</plotId>
			</display>
		</displayGroup>
	</displayGroup>
</displayGroups>
Info

Display groups may be defined while DELFT-FEWS is running and reloaded by re-opening the time series dialogue. If a mistake is made, then the shortcuts item to open the tree view will not appear and an appropriate message will be generated. After resolving the mistake the item will again become available on re-loading the display.