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

Compare with Current View Page History

« Previous Version 3 Next »

Overview

This import is available in DELFT-FEWS versions after 28-10-2009 (FEWS version 2009.02)

Imports data from NetCDF files which comply to the CF standard.
More information about the cf standards can be found at: http://cf-pcmdi.llnl.gov/conformance/requirements-and-recommendations/1.4

There are three types of NetCDF-CF imports which can be defined:

  • Time series (NETCDF-CF_TIMESERIES)
  • Profiles (NETCDF-CF_PROFILE)
  • Grids (NETCDF-CF_GRID)

Configuring the import

An example of the NETCDF-CF_PROFILE import will be given here.

ImportNetcdf_Profile 1.00 default.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>NETCDF-CF_PROFILE</importType>
			<folder>$IMPORT_FOLDER$/NETCDF</folder>
			<failedFolder>$IMPORT_FAILED_FOLDER$</failedFolder>
			<backupFolder>$IMPORT_BACKUP_FOLDER$</backupFolder>
			<idMapId>IdImportNetCDF</idMapId>
		</general>
		<timeSeriesSet>
			<moduleInstanceId>ImportNetcdf_Profile</moduleInstanceId>
			<valueType>longitudinalprofile</valueType>
			<parameterId>H.fx</parameterId>
			<locationSetId>SobekProfiles_WL</locationSetId>
			<timeSeriesType>external historical</timeSeriesType>
			<timeStep unit="day" multiplier="1"/>
			<readWriteMode>add originals</readWriteMode>
		</timeSeriesSet>
	</import>
</timeSeriesImportRun>

An example of the IdMapping used for the NETCDF-CF_PROFILE import will be given below. In this example, the mapped locations correspond to the locations of the locatiesSet as defined above in the ImportNetcdf_Timeseries.xml.
Note that in the IdMapping of the parameters, the external name must match the variable names as used by the netcdf file exactly (case sensitive).
The locations that are mapped refer to branch id's which are defined in the Branches.xml.

IdImportNetCDF 1.00 default.xml
<?xml version="1.0" encoding="UTF-8"?>
<idMap 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" version="1.1">

	<parameter internal="H.fx" external="waterlevel"/>

	<location internal="Maastakken_NDB(Haringvliet)" external="Maastakken_NDB(Haringvliet)"/>
	<location internal="Rijntakken_NDB_NWW" external="Rijntakken_NDB_NWW"/>
	<location internal="Rijntakken_AmsterdamRijnkanaal" external="Rijntakken_AmsterdamRijnkanaal"/>
	<location internal="Rijntakken2_NDB2(NieuweWaterweg)" external="Rijntakken2_NDB2(NieuweWaterweg)"/>
	<location internal="Rijntakken_IJssel" external="Rijntakken_IJssel"/>
	<location internal="IJssel_IJsselmeer" external="IJssel_IJsselmeer"/>
	<location internal="Markermeer_VeluweRandmeren" external="Markermeer_VeluweRandmeren"/>

</idMap>

An example of the branches file is shown below.

Branches 1.00 default.xml
<?xml version="1.0" encoding="UTF-8"?>
<branches 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/branches.xsd" version="1.1">
	<geoDatum>Rijks Driehoekstelsel</geoDatum>
	<branch id="Maastakken_NDB(Haringvliet)">
		<branchName>Maastakken_NDB(Haringvliet)</branchName>
		<startChainage>1030</startChainage>
		<endChainage>321624</endChainage>
		<pt chainage="1030" label="R_MS_001_1" x="176029.1129" y="308594.236" z="40.32" z_rb="51.34"/>
		<pt chainage="2061" label="R_MS_001_2" x="176631.808" y="309427.7428" z="41.79" z_rb="50.92"/>
		...
		<pt chainage="321624" label="N_NDB_92" x="57935.1" y="436953" z="-7.82" z_rb="2.79"/>
	</branch>
	...
	<branch id="Markermeer_VeluweRandmeren">
	...
	</branch>
</branches>

The locationSetId used by the ImportNetcdf_Profile.xml must contain the branches defined in the above IdMapping.

LocationSets 1.00 default.xml
<?xml version="1.0" encoding="UTF-8"?>
<locationSets xmlns="http://www.wldelft.nl/fews" version="1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.wldelft.nl/fews http://fews.wldelft.nl/schemas/version1.0/locationSets.xsd">
	<locationSet id="SobekProfiles_WL" name="Sobek Profiles WL">
		<locationId>Maastakken_NDB(Haringvliet)</locationId>
		<locationId>Rijntakken_NDB_NWW</locationId>
		<locationId>Rijntakken_AmsterdamRijnkanaal</locationId>
		<locationId>Rijntakken2_NDB2(NieuweWaterweg)</locationId>
		<locationId>Rijntakken_IJssel</locationId>
		<locationId>IJssel_IJsselmeer</locationId>
		<locationId>Markermeer_VeluweRandmeren</locationId>
	</locationSet>
</locationSets>	
  • No labels