Versions Compared

Key

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

...

When data is edited in FEWS but already archived then the data edits are by default not send to the archive. When the option uploadEditedDataToOpenArchive is set the data edits are send to the Archive.

It also necessary to configure the locationAreaAttributeId. This location attribute id will be used to determine to which area (one or more) each location belongs.

Below a configuration example

Code Block
<?xml version="1.0" encoding="UTF-8"?>
<archives 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/archives.xsd">
	<catalogueUrl>http://localhost:7080/deltares-archive-server/catalogue</catalogueUrl>
	<fileServerUrl>http://localhost:7080/thredds/fileServer/data</fileServerUrl>
	<elasticSearchUrl>http://localhost:7080/deltares-archive-server/elastic/</elasticSearchUrl>/elastic</elasticSearchUrl>
	<locationAreaAttributeId>REPORT_FOLDER</locationAreaAttributeId>
	<locationAreaAttributeId>NWSID</locationAreaAttributeId>
	<locationAreaAttributeId>NAME</locationAreaAttributeId>
	<locationAreaAttributeId>STATE</locationAreaAttributeId>
	<uploadEditedDataToOpenArchive>true</uploadEditedDataToOpenArchive>
</archives>

  

In addition a workflow needs to scheduled to insert the data edits into the archive. More details can be found here 22-4 Merging edited data - DELFT-FEWS Documentation - Deltares Public Wiki

...