Newer
Older
import os, sys, re, uuid, importlib
import numpy as np
from qgis.gui import *
from qgis.core import *

Benjamin Jakimow
committed
from qgis.PyQt.QtWidgets import *
from qgis.PyQt.QtGui import *
from qgis.PyQt.QtCore import *
import qgis.testing
SHOW_GUI = True
def initQgisApplication(*args, qgisResourceDir:str=None, **kwds)->QgsApplication:
"""
Initializes a QGIS Environment
:return: QgsApplication instance of local QGIS installation
"""
if isinstance(QgsApplication.instance(), QgsApplication):
return QgsApplication.instance()
else:
if not 'QGIS_PREFIX_PATH' in os.environ.keys():
raise Exception('env variable QGIS_PREFIX_PATH not set')
if sys.platform == 'darwin':

Benjamin Jakimow
committed
# add location of Qt Libraries
assert '.app' in qgis.__file__, 'Can not locate path of QGIS.app'

Benjamin Jakimow
committed
PATH_QGIS_APP = re.search(r'.*\.app', qgis.__file__).group()
QApplication.addLibraryPath(os.path.join(PATH_QGIS_APP, *['Contents', 'PlugIns']))
QApplication.addLibraryPath(os.path.join(PATH_QGIS_APP, *['Contents', 'PlugIns', 'qgis']))
qgsApp = qgis.testing.start_app()
if not isinstance(qgisResourceDir, str):
parentDir = os.path.dirname(os.path.dirname(__file__))
resourceDir = os.path.join(parentDir, 'qgisresources')
if os.path.exists(resourceDir):
qgisResourceDir = resourceDir
if isinstance(qgisResourceDir, str) and os.path.isdir(qgisResourceDir):
modules = [m for m in os.listdir(qgisResourceDir) if re.search(r'[^_].*\.py', m)]
modules = [m[0:-3] for m in modules]
for m in modules:
mod = importlib.import_module('qgisresources.{}'.format(m))
if "qInitResources" in dir(mod):
mod.qInitResources()
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
#initiate a PythonRunner instance if None exists
if not QgsPythonRunner.isValid():
r = PythonRunnerImpl()
QgsPythonRunner.setInstance(r)
return qgsApp
class QgisMockup(QgisInterface):
"""
A "fake" QGIS Desktop instance that should provide all the inferfaces a plugin developer might need (and nothing more)
"""
def pluginManagerInterface(self)->QgsPluginManagerInterface:
return self.mPluginManager
@staticmethod
def create()->QgisInterface:
"""
Create the QgisMockup and sets the global variables
:return: QgisInterface
"""
iface = QgisMockup()
import qgis.utils
# import processing
# p = processing.classFactory(iface)
if not isinstance(qgis.utils.iface, QgisInterface):
import processing
qgis.utils.iface = iface
processing.Processing.initialize()
import pkgutil
prefix = str(processing.__name__ + '.')
for importer, modname, ispkg in pkgutil.walk_packages(processing.__path__, prefix=prefix):
try:
module = __import__(modname, fromlist="dummy")
if hasattr(module, 'iface'):
print(modname)
module.iface = iface
except:
pass
#set 'home_plugin_path', which is required from the QGIS Plugin manager
assert qgis.utils.iface == iface
qgis.utils.home_plugin_path = os.path.join(QgsApplication.instance().qgisSettingsDirPath(), *['python', 'plugins'])
return iface
def __init__(self, *args):
# QgisInterface.__init__(self)
super(QgisMockup, self).__init__()
self.mCanvas = QgsMapCanvas()
self.mCanvas.blockSignals(False)
self.mCanvas.setCanvasColor(Qt.black)
self.mCanvas.extentsChanged.connect(self.testSlot)
self.mLayerTreeView = QgsLayerTreeView()
self.mRootNode = QgsLayerTree()
self.mLayerTreeModel = QgsLayerTreeModel(self.mRootNode)
self.mLayerTreeView.setModel(self.mLayerTreeModel)
self.mLayerTreeMapCanvasBridge = QgsLayerTreeMapCanvasBridge(self.mRootNode, self.mCanvas)
self.mLayerTreeMapCanvasBridge.setAutoSetupOnFirstLayer(True)
import pyplugin_installer.installer
PI = pyplugin_installer.instance()
self.mPluginManager = QgsPluginManagerMockup()
self.ui = QMainWindow()
self.mMessageBar = QgsMessageBar()
mainFrame = QFrame()
self.ui.setCentralWidget(mainFrame)
self.ui.setWindowTitle('QGIS Mockup')
l = QHBoxLayout()
l.addWidget(self.mLayerTreeView)
l.addWidget(self.mCanvas)
v = QVBoxLayout()
v.addWidget(self.mMessageBar)
v.addLayout(l)
mainFrame.setLayout(v)
self.ui.setCentralWidget(mainFrame)
self.lyrs = []
self.createActions()
def iconSize(self, dockedToolbar=False):
return QSize(30,30)
def testSlot(self, *args):
# print('--canvas changes--')
s = ""
def mainWindow(self):
return self.ui
def addToolBarIcon(self, action):
assert isinstance(action, QAction)
def removeToolBarIcon(self, action):
assert isinstance(action, QAction)
def addVectorLayer(self, path, basename=None, providerkey=None):
if basename is None:
basename = os.path.basename(path)
if providerkey is None:
bn, ext = os.path.splitext(basename)
providerkey = 'ogr'
l = QgsVectorLayer(path, basename, providerkey)
assert l.isValid()
QgsProject.instance().addMapLayer(l, True)
self.mRootNode.addLayer(l)
self.mLayerTreeMapCanvasBridge.setCanvasLayers()
s = ""
def legendInterface(self):
return None
def addRasterLayer(self, path, baseName=''):
l = QgsRasterLayer(path, os.path.basename(path))
self.lyrs.append(l)
QgsProject.instance().addMapLayer(l, True)
self.mRootNode.addLayer(l)
self.mLayerTreeMapCanvasBridge.setCanvasLayers()
return
cnt = len(self.canvas.layers())
self.canvas.setLayerSet([QgsMapCanvasLayer(l)])
l.dataProvider()
if cnt == 0:
self.canvas.mapSettings().setDestinationCrs(l.crs())
self.canvas.setExtent(l.extent())
spatialExtent = SpatialExtent.fromMapLayer(l)
# self.canvas.blockSignals(True)
self.canvas.setDestinationCrs(spatialExtent.crs())
self.canvas.setExtent(spatialExtent)
# self.blockSignals(False)
self.canvas.refresh()
self.canvas.refresh()
def createActions(self):
m = self.ui.menuBar().addAction('Add Vector')
m = self.ui.menuBar().addAction('Add Raster')
def mapCanvas(self):
return self.mCanvas
def mapNavToolToolBar(self):
super().mapNavToolToolBar()
def messageBar(self, *args, **kwargs):
return self.mMessageBar
def rasterMenu(self):
super().rasterMenu()
def vectorMenu(self):
super().vectorMenu()
def viewMenu(self):
super().viewMenu()
def windowMenu(self):
super().windowMenu()
def zoomFull(self, *args, **kwargs):
super().zoomFull(*args, **kwargs)
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
class TestObjects():
"""
Class with static routines to create test objects
"""
@staticmethod
def inMemoryImage(nl=10, ns=20, nb=1, crs='EPSG:32632', eType=gdal.GDT_Byte, nc:int=0, path:str=None):
from timeseriesviewer.classification.classificationscheme import ClassificationScheme
scheme = None
if nc is None:
nc = 0
if nc > 0:
eType = gdal.GDT_Byte if nc < 256 else gdal.GDT_Int16
scheme = ClassificationScheme()
scheme.createClasses(nc)
drv = gdal.GetDriverByName('GTiff')
assert isinstance(drv, gdal.Driver)
if not isinstance(path, str):
if nc > 0:
path = '/vsimem/testClassification.{}.tif'.format(str(uuid.uuid4()))
else:
path = '/vsimem/testImage.{}.tif'.format(str(uuid.uuid4()))
ds = drv.Create(path, ns, nl, bands=nb, eType=eType)
assert isinstance(ds, gdal.Dataset)
if isinstance(crs, str):
c = QgsCoordinateReferenceSystem(crs)
ds.SetProjection(c.toWkt())
ds.SetGeoTransform([0,1.0,0, \
0,0,-1.0])
assert isinstance(ds, gdal.Dataset)
for b in range(1, nb + 1):
band = ds.GetRasterBand(b)
if isinstance(scheme, ClassificationScheme) and b == 1:
array = np.zeros((nl, ns), dtype=np.uint8) - 1
y0 = 0
step = int(np.ceil(float(nl) / len(scheme)))
for i, c in enumerate(scheme):
y1 = min(y0 + step, nl - 1)
array[y0:y1, :] = c.label()
y0 += y1 + 1
band.SetCategoryNames(scheme.classNames())
band.SetColorTable(scheme.gdalColorTable())
else:
#create random data
array = np.random.random((nl, ns))
if eType == gdal.GDT_Byte:
array = array *256
array = array.astype(np.byte)
elif eType == gdal.GDT_Int16:
array = array * 2**16
array = array.astype(np.int16)
elif eType == gdal.GDT_Int32:
array = array * 2 ** 32
array = array.astype(np.int32)
band.WriteArray(array)
ds.FlushCache()
return ds
@staticmethod
def createDropEvent(mimeData:QMimeData):
"""Creates a QDropEvent conaining the provided QMimeData"""
return QDropEvent(QPointF(0, 0), Qt.CopyAction, mimeData, Qt.LeftButton, Qt.NoModifier)
@staticmethod
def processingAlgorithm():
from qgis.core import QgsProcessingAlgorithm
class TestProcessingAlgorithm(QgsProcessingAlgorithm):
def __init__(self):
super(TestProcessingAlgorithm, self).__init__()
s = ""
def createInstance(self):
return TestProcessingAlgorithm()
def name(self):
return 'exmaplealg'
def displayName(self):
return 'Example Algorithm'
def groupId(self):
return 'exampleapp'
def group(self):
return 'TEST APPS'
def initAlgorithm(self, configuration=None):
self.addParameter(QgsProcessingParameterRasterLayer('pathInput', 'The Input Dataset'))
self.addParameter(
QgsProcessingParameterNumber('value', 'The value', QgsProcessingParameterNumber.Double, 1, False,
0.00, 999999.99))
self.addParameter(QgsProcessingParameterRasterDestination('pathOutput', 'The Output Dataset'))
def processAlgorithm(self, parameters, context, feedback):
assert isinstance(parameters, dict)
assert isinstance(context, QgsProcessingContext)
assert isinstance(feedback, QgsProcessingFeedback)
outputs = {}
return outputs
return TestProcessingAlgorithm()
class QgsPluginManagerMockup(QgsPluginManagerInterface):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
def addPluginMetadata(self, *args, **kwargs):
super().addPluginMetadata(*args, **kwargs)
def addToRepositoryList(self, *args, **kwargs):
super().addToRepositoryList(*args, **kwargs)
def childEvent(self, *args, **kwargs):
super().childEvent(*args, **kwargs)
def clearPythonPluginMetadata(self, *args, **kwargs):
#super().clearPythonPluginMetadata(*args, **kwargs)
pass
def clearRepositoryList(self, *args, **kwargs):
super().clearRepositoryList(*args, **kwargs)
def connectNotify(self, *args, **kwargs):
super().connectNotify(*args, **kwargs)
def customEvent(self, *args, **kwargs):
super().customEvent(*args, **kwargs)
def disconnectNotify(self, *args, **kwargs):
super().disconnectNotify(*args, **kwargs)
def isSignalConnected(self, *args, **kwargs):
return super().isSignalConnected(*args, **kwargs)
def pluginMetadata(self, *args, **kwargs):
super().pluginMetadata(*args, **kwargs)
def pushMessage(self, *args, **kwargs):
super().pushMessage(*args, **kwargs)
def receivers(self, *args, **kwargs):
return super().receivers(*args, **kwargs)
def reloadModel(self, *args, **kwargs):
super().reloadModel(*args, **kwargs)
def sender(self, *args, **kwargs):
return super().sender(*args, **kwargs)
def senderSignalIndex(self, *args, **kwargs):
return super().senderSignalIndex(*args, **kwargs)
def showPluginManager(self, *args, **kwargs):
super().showPluginManager(*args, **kwargs)
def timerEvent(self, *args, **kwargs):
super().timerEvent(*args, **kwargs)
class PythonRunnerImpl(QgsPythonRunner):
"""
A Qgs PythonRunner implementation
"""
def __init__(self):
super(PythonRunnerImpl, self).__init__()
def evalCommand(self, cmd:str, result:str):
try:
o = compile(cmd)
except Exception as ex:
result = str(ex)
return False
return True
def runCommand(self, command, messageOnError=''):
try:
o = compile(command, 'fakemodule', 'exec')
exec(o)
except Exception as ex:
messageOnError = str(ex)
command = ['{}:{}'.format(i+1, l) for i,l in enumerate(command.splitlines())]
print('\n'.join(command), file=sys.stderr)
raise ex
return False
return True