forked from minorua/Qgis2threejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.py
57 lines (43 loc) · 1.67 KB
/
conf.py
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
# -*- coding: utf-8 -*-
"""
/***************************************************************************
DefaultSettings
-------------------
begin : 2015-03-02
copyright : (C) 2015 Minoru Akagi
email : [email protected]
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""
# general
PLUGIN_VERSION = "2.5"
# DEBUG_MODE
# 0. no debug info
# 1. JS console, qDebug
# 2. JS console, qDebug, log file, "debug" element
DEBUG_MODE = 1
# multi-threading
RUN_CNTLR_IN_BKGND = True # If True, controller runs in a worker thread
# vector layer
FEATURES_PER_BLOCK = 50 # max number of features in a data block
# default export settings
class DEF_SETS:
TEMPLATE = "3DViewer.html"
# world
BASE_SIZE = 100
Z_EXAGGERATION = 1.0
Z_SHIFT = 0
AUTO_Z_SHIFT = False
CONTROLS = "OrbitControls.js" # last selected one has priority
# dem
SIDE_COLOR = "0xccbbaa"
FRAME_COLOR = "0x000000"
# processing export
P_OPEN_DIRECTORY = True