Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

  • Time series import configuration files
  • The mapping between internal location and parameter id's to EA XML known location and parameter id's
  • The mapping between internal data flags to EA XML known data flags.
Code Block
xml
xml
titleImportTelemetry.xmlxml
<?xml version="1.0" encoding="UTF-8"?>
<timeSeriesImportRun 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/timeSeriesImportRun.xsd">
	<import>
		<general>
			<importTypeStandard>ea</importTypeStandard>
			<folder>$IMPORT_TELEMETRY_FOLDER$</folder>
			<failedFolder>$IMPORT_FAILED_FOLDER$</failedFolder>
			<backupFolder>$BACKUP_TELEMETRY_FOLDER$</backupFolder>
			<validate>true</validate>
			<idMapId>IdImportTelemetry</idMapId>
			<unitConversionsId>ImportUnitConversions</unitConversionsId>
			<flagConversionsId>ImportFlagConversions</flagConversionsId>
			<dataFeedId>RTS</dataFeedId>
		</general>
		<tolerance parameterId="P.obs" timeUnit="minute" unitCount="1" locationSetId="Gauges_P.obs"/>
		<timeSeriesSet>
			<moduleInstanceId>ImportTelemetry</moduleInstanceId>
			<valueType>scalar</valueType>
			<parameterId>P.obs</parameterId>
			<locationSetId>Anglian_P.obs</locationSetId>
			<timeSeriesType>external historical</timeSeriesType>
			<timeStep unit="minute" multiplier="15"/>
			<readWriteMode>add originals</readWriteMode>
			<synchLevel>1</synchLevel>
			<expiryTime unit="day" multiplier="400"/>
		</timeSeriesSet>
		<timeSeriesSet>
			<moduleInstanceId>ImportTelemetry</moduleInstanceId>
			<valueType>scalar</valueType>
			<parameterId>P.obs</parameterId>
			<locationSetId>Anglian_P.obs</locationSetId>
			<timeSeriesType>external historical</timeSeriesType>
			<timeStep unit="hour"/>
			<readWriteMode>add originals</readWriteMode>
			<synchLevel>1</synchLevel>
			<expiryTime unit="day" multiplier="400"/>
		</timeSeriesSet>
	</import>
</timeSeriesImportRun>

...