Versions Compared

Key

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

Overview


Excerpt
hiddentrue

Imports radar data from DWD-Hydrometeorologie.


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

...

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

Product identifier

Grid dimensions

TZ

1500 x 1400

TH

1500 x 1400

RX

900 x 900

RW

Dynamic (1100 x 900 default)

YW

Dynamic (1100 x 900 default)

PC

230 x 230

PF

200 x 200
PG460 x 460

PN

360 x 360

PI

360 x 360

DX

360 x 128

DQ

360 x 128

DXQ

360 x 128

Configuration

To import configure a module like this:

Code Block
xml
xml

<?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>

...

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

Code Block
xml
xml

<?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>

...