Versions Compared

Key

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

From eFrom 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 menu option, it should be enabled in the Explorer.xml file.

...

Code Block
		<interactiveExportFormat>
			<name>Umaquo 2009 XML files</name>
			<serializerClassName>nl.wldelft.webservice.umaquo.timeseriesserializers.UmAquoXmlTimeSeriesSerializer</serializerClassName>
			<binDir>$MODULE_UMAQUO_FOLDER$</binDir>
			<fileFilter>xml</fileFilter>
			<exportUnreliable>true</exportUnreliable>
			<properties>
				<int key="SCHEMA_VERSION" value="2009"/>
			</properties>
			<IdMapId>IdExportUmAquo</IdMapId>
			<unitConversionsId>ExportUmAquoUnits</unitConversionsId>
			<flagConversionsId>ExportUMAquoFlagConversions</flagConversionsId>
		</interactiveExportFormat>


Since FEWS version 2020.02 it is possible to export unreliables using generalCsv when there is a flag column configured. This is to prevent exporting untrustworthy data from FEWS without showing it should not be trusted.

Since 2020.02 it is also possible to specify an explicit time zone that must be used for the interactive export:

Code Block
		<interactiveExportFormat>
			<name>Export Fysische-Chemie beknopt</name>
			<exportType>generalCsv</exportType>
			<IdMapId>IdExport_IMmetingen</IdMapId>
			<timeZoneName>AST</timeZoneName>
			...
		</interactiveExportFormat>
		<interactiveExportFormat>
			<name>Export Fysische-Chemie uitgebreid</name>
			<exportType>generalCsv</exportType>
			<IdMapId>IdExport_IMmetingen</IdMapId>
			<timeZoneOffset>+03:15</timeZoneOffset>


Warning

For the Umaquo exports, make sure the correct version is available in the bin folder. The latest umaquo binaries are part of the Delft-FEWS WebServices package.

...