Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Changes for FEWS-31029

...

In the forecaster notes system, users can acknowledge messages with level ERROR and FATAL from other users. Thus showing that they read and/or handled the note made by the other user. There is no similar functionality present in the forecast product information panel. Note that messages with level INFO and WARN do not have to be acknowledged.

Showing information on input used

...

Since version 2022.01 a specific display config file has been introduced in order to define default settings for the product info panel.

columns visibility

This applies to the visibility of columns, each column can be made invisible by default.

This will be overruled if the user changes the column visibility via the right mouse show/hide columns option also introduced in 2022.01.

Image Removed

Image Removed

These settings will be stored in the user settings, which will overrule the defaults from the config.

default settings for creating product info

in the config it is also possible to disable elements from the product creation panel, like is done with Confidence and Classification in the example below.

It is also possible to specify a default range for the forecast time, which in this case is 10 days:

Image Removed 

The config for this looks as follow:

...

languagexml
titleforecastProductInfoDisplay.xml

...

Code Block
languagexml
titleforecastProductInfoDisplay.xml
<?xml version="1.0" encoding="UTF-8"?>
<forecastProductInfoDisplay 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/forecastProductInfoDisplay.xsd">
	<productSelection enabled="true"/>
	<forecastTime>
		<defaultForecastTimeSelection>RANGE</defaultForecastTimeSelection>
		<defaultForecastPeriod unit="day" multiplier="10"/>
	</forecastTime>
	<confidence enabled="false">
		<defaultLevel>MEDIUM</defaultLevel>
	</confidence>
	<classification enabled="false"/>
	<columns>		
		<classification visibleByDefault="false"/>
	</columns>
</forecastProductInfoDisplay>

columns visibility

This applies to the visibility of columns, each column can be made invisible by default.

This will be overruled if the user changes the column visibility via the right mouse show/hide columns option also introduced in 2022.01.

Image Added

Image Added

These settings will be stored in the user settings, which will overrule the defaults from the config.

default settings for creating product info

in the config it is also possible to disable elements from the product creation panel, like is done with Confidence and Classification in the example below.

It is also possible to specify a default range for the forecast time, which in this case is 10 days:

Image Added 

...

Using the Forecast Product Information

...