You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 24 Next »


Overview

The sample viewer shows information about the samples that are shown based on the selected locations in the Data Viewer. For the selected locations a list of samples is shown in the upper part of the sample viewer. In the lower part of the sample viewer the content of selected samples are shown.

Contents

 

To use the sample viewer, configure it as <explorerTask> in Explorer.xml using <predefinedDisplay>sample viewer</predefinedDisplay> for example:

<explorerTask name="Monsters">
	<iconFile>sysmon.png</iconFile>
	<mnemonic>M</mnemonic>
	<predefinedDisplay>sample viewer</predefinedDisplay>
	<toolbarTask>true</toolbarTask>
	<menubarTask>true</menubarTask>
	<accelerator>ctrl S</accelerator>
	<loadAtStartup>true</loadAtStartup>
</explorerTask>

 

Export Time Series

Values of time series belonging to all selected samples in the sample viewer can be exported via the (right mouse click) context menu. 

When this is selected an export format can be chosen from the file type drop down menu.

The file types that can be chosen are configured in the Interactive Export Formats of Explorer.xml.

 

Select samples

Below the table with samples, a table with all values of the time series of the selected sample(s) are shown. In the image below sample 714 is selected so only values of the time series with sample id 714 are shown underneath.

Multiple samples can be selected at the same time. This is shown in the next image where samples 714 and 712 are selected.

The samples selection can be taken over by the filters in the data viewer when choosing the "select time series" option from the (right mouse) context menu:

The next image shows the location and parameter from the sample selected in the data viewer:

Selecting time series also works the other way around. By selecting locations in the data viewer, the sample viewer automatically only shows samples for those locations:

Selecting locations and parameters can be combined as can be seen below. Mulitple locations are selected and 1 parameter, only samples are shown that have values for time series belonging to one of the locations and the selected parameter.

Filtering sample viewer

The sample table can be filtered via the option Filter Tree in the (right mouse) context menu:

This will show a window where you can select values for columns for which the entire table will be filtered. Columns on which filtering is applied will be shown with a light blue background.

Filtering also works by double clicking on a cell in the sample table. Just as filtering from the filter window this can be applied to multiple cells as illustrated in the next image where the sample table is filtered for location "MBP016" and medewerker "IMP"

Edit samples (since 2020.02)

Since 2020.02 it is possible to edit sample values directly from the sample viewer. To enable this the sampleViewer needs it own configuration file with <enableEditor>true</enableEditor>. It is also possible to out a permission on the editing

Sample Display Config
<sampleDisplay 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/sampleDisplay.xsd">
	<enableEditor>true</enableEditor>
	<permissions>
		<editorPermission>beheerders</editorPermission>
	</permissions>
</sampleDisplay>

Make sure to also point towards this display in the explorer tasks with the same display config file name als the Sample Display config

Sample Display Explorer Task
		<explorerTask name="Monsterweergave">
			<iconFile>sample.png</iconFile>
			<mnemonic>M</mnemonic>
			<displayConfigFileName>SampleDisplay</displayConfigFileName>
			<toolbarTask>true</toolbarTask>
			<menubarTask>true</menubarTask>
			<accelerator>ctrl M</accelerator>
			<loadAtStartup>false</loadAtStartup>
		</explorerTask>

When this is configured correctly there will be an extra right mouse menu option to delete a row from the sample:

And also extra right mouse menu option to edit either the value of the time series or edit the value of a valueProperty:

Delete samples

Since 2021.02 samples can be deleted via the right mouse menu, this will also delete all values belonging to the sample.

Comments

Since 2021.01 it is also possible to view, add and edit comments directly from the table via the right mouse menu.

The comment column will appear automatically when at least 1 comment is present.

History

Since 2021.01 the option to show the history of a value is also added to the right mouse menu

This will show the history window in the same way as can be done via the Time Series Dialog:

Season and time filtering

Since 2021.01 it is also possible filter samples on time and define a list of seasons for filtering of samples within a specific period within years.

Sample Display Config
<sampleDisplay 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/sampleDisplay.xsd">
	<enableEditor>true</enableEditor>
	<permissions>
		<editorPermission>beheerders</editorPermission>
	</permissions>
	<season startMonthDay="--04-01" endMonthDay="--09-30" label="Groeiseizoen"/>
	<season startMonthDay="--09-30" endMonthDay="--04-01" label="Off season"/>
</sampleDisplay>

A dropwon on top of the sample panel will appear for this.

 

  • No labels