You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

Overview

Imports high resolution precipitation analysis and forecast data from Radolan/Radvor-OP files from Deutscher Wetterdienst (DWD).
The data is GRID typed data.

File structure

A range of data products from DWD radar observations and/or derived from radar observations are delivered in binary files. The heading in the file is ASCII text (hence human readable) and is used to determine for which parameter the file contains data.
The remainder of the file contains the data in binary format.

This import can read data for the following data products; the product identifier is used as parameter ID during import:

Product identifier

TZ

TH

RX

PC

PF

PN

PI

DX

DQ

DXQ

Configuration

To import configure a module like this:

<?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>
			<importType>Radolan</importType>
			<folder>$IMPORT_FOLDER_RADOLAN$</folder>
			<failedFolder>$IMPORT_FOLDER_RADOLAN$</failedFolder>
			<backupFolder>$IMPORT_FOLDER_RADOLAN$</backupFolder>
			<idMapId>IdImportRadolan</idMapId>
			<unitConversionsId>ImportUnitConversions</unitConversionsId>
			<importTimeZone>
				<timeZoneOffset>+01:00</timeZoneOffset>
			</importTimeZone>
			<dataFeedId>RadolanRadar</dataFeedId>
		</general>
		<timeSeriesSet>
			<moduleInstanceId>ImportRadolan</moduleInstanceId>
			<valueType>grid</valueType>
			<parameterId>P.radar</parameterId>
			<locationSetId>RadolanLocs</locationSetId>
			<timeSeriesType>external historical</timeSeriesType>
			<timeStep unit="minutes" multiplier="5"/>
			<readWriteMode>add originals</readWriteMode>
			<synchLevel>1</synchLevel>
			<expiryTime unit="day"/>
			<ensembleId>EPS</ensembleId>
		</timeSeriesSet>

                    .
                    .
                    .


	</import>
</timeSeriesImportRun>

idMapping

The parser assigns the product ID found in the header to ParameterID.
LocationID is taken from the header in case of PF, DX, DQ, DXQ.
In other cases LocationID is not set.

To map these to current FEWS location and parameter an idMapping can be configured.
For example:

<?xml version="1.0" encoding="UTF-8"?>
<idMap version="1.1" 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/idMap.xsd">
  <parameter external="RX" internal="P.radar"/>
  <location external="10410" internal="Loc10410"/>
</idMap>
  • No labels