Versions Compared

Key

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

...

Any Delft-FEWS configuration is based on the linkages between unique IDs (identifiers for locations, parameters, qualifiers, module-instances etc.). In the early stages of the development of a configuration these IDs were chosen and from that moment on, these IDs are known in the database and cannot be 'renamed' anymore. While working with the configuration over time, it may happen that a chosen ID (in the past) turns out not be very handy or consistent or may contain typos. For the readability and consistency of a configuration, functionality has become available to 'repair' inconsistencies in these IDs. The overall idea is that an (optional) configuration file can be added which contains a mapping between the required 'new' ID (= 'configuration-id') and the 'old' ID (='database-id'). Synonym for the 'database-id' is 'persistent-id'. When a new 'configuration-id' is chosen, this ID should be used in the complete configuration. This functionality will not 'rename' any ID in the database. It will leave the database intact. Since this functionality is a part of the configuration, it can also easily rolled back (if needed). This functionality also works in combination with the Deltares Open Archive. 

The IDs in: LocationSets.xml, Parameters.xml and Qualifiers.xml can be overruled by a *CSV-file containing this mapping.

...

CaseDescriptionYesNoSolution
1A location-ID was changed by a data provider XSolve this by regular 'id-mapping' functionality for importing the data
2I made a typo in a location-ID, parameter-ID or qualifier-IDX 

Create an overruling *.CSV file (for only those IDs with the typo) which is referred to in the LocationSets.xml, Parameter.xml or Qualifier.xml as in the examples below.

Change the rest of your configuration referring to this 'wrong' IDs as well.

3My location-IDs are not consistent with the IDs used by my data-providerX 

Create an overruling *.CSV file (for only those IDs) which is referred to in the LocationSets.xml as in the examples below.

Change the rest of your configuration referring to this 'wrong' IDs as well.

4...A location-name is not up-to-date anymore  XSolve this by editing the locations.xml or csv file and update the name attribute or field. 
......   

 

To make it still possible for Delft-FEWS to resolve the location/parameter/qualifier and module instances in the database or archive, you have to create CSV files with two columns that maps the config-id to the original persistent database/archive id. The overruling *.CSV file(s) should look like this:

...

the correct-id* is the ID you want to use in the configuration from now on. The database-id* is the persistent-id in the database.

Configuration examples

Sometimes you want to change some location/parameter/qualifier and module instance ids in you configuration. This happens when you want to keep external and internal ids in sync and the external id changes or when you want to change the ids to make it more consistent. Since 2017.01 this is possible without converting the local, central or open database and archives.  To make it still possible for FEWS to resolve the location/parameter/qualifier and module instances in the database or archive you have to create CSV files with two columns that maps the config id to the original persistent database/archive id. When data is written to the database / archive the initial old persistent-ids  are still used instead of the updated config ids-id. You only have to list the config-id en persistent-id when they are different from each-othereachother. You can split the CSV files if you want. 

Configuration examples

 

Code Block
xml
xml
<?xml version="1.0" encoding="UTF-8"?>
<locationSets 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/locationSets.xsd" version="1.1">
    <persistentIdsCsvFile>
        <file>persistentLocationIds<<file>persistentLocationIds.csv</file>
        <configId>%CONFIG_ID%</configId>
        <persistentId>%PERSISTENT_ID%</persistentId>
    </persistentIdsCsvFile>
    <locationSet id="csv">
        <csvFile>
            <file>locations.csv</file>
            <id>%ID%</id>
            <x>%x%</x>
            <y>%y%</y>
        </csvFile>
    </locationSet>

Code Block
xml
xml
<?xml version="1.0" encoding="UTF-8"?>
<parameters 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/parameters.xsd" version="1.0">
	<persistentIdsCsvFile>
		<file>persistentParameterIds<<file>persistentParameterIds.csv</file>
		<configId>%CONFIG_ID%</configId>
		<persistentId>%PERSISTENT_ID%</persistentId>
	</persistentIdsCsvFile>
	<parameterGroups>
	    <displayUnitConversionsId>DisplayUnitConversions</displayUnitConversionsId>

Code Block
xml
xml
<?xml version="1.0" encoding="UTF-8"?>
<qualifiers 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/qualifiers.xsd">
	<persistentIdsCsvFile>
		<file>persistentQualifierIds<<file>persistentQualifierIds.csv</file>
		<configId>%CONFIG_ID%</configId>
		<persistentId>%PERSISTENT_ID%</persistentId>
	</persistentIdsCsvFile>
	 <qualifier id="a"/>
	 <qualifier id="b"/>
</qualifiers>