Versions Compared

Key

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

...

The second URL is the URL of the HTTP-server of THREDDS. This URL is configured in the properties section as the property dataServerURL.

Example

From 2021.01 it is possible to import NETCDF attributes as timeSeriesProperties into FEWS. This can be configured in the properties (see example below). Using the example config, the value of the NETCDF attribute ‘systemid’ will be imported as a timeSeriesProperty ‘rivieren2’.

Since 2021.02 it is also possible to export timeSeriesProperties as NETCDF attributes. You can find a config example here:  https://publicwiki.deltares.nl/display/FEWSDOC/NETCDF-CF_GRID+Export

Code Block
languagexml
<?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>NetCDFStorageLatestForecastGrid</importTypeStandard>
			<serverUrl>http://tl-tc119.xtr.deltares.nl:22002/thredds/</serverUrl>
		</general>
		<properties>
			<string key="filePattern" value="yyyyMMddHHmm"/>
			<string key="relativePath" value="'data/netcdf-storage/rws/dcm5_v5_hirlam'"/>
			<string key="dataServerUrl" value="http://tl-tc119.xtr.deltares.nl:22002/thredds/fileServer"/>
			<bool key="importAsReferences" value="true"/>
			<string key="netcdfattribute:taskrunid" value='timeseriesproperty:rivieren1'/>
			<string key="netcdfattribute:systemid" value='timeseriesproperty:rivieren2'/>   </properties>
		<timeSeriesSet>
			<moduleInstanceId>import_knmi_harmonie40</moduleInstanceId>
			<valueType>grid</valueType>
			<parameterId>air_pressure_fixed_height</parameterId>
			<locationId>knmi_harmonie40</locationId>
			<timeSeriesType>external forecasting</timeSeriesType>
			<timeStep unit="nonequidistant"/>
			<readWriteMode>add originals</readWriteMode>
		</timeSeriesSet>
	</import>
</timeSeriesImportRun>


...