-
Notifications
You must be signed in to change notification settings - Fork 0
/
edcconfig.xml
48 lines (40 loc) · 1.96 KB
/
edcconfig.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version='1.0' encoding='UTF-8'?>
<configuration>
<!--DISPLAY_TYPE: MUST BE AN INTEGER VALUE.
Choose from: GENERAL=0, ESRI=1, OILMAP=2
-->
<DISPLAY_TYPE>1</DISPLAY_TYPE>
<!--CLOSE_AFTER_PROCESSING: MUST BE A BOOLEAN VALUE.
If true, the application will close after processing a dataset.
If false, the application will remain open until it is closed maually.
-->
<CLOSE_AFTER_PROCESSING>true</CLOSE_AFTER_PROCESSING>
<!--MAKE_POINTER: MUST BE A BOOLEAN VALUE.
If true, the NcPointer.xml file will be created in the indicated (or default) output directory.
If false, the NcPointer.xml file will not be created.
-->
<MAKE_POINTER>true</MAKE_POINTER>
<!--OUTPUT_LOCATION: MUST BE A STRING VALUE.
This string will be used for all output data. If it is blank, data will be placed
one directory above the EDC.jar file. If the indicated directory does not exist,
the user will be notified and asked if they would like to create the directory.
-->
<OUTPUT_LOCATION>output</OUTPUT_LOCATION>
<!--ALLOW_FILE_REPLACEMENT: MUST BE A BOOLEAN VALUE.
If true, if the choosen output file name exists, the user will be asked if they want
to replace the existing file or not.
If false, if the choosen output file name exists, the user will be unable to replace the
file.
NOTE: If the DISPLAY_TYPE is ESRI, this value will always be false.
-->
<ALLOW_FILE_REPLACEMENT>true</ALLOW_FILE_REPLACEMENT>
<!--USE_VARIABLE_NAME_FOR_OUTPUT: MUST BE A BOOLEAN VALUE.
If true, the name of the first variable selected will be used as the default output name.
If false, the description (long_name) of the first variable selected will be used as the default
output name.
-->
<USE_VARIABLE_NAME_FOR_OUTPUT>false</USE_VARIABLE_NAME_FOR_OUTPUT>
<!--HEAP_SIZE: MUST BE AN INTEGER VALUE.
This is the runtime data area from which memory for all class instances and arrays is allocated.-->
<HEAP_SIZE>512</HEAP_SIZE>
</configuration>