Skip to content
Snippets Groups Projects
Commit 9a1d8b84 authored by Armin Costa's avatar Armin Costa
Browse files

Update Configuration.md

parent a08951ed
No related branches found
No related tags found
No related merge requests found
......@@ -93,8 +93,37 @@ A *Processor* configuraiton file ( *.processor_config.xml ) is the main executab
- The same xml format is used also by EGPF (Eurac Generic Processor Framework)
A typical DES *Processor" may have the following layout:
```xml
<EURAC_GENERIC_P>
<Processing>
<AOI name="myAOI" active="yes">
<!-- Download data -->
<Download type="sftp" active="yes" priority="NORM">
...
</Download>
<!-- Process data -->
<TaskGroup name="processAOI" type="serial" active="yes" priority="NORM">
<Task name="task1" type="class" active="yes" priority="NORM">
...
</Task>
<Task name="task2" type="class" active="yes" priority="NORM">
...
</Task>
</TaskGroup>
<!-- Distribute data -->
<Distribution type="sftp" active="yes" priority="NORM">
...
</Distribution>
</AOI>
</Processing>
</EURAC_GENERIC_P>
```
The *Processor* configuration options are listed here:
The *Processor* configuration options available are listed here:
https://gitlab.inf.unibz.it/css-public/des_documentation/blob/master/Processors.md
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment