forked from linz/QGIS-AIMS-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaimsConfig.ini.template
82 lines (59 loc) · 2.06 KB
/
aimsConfig.ini.template
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[user]
#aims user credentials
org: <organisation>
name: <aims-username>
pass: <aims-password>
[url]
api: https://<aims server>:8080/aims/api
[db]
#database connection parameters
user: <database-username>
password: <database-password>
host: <aims db Server>
port: 5432
name: linz_dev
[const]
#aims UI parameters
#turn test mode on or off, on appends test path to all request urls
TEST_MODE = False
#time to wait for threads to join after stop has been called eg On BB move (s)
THREAD_JOIN_TIMEOUT = 5
#max number of features to request per page
MAX_FEATURE_COUNT = 1000
#first page (to not backfill past)
FIRST_PAGE = 1
#upper limit on page number to request
PAGE_LIMIT = 1000
#time delay between thread checks to see if pooled page has returned (s)
POOL_PAGE_CHECK_DELAY = 0.2
#time delay between thread checks to see if user action has returned a response (s)
QUEUE_CHECK_DELAY = 1
#keepalive tick on dormant listener threads (s)
THREAD_KEEPALIVE = 60
#when backfilling pages guess start point to find last page in change feed (s)
LAST_PAGE_GUESS = 10
#initial page number indicating page search is required
NULL_PAGE_VALUE = 0
#automatically inset warnings into resolution feed features. very slow, enable only if RF is small
ENABLE_ENTITY_EVALUATION = True
#zero southwest coordinate used for instantiation and to prevent unnecessary feature fetching
SWZERO = (0.0, 0.0)
#zero northeast coordinate used for instantiation and to prevent unnecessary feature fetching
NEZERO = (0.0, 0.0)
#enable null value removal in json requests
SKIP_NULL = True
#address attribute to dict separator character
DEF_SEP = '_'
#path to resources directory
RES_PATH = 'resources'
#filename for persisted feed data
LOCAL_ADL = 'aimsdata'
r
#merge response objects back into their request objects
MERGE_RESPONSE = True
#comma separated list of response attributes to exclude from merge
MERGE_EXCLUDE = 'workflow_sourceReason'
#string to prepend to hacked supplemental requests (can be anything)
HACK_SUP_IND = 'supplemental'
#string to prepend to ciphered passwords (can be anything)
CT_IND = '###'