File tree Expand file tree Collapse file tree 6 files changed +172
-1
lines changed
python/plugins/processing Expand file tree Collapse file tree 6 files changed +172
-1
lines changed Original file line number Diff line number Diff line change
1
+ # -*- coding: utf-8 -*-
2
+
3
+ """
4
+ ***************************************************************************
5
+ GdalAlgorithmDialog.py
6
+ ---------------------
7
+ Date : May 2015
8
+ Copyright : (C) 2015 by Victor Olaya
9
+ Email : volayaf at gmail dot com
10
+ ***************************************************************************
11
+ * *
12
+ * This program is free software; you can redistribute it and/or modify *
13
+ * it under the terms of the GNU General Public License as published by *
14
+ * the Free Software Foundation; either version 2 of the License, or *
15
+ * (at your option) any later version. *
16
+ * *
17
+ ***************************************************************************
18
+ """
19
+
20
+ __author__ = 'Victor Olaya'
21
+ __date__ = 'May 2015'
22
+ __copyright__ = '(C) 2015, Victor Olaya'
23
+
24
+ # This will get replaced with a git SHA1 when you do a git archive
25
+
26
+ __revision__ = '$Format:%H$'
27
+
28
+
1
29
from PyQt4 .QtGui import *
2
30
from processing .gui .AlgorithmDialog import AlgorithmDialog
3
31
from processing .gui .AlgorithmDialogBase import AlgorithmDialogBase
Original file line number Diff line number Diff line change
1
+ # -*- coding: utf-8 -*-
2
+
3
+ """
4
+ ***************************************************************************
5
+ versioncheck.py
6
+ ---------------------
7
+ Date : December 2014
8
+ Copyright : (C) 2014 by Victor Olaya
9
+ Email : volayaf at gmail dot com
10
+ ***************************************************************************
11
+ * *
12
+ * This program is free software; you can redistribute it and/or modify *
13
+ * it under the terms of the GNU General Public License as published by *
14
+ * the Free Software Foundation; either version 2 of the License, or *
15
+ * (at your option) any later version. *
16
+ * *
17
+ ***************************************************************************
18
+ """
19
+
20
+ __author__ = 'Victor Olaya'
21
+ __date__ = 'December 2014'
22
+ __copyright__ = '(C) 2014, Victor Olaya'
23
+
24
+ # This will get replaced with a git SHA1 when you do a git archive
25
+
26
+ __revision__ = '$Format:%H$'
27
+
28
+
1
29
import os
2
30
import subprocess
3
31
Original file line number Diff line number Diff line change
1
+ # -*- coding: utf-8 -*-
2
+
3
+ """
4
+ ***************************************************************************
5
+ PostgisTableSelector.py
6
+ ---------------------
7
+ Date : November 2015
8
+ Copyright : (C) 2015 by Victor Olaya
9
+ Email : volayaf at gmail dot com
10
+ ***************************************************************************
11
+ * *
12
+ * This program is free software; you can redistribute it and/or modify *
13
+ * it under the terms of the GNU General Public License as published by *
14
+ * the Free Software Foundation; either version 2 of the License, or *
15
+ * (at your option) any later version. *
16
+ * *
17
+ ***************************************************************************
18
+ """
19
+
20
+ __author__ = 'Victor Olaya'
21
+ __date__ = 'November 2015'
22
+ __copyright__ = '(C) 2015, Victor Olaya'
23
+
24
+ # This will get replaced with a git SHA1 when you do a git archive
25
+
26
+ __revision__ = '$Format:%H$'
27
+
28
+
1
29
import os
2
30
from PyQt4 import uic , QtCore , QtGui
3
31
from processing .algs .qgis .postgis_utils import GeoDB
Original file line number Diff line number Diff line change
1
+ # -*- coding: utf-8 -*-
2
+
3
+ """
4
+ ***************************************************************************
5
+ utils.py
6
+ ---------------------
7
+ Date : September 2015
8
+ Copyright : (C) 2015 by Victor Olaya
9
+ Email : volayaf at gmail dot com
10
+ ***************************************************************************
11
+ * *
12
+ * This program is free software; you can redistribute it and/or modify *
13
+ * it under the terms of the GNU General Public License as published by *
14
+ * the Free Software Foundation; either version 2 of the License, or *
15
+ * (at your option) any later version. *
16
+ * *
17
+ ***************************************************************************
18
+ """
19
+
20
+ __author__ = 'Victor Olaya'
21
+ __date__ = 'September 2015'
22
+ __copyright__ = '(C) 2015, Victor Olaya'
23
+
24
+ # This will get replaced with a git SHA1 when you do a git archive
25
+
26
+ __revision__ = '$Format:%H$'
27
+
28
+
1
29
from qgis .utils import iface
2
30
from PyQt4 import QtGui
3
31
from processing .core .Processing import Processing
Original file line number Diff line number Diff line change
1
+ # -*- coding: utf-8 -*-
2
+
3
+ """
4
+ ***************************************************************************
5
+ PackagingTests.py
6
+ ---------------------
7
+ Date : May 2015
8
+ Copyright : (C) 2015 by Victor Olaya
9
+ Email : volayaf at gmail dot com
10
+ ***************************************************************************
11
+ * *
12
+ * This program is free software; you can redistribute it and/or modify *
13
+ * it under the terms of the GNU General Public License as published by *
14
+ * the Free Software Foundation; either version 2 of the License, or *
15
+ * (at your option) any later version. *
16
+ * *
17
+ ***************************************************************************
18
+ """
19
+
20
+ __author__ = 'Victor Olaya'
21
+ __date__ = 'May 2015'
22
+ __copyright__ = '(C) 2015, Victor Olaya'
23
+
24
+ # This will get replaced with a git SHA1 when you do a git archive
25
+
26
+ __revision__ = '$Format:%H$'
27
+
28
+
1
29
'''
2
30
Tests to ensure that a QGIS installation contains Processing dependencies
3
31
and they are correctly configured by default
Original file line number Diff line number Diff line change
1
+ # -*- coding: utf-8 -*-
2
+
3
+ """
4
+ ***************************************************************************
5
+ _vector.py
6
+ ---------------------
7
+ Date : May 2015
8
+ Copyright : (C) 2015 by Victor Olaya
9
+ Email : volayaf at gmail dot com
10
+ ***************************************************************************
11
+ * *
12
+ * This program is free software; you can redistribute it and/or modify *
13
+ * it under the terms of the GNU General Public License as published by *
14
+ * the Free Software Foundation; either version 2 of the License, or *
15
+ * (at your option) any later version. *
16
+ * *
17
+ ***************************************************************************
18
+ """
19
+
20
+ __author__ = 'Victor Olaya'
21
+ __date__ = 'May 2015'
22
+ __copyright__ = '(C) 2015, Victor Olaya'
23
+
24
+ # This will get replaced with a git SHA1 when you do a git archive
25
+
26
+ __revision__ = '$Format:%H$'
27
+
28
+
1
29
import os
30
+ from collections import Iterator
31
+
2
32
from PyQt4 .QtCore import *
33
+
3
34
from qgis .core import *
4
- from collections import Iterator
35
+
5
36
6
37
TYPE_MAP = {
7
38
str : QVariant .String ,
You can’t perform that action at this time.
0 commit comments