Versions Compared

Key

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

...

An example:
if LocB or LocC is double clicked , TSD will open to "Plot LocB" resp. "Plot LocC". If LocA is double clicked , TSD will open to "Plot LocC" , since this shortcut has <explorerLocationId>LocA</explorerLocationId>

Code Block
languagexml
titleDisplayGroups.xml config with doubleClickLocationEnabled option in explorerTasks (Explorer.xml)
<displayGroup name="Example">
            <display name="Plot LocA">
                        <locationId>LocA</locationId>
                        <plotId>Discharge</plotId>
            </display>                   
            <display name="Plot LocB">
                        <locationId>LocB</locationId>
                        <plotId>Discharge</plotId>
            </display>                   
            <display name="Plot LocC">
                        <explorerLocationId>LocA</explorerLocationId> 
                        <locationId>LocC</locationId>
                        <plotId>Discharge</plotId>
            </display>       
</displayGroup>

...

code example:


Code Block
languagexmllinenumberstrue
<statusBarConfig>
   <description>Standard date-time format</description>
   <dateTimeFormat>HH:mm:ss</dateTimeFormat>
   <timeGMT>true</timeGMT>
   <timeCurrent>false</timeCurrent>
   <timeLastRefresh>true</timeLastRefresh>
   <statusOfSystem>true</statusOfSystem>
   <mouseCoordinates>true</mouseCoordinates>
   <userName>true</userName>
   <scheduledTaskEndWarning>
      <color>aquamarine1</color>
      <time unit="minute" multiplier="75"/>
   </scheduledTaskEndWarning>
</statusBarConfig>


systemTimePauseButton

Optional field. With this setting a "pause" button will be visible next to the current time in the status bar. Toggle this button to start or stop automatic adjusting of current time. If paused is set to "true", the pause button will be toggled at start-up.

logMessagesSearchPeriod

Optional field. Maximal period of time for which the  unacknowledged messages will be searched. Default 2 days. Also used as the initial length of the search period for LogBrowser



...

It is possible to configure global datum label in a display group:

Code Block
languagexml
<globalDatum>AHD</globalDatum>

...

Since 2020.02 it is possible to configure local datum label to specifically set the reference level of a certain axis in a display group:

Code Block
languagexml
<localDatum>someLocalDatum</localDatum>

...

  • not_automatic: The Rolling Barrel will only run if you launch it using the F12 menu
  • startup_only: The Rolling Barrel will only run when starting up the client
  • shutdown_only: The Rolling Barrel will only run at showdown of the client
  • interval: The Rolling Barrel will run at the specified interval

Example:

Code Block
languagexml
<rollingBarrelOptions>
	<type>interval</type>
	<interval unit="hour" multiplier="1"/>
</rollingBarrelOptions>

...

  • default: Use the default sorting from the configuration file Parameters.xml.
  • name: Sort by parameter name (ascending).

Example:

Code Block
languagexml
<parameterListConfig>
	<sortOption>name</sortOption>
</parameterListConfig>

...

Opens the most recent forecast for selection (in dataviewer).

Code Block
languagexml
<fileMenu>
	<openMostRecentForecast visible="true"/>
</fileMenu>

...

Opens the last forecast for selection (in dataviewer)

Code Block
languagexml
<fileMenu>
	<openLastForecast visible="true"/>
</fileMenu>

...