Versions Compared

Key

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

...

Convert datum to local datum during import. The conversion will be done for all parameters which use datum (as configured in Parameters.xml) The local datum is defined in the z element in the locations.xml file.

forecastSelectionPeriod

If configured all forecasts with a forecast time within the configured period will be exported. It is advisable to also configure a <timeZeroFormattingString> in the <prefix> of the <exportFileName>, to easily differentiate between the different forecasts.

Example configuration:

Code Block
languagexml
<export>
	<general>
		<exportType>SomeValidExportType</exportType>
		<folder>MyExportFolder</folder>
		<exportFileName>
			<name>_MyExportedFile.txt</name>
			<prefix>
				<timeZeroFormattingString>yyyyMMddHHmm</timeZeroFormattingString>
			</prefix>
		</exportFileName>
		<idMapId>MyIdMap</idMapId>
		<forecastSelectionPeriod start="-2" end="0" unit="day"/>
	</general>
	...
</export>

 

exportManualChanges

If used, only manual changed to the data will be exported. Unless the manualDBChangeViewPeriod is used, the relativeViewPeriod from the associated timeSeriesSet is used.

...