Versions Compared

Key

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

...

If configured all forecasts with a forecast time within the configured period will be exported. It is advisable to also configure

When also configuring a <timeZeroFormattingString> in the <prefix> of the <exportFileName>, each forecast will be exported to a separate file to easily differentiate between the different forecasts.

When no <timeZeroFormattingString> is configured in the <exportFileName> all forecasts will be exported to the same file.

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>

...