Versions Compared

Key

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

...

Section


Column
width45%

SSD folder structure for multiple Delft-FEWS applications

It is also possible to group several scenarios/scripts (that belong to different Delft-FEWS configurations for example) by using an extra directory level.

In the application configuration, a reference to the appropriate scenario/script database can be set, for example ScenarioScriptDatabase/River.

Minimize size of LDS through changes to Delft-FEWS config

To minimize the size of the localDataStore, one could separate the import of maps and timeseries into separate modules. This allows for a lower frequency for the import of maps. However, when this is applied, an additional change should be made to the Delft-FEWS configuration (see also application configuration). Also make sure to incorporate the changes to the moduleInstanceId's for the separate import of timeseries and maps in the Delft-FEWS configuration of the filters, spatial display, etc.

Remove information concerning  the  WaterCoach session from the SSD

The scenario/script database  should not contain any information concerning  the  WaterCoach session.  This information (selected  scenario, script and time)  is stored in the localDataStore whenever we start a session. It makes possible to leave an uncompleted session and start it again to continue.   When we decide to copy  localDataStore to the scenario/script database  folder,  we should first  remove the session info . This can be done with the Explorer F12 menu   P database -> delete WaterCoach session info

 


Column


Code Block
titleSSD for multiple Delft-FEWS applications
ScenarioScriptDatabase
|-- Sea
|   |-- scenario1
|   |   |-- localDataStore
|   |   |   `-- local.fdb
|   |   |-- script1
|   |   |   `-- script_config.xml
|   |   `-- script2
|   |       `-- script_config.xml
|   `-- scenario2
|       |-- localDataStore
|       |   `-- local.fdb
|       `-- script1
|           `-- script_config.xml
`-- River
    |-- scenario1
    |   |-- localDataStore
    |   |   `-- local.fdb
    |   `-- script1
    |       `-- script_config.xml
    `-- scenario2
        |-- localDataStore
        |   `-- local.fdb
        |-- script1
        |   `-- script_config.xml
        `-- script2
            `-- script_config.xml



...