Versions Compared

Key

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

...

  • 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 at showdown of the client
  • interval: The Rolling Barrel will run at the specified interval

Example:

No Formatcode
<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:

No Formatcode
<parameterListConfig>
	<sortOption>name</sortOption>
</parameterListConfig>

...

From the FEWS Explorer File menu it is possible to export selected time series to a subset of the export file formats. To enable the Export Timeseries file mneu option, it should be enabled in the Explorer.xml file.

Example:

No Formatcode
<fileMenu>
	<exportTimeSeries visible="true"/>
</fileMenu>

...

  • csv
  • dutch-csv
  • gin-xml
  • Hymos 4.03
  • Hymos 4.5
  • iBever
  • Menyanthes
  • pi-xml
  • UM-Aquo

Some export formats (like UM Aquo) explicitly require an idMap before they are enabled in the file export menu.

Example:

No Formatcode
<interactiveExportFormats>
	<interactiveExportFormat>
		<name>iBever Export</name>
		<exportType>iBever</exportType>
		<IdMapId>IdExportKwaliteit</IdMapId>
	</interactiveExportFormat>    
	<interactiveExportFormat>
		<name>HYMOS Transferdatabase 4.03</name>
		<exportType>Hymos 4.03</exportType>
		<IdMapId>IdHYMOS</IdMapId>
		<flagConversionsId>ExportHYMOSFlagConversions</flagConversionsId>
	</interactiveExportFormat>
	<interactiveExportFormat>
		<name>HYMOS Transferdatabase 4.50</name>
		<exportType>Hymos 4.5</exportType>
		<IdMapId>IdHYMOS</IdMapId>
		<flagConversionsId>ExportHYMOSFlagConversions</flagConversionsId>
	</interactiveExportFormat>
	<interactiveExportFormat>
		<name>UM aquo</name>
		<exportType>UM-Aquo</exportType>
		<IdMapId>IdExportUMAQUO</IdMapId>
	</interactiveExportFormat>
</interactiveExportFormats>
	

...