Versions Compared

Key

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

...

Code Block
languagexml
<?xml version="1.0" encoding="UTF-8"?>
<topology 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/topology.xsd">
	<nodes id="C" name="C">
		<workflowId>workflowC</workflowId>
		<localRun>true</localRun>
		<node id="A" name="A">
			<workflowId>workflowA</workflowId>
			<localRun>false</localRun>
		</node>
		<node id="B" name="B"/>
	</nodes>nodes>nfo
</topology>

 

It is possible to connect nodes in the topology. In the example below the node STKA2 is connected to two previous nodes (SBFQ2 and ISKQ2).

...

Code Block
languagexml
<node id="Big10_RUN_Riverware_ST_Planning" name="Riverware (RBS) test">
				<workflowId>Big10_RiverWare_ST_Planning</workflowId>
				<displayGroupId>ST_P_Big10_SUM_Riverware</displayGroupId>
				<timeSeriesButtonsPanelId>ST_BASIN_buttons</timeSeriesButtonsPanelId>
				<customInfoLabel>
						<labelText>This is an example! first attribute: @wMarketChoice_RT@  second attribute: @SPILL_PRIORITY_RT@</labelText>
						<locationId>BPA</locationId>
						<overrulingUnmodifiedDateTimeAttributeValue>
							<attributeId>wMarketChoice_RT</attributeId>
							<offset unit="day" multiplier="1"/>
							<timeStep unit="day"/> 
						</overrulingUnmodifiedDateTimeAttributeValue>
				</customInfoLabel>
				<graceTime unit="hour" multiplier="5"/>
				<localRun>true</localRun>
				<saveLocalRunEnabled>true</saveLocalRunEnabled>
				<showRunApprovedForecastButton>true</showRunApprovedForecastButton>
</node>

It a date/time attribute is not modified the default value will be shown. It is also possible to configure an overruling value if the date/time attribute is unmodfied.

This can be done by using the overrulingUnmodifiedDateTimeAttributeValue. The value can be configured by defining an offset and a time step.

The overruling value will be determined by adding the configured offset to the time zero of the node and setting the determined time to the first valid time of the defined time step. 

 

 

Topology groups

It is possible to split the configuration of the topology in separate configuration files.

...