-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindicatorCalculation.py
142 lines (114 loc) · 5.08 KB
/
indicatorCalculation.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
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
# -*- coding: utf-8 -*-
"""
/***************************************************************************
NeatMAp
A QGIS plugin
A simple QGIS python plugin for building neat maps.
-------------------
begin : 2016-11-30
git sha : $Format:%H$
copyright : (C) 2016 - 2018 by IGN
email : [email protected]; [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. *
* *
***************************************************************************/
"""
import os
from qgis.core import *
from PyQt5.QtCore import QVariant
from .morpho import *
import sys
#Calculate a new layer (layerName) from a layer with polygonal features (layerPolygon) with id (idLayerPolygon) and indicates if attribute from initial layer are copied
#Indicator are stored in morpho.py
def calculate(layerName, layerPolygon, idLayerPolygon, copyAttribute):
# A new layer is created
vl = QgsVectorLayer("Polygon", layerName, "memory")
pr = vl.dataProvider()
vl.startEditing()
fields = [ QgsField(idLayerPolygon, QVariant.String),
QgsField("area", QVariant.Double, "Real", 10, 3),
QgsField("SMBR_area", QVariant.Double, "Real",10, 3),
QgsField("SMBR_angle", QVariant.Double, "Real",10, 3),
QgsField("SMBR_w.", QVariant.Double, "Real",10, 3),
QgsField("SMBR_h.", QVariant.Double, "Real",10, 3),
QgsField("convexity1", QVariant.Double, "Real",10, 3),
QgsField("convexity2", QVariant.Double, "Real",10, 3),
QgsField("elongation", QVariant.Double, "Real",10, 3),
QgsField("compact.", QVariant.Double, "Real",10, 3),
QgsField("area/perim", QVariant.Double, "Real",10, 3),
QgsField("complexity", QVariant.Double, "Real",10, 3)]
# print("fields :" + str(len(fields)))
#We copy the intial fields except the fid
fieldsTemp = []
if copyAttribute :
fieldsTemp = layerPolygon.fields()
for f in fieldsTemp :
if f.name() != idLayerPolygon:
fields.append(f)
#print(f.name())
# print("fields :" + str(len(fields)))
# (const QString &name=QString(), QVariant::Type type=QVariant::Invalid, const QString &typeName=QString(), int len=0, int prec=0, const QString &comment=QString(), QVariant::Type subType=QVariant::Invalid)
pr.addAttributes( fields )
vl.updateFields()
featureList = []
for f in layerPolygon.getFeatures():
geom = f.geometry()
if geom is None:
continue
area = geom.area()
perimeter = geom.length()
ident = f.attribute(idLayerPolygon)
SMBR_geom, SMBR_area, SMBR_angle, SMBR_width, SMBR_height = geom.orientedMinimumBoundingBox()
convexity1 = compute_convexity1(geom, area)
convexity2 = compute_convexity2(area, SMBR_area)
elongation = compute_elongation(SMBR_height, SMBR_width)
compactness = compute_compactness(area, perimeter)
complexity = compute_complexity(geom)
feat = QgsFeature()
feat.setGeometry( geom )
feat.initAttributes(len(fields))
count = 0;
feat.setAttribute( count, ident)
count += 1
feat.setAttribute( count, area )
count += 1
feat.setAttribute( count, SMBR_area )
count += 1
feat.setAttribute( count, SMBR_angle )
count += 1
feat.setAttribute( count, SMBR_width )
count += 1
feat.setAttribute( count, SMBR_height )
count += 1
feat.setAttribute( count, convexity1 )
count += 1
feat.setAttribute( count, convexity2 )
count += 1
feat.setAttribute( count, elongation)
count += 1
feat.setAttribute( count, compactness )
count += 1
feat.setAttribute( count, area/perimeter)
count += 1
feat.setAttribute( count, complexity)
count += 1
##If needed copying extra attributes
if copyAttribute :
countTemp = 0;
for field in fieldsTemp :
if field.name() != idLayerPolygon:
feat.setAttribute( count, f.attribute(countTemp))
count+=1
countTemp += 1
featureList.append(feat)
pr.addFeatures(featureList)
vl.commitChanges()
vl.updateFields()
vl.endEditCommand()
return vl