-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGeosismaOffline.py
90 lines (73 loc) · 3.12 KB
/
GeosismaOffline.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
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
'''
# -*- coding: utf-8 -*-
# Copyright (C) 2013 Luigi Pirelli ([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 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
Created on Oct 4, 2013
@author: Luigi Pirelli ([email protected])
'''
import os, sys, inspect, traceback
# realpath() with make your script run, even if you symlink it :)
cmd_folder = os.path.realpath(os.path.abspath(os.path.split(inspect.getfile( inspect.currentframe() ))[0]))
if cmd_folder not in sys.path:
sys.path.insert(0, cmd_folder)
# use this if you want to include modules from a subforder
cmd_subfolder = os.path.realpath(os.path.abspath(os.path.join(os.path.split(inspect.getfile( inspect.currentframe() ))[0],"libraries")))
if cmd_subfolder not in sys.path:
sys.path.insert(0, cmd_subfolder)
from qgis.core import *
from qgis.utils import *
from PyQt4.QtCore import *
from PyQt4.QtGui import *
import json, csv
from GeosismaWindow import GeosismaWindow
class GeosismaOffline:
instance = None
def __init__(self, iface):
self.iface = iface
self.canvas = iface.mapCanvas()
self.dlg = None
GeosismaOffline.instance = self
def initGui(self):
#self.action = QAction(QIcon(":/plugins/geosismaoffline/icon.png"), "&RT Geosisma Offline", self.iface.mainWindow())
self.action = QAction(QIcon(":/icons/icon.png"), "&RT Geosisma Offline", self.iface.mainWindow())
QObject.connect(self.action, SIGNAL("activated()"), self.run)
self.iface.addPluginToMenu("RT Geosisma Offline", self.action)
self.iface.addToolBarIcon(self.action)
def unload(self):
self.iface.removePluginMenu("RT Geosisma Offline",self.action)
self.iface.removeToolBarIcon(self.action)
def run(self):
# check precondition
try:
import pyspatialite
except ImportError:
try:
traceback.print_exc()
except:
pass
QMessageBox.information(self.iface.mainWindow(), "Attenzione", u"Modulo 'pyspatialite' non trovato. Senza di esso non e' possibile eseguire RT Geosisma Offline.".encode() )
return
# load gui
if self.dlg == None:
self.dlg = GeosismaWindow.instance(self.iface.mainWindow(), self.iface)
QObject.connect(self.dlg, SIGNAL("destroyed()"), self.onDlgClosed) # sembra non funzionare!!!
self.dlg.exec_()
def onDlgClosed(self):
try:
if self.dlg:
self.dlg.deleteLater()
except:
pass
self.dlg = None
if __name__ == "__main__":
pass