Versions Compared

Key

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

...

The area code is one of the following codes that should be available as externalLocationId in the idMap (only one code is required if a locationset is configured in the timeseriesset):

  • "GR" (Groningen)
  • "FL" (Flevoland)
  • "ZH" (Zuid-Holland)
  • "ZE" (Zeeland)
  • "NH" (Noord-Holland)
  • "LB"  (Limburg)
  • "NB" (Noord-Brabant)
  • "GL" (Gelderland)
  • "UT" (Utrecht)
  • "OV" (Overijssel)
  • "FR" (Friesland)
  • "DR" (Drenthe)
  • "WAE" (Waddeneilanden)
  • "WAD" (Waddenzee)
  • "IJG" (IJsselmeergebied)

...

  • "status" : "Test"
  • "source" : "KNMI"
  • "scope" : "Public"
  • "certainty" : "Likely"
  • "category" " "Met"
  • "sender" : "http://www.knmi.nl/nederland-nu/weer/waarschuwingen"
  • "sender-name" : "KNMI Koninklijk Nederlands Meteorologisch Instituut"
  • "contact" : "informatiecentrum@knmi.nl"
  • "urgency" : "Future"
  • "awareness-type" : "12"
    • The following awareness-types are supported:
      "00" : "1; wind"
      "01" : "10; rain";
      "02": "2; snow-ice"
      "03" : "3; thunderstorm"
      "07" : "4; fog"
      "12" : "12; flooding"
      "16" : "5; high-temperature"
      "17" : "6; low-temperature"

 As MeteoAlarmCap could generate multiple files per forecast, 'exportFileName' create a folder that includes all CAP exports files. 'exportFileName' should be different for each export.

Code Block
xml
xml
<?xml version="1.0" encoding="UTF-8"?>
<timeSeriesExportRun 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/timeSeriesExportRun.xsd">
	<export>
		<general>
			<exportType>MeteoAlarmCap</exportType>
			<folder>$EXPORT_FOLDER$/MeteoAlarm</folder>
			<exportFileName>
				<name>meteoAlarmOv.xml</name>
			</exportFileName>
			<idMapId>idMeteoAlarm</idMapId>
		</general>
		<properties>
			<string key="area-code" value="OV" ></string>
		</properties>
		<timeSeriesSet>
			<moduleInstanceId>ModuleInstanceId</moduleInstanceId>
			<valueType>scalar</valueType>
			<parameterId>Q</parameterId>
			<locationId>73</locationId>
			<timeSeriesType>external historical</timeSeriesType>
			<timeStep unit="minute" multiplier="15"/>
			<readWriteMode>read complete forecast</readWriteMode>
			<synchLevel>1</synchLevel>
			<ensembleId>main</ensembleId>
			<ensembleMemberIndex>0</ensembleMemberIndex>
		</timeSeriesSet>
	</export>
</timeSeriesExportRun>

...