-
Notifications
You must be signed in to change notification settings - Fork 2
/
mergear_na_direcao.py
269 lines (251 loc) · 11 KB
/
mergear_na_direcao.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
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
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
"""
/***************************************************************************
LEOXINGU
-------------------
begin : 2017-03-31
copyright : (C) 2017 by Leandro Franca - Cartographic Engineer
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. *
* *
***************************************************************************/
"""
# Mesclar linhas na direcao
##1. Mesclar na Direcao=name
##arquivo=vector
##tolerancia=number 10
##atributos=selection Mesclar com mesmos atributos;Manter atributos da maior feicao
##saida=output vector
##LF04) Vetor=group
# inputs
filename = arquivo
output_name = saida
tol = tolerancia
from math import atan2, degrees, fabs
from PyQt4.QtCore import *
from qgis.gui import QgsMessageBar
from qgis.utils import iface
from qgis.core import *
import time
import processing
# Abrir layer de linhas
linhas = processing.getObject(filename)
# Funcao que pega ponto incial e final e os seus angulos
def pontos_ang(feature):
att = feature.attributes()
geom = feature.geometry()
coord = geom.asPolyline()
if coord != []:
# Tangente entre o primeiro e segundo ponto
Xa = coord[0].x()
Xb = coord[1].x()
Ya = coord[0].y()
Yb = coord[1].y()
ang_ini = degrees(atan2(Yb-Ya,Xb-Xa))
Xa = coord[-2].x()
Xb = coord[-1].x()
Ya = coord[-2].y()
Yb = coord[-1].y()
ang_fim = degrees(atan2(Yb-Ya,Xb-Xa))
return [[coord, coord[0], coord[-1], ang_ini, ang_fim, att]]
elif geom.asMultiPolyline():
coord = geom.asMultiPolyline()
itens = []
for item in coord:
Xa = item[0].x()
Xb = item[1].x()
Ya = item[0].y()
Yb = item[1].y()
ang_ini = degrees(atan2(Yb-Ya,Xb-Xa))
Xa = item[-2].x()
Xb = item[-1].x()
Ya = item[-2].y()
Yb = item[-1].y()
ang_fim = degrees(atan2(Yb-Ya,Xb-Xa))
itens += [[item, item[0], item[-1], ang_ini, ang_fim, att]]
return itens
# Funcao para dar a direcao oposta
def contraAz(x):
if x<=0:
return x+180
else:
return x-180
# Validacao dos dados de entrada
validacao = True
if tol >90 or tol <0:
validacao = False
progress.setInfo('<b>O valor da tolerancia deve estar entre 0 e 90 graus!</b><br/>')
if linhas.geometryType() != QGis.Line:
validacao = False
progress.setInfo('<b>A camada de entrada deve ser do tipo "Linha"!</b><br/>')
if not validacao:
time.sleep(6)
iface.messageBar().pushMessage(u'Situacao', "Problema nos parametros de entrada!", level=QgsMessageBar.WARNING, duration=5)
if validacao:
progress.setInfo('<b>Iniciando processamento...</b><br/>')
# Criar lista com informacoes das feicoes
lista = []
for feature in linhas.getFeatures():
lista += pontos_ang(feature)
# Criar uma nova lista com as feicoes finais mescladas
nova_lista = []
# Remover os aneis lineares da lista e acrescentar na nova lista
ind = 0
while ind < len(lista)-1:
P_ini = lista[ind][1]
P_fim = lista[ind][2]
if P_ini==P_fim:
nova_lista+= [lista[ind][0]]
del lista[ind]
else:
ind +=1
# Mesclar linhas que se tocam e tem a mesma direcao (com mesmo atributo)
if atributos == 0:
while len(lista)>1:
tam = len(lista)
for i in range(0,tam-1):
mergeou = False
# Ponto inicial e final da feicao A
coord_A = lista[i][0]
P_ini_A = lista[i][1]
P_fim_A = lista[i][2]
ang_ini_A = lista[i][3]
ang_fim_A = lista[i][4]
att_A = lista[i][5]
for j in range(i+1,tam):
# Ponto inicial e final da feicao B
coord_B = lista[j][0]
P_ini_B = lista[j][1]
P_fim_B = lista[j][2]
ang_ini_B = lista[j][3]
ang_fim_B = lista[j][4]
att_B = lista[j][5]
if att_A == att_B:
# 4 possibilidades
# 1 - Ponto final de A igual ao ponto inicial de B
if (P_fim_A == P_ini_B) and (fabs(ang_fim_A-ang_ini_B)<tol or fabs(360-fabs(ang_fim_A-ang_ini_B))<tol):
mergeou = True
break
# 2 - Ponto inicial de A igual ao ponto final de B
elif (P_ini_A == P_fim_B) and (fabs(ang_ini_A-ang_fim_B)<tol or fabs(360-fabs(ang_ini_A-ang_fim_B))<tol):
mergeou = True
break
# 3 - Ponto incial de A igual ao ponto inicial de B
elif (P_ini_A == P_ini_B) and (fabs(ang_ini_A-contraAz(ang_ini_B))<tol or fabs(360-fabs(ang_ini_A-contraAz(ang_ini_B)))<tol):
mergeou = True
break
# 4 - Ponto final de A igual ao ponto final de B
elif (P_fim_A == P_fim_B) and (fabs(ang_fim_A-contraAz(ang_fim_B))<tol or fabs(360-fabs(ang_fim_A-contraAz(ang_fim_B)))<tol):
mergeou = True
break
if mergeou:
geom_A = QgsGeometry.fromPolyline(coord_A)
geom_B = QgsGeometry.fromPolyline(coord_B)
new_geom = geom_A.combine(geom_B)
new_feat = QgsFeature()
new_feat.setAttributes(att_A)
new_feat.setGeometry(new_geom)
if new_geom.isMultipart():
nova_lista += [[coord_A, att_A], [coord_B, att_B]]
del lista[i], lista[j-1]
break
else:
del lista[i], lista[j-1]
lista = pontos_ang(new_feat)+lista
break
if not(mergeou):
# Tirar a geometria que nao se conecta com nada da lista
nova_lista += [[coord_A, att_A]]
del lista[i]
break
if len(lista)==1:
nova_lista += [[lista[0][0], lista[0][5]]]
# Mesclar os que se tocam e tem mesma direcao (preservar atributos da linha maior)
if atributos == 1:
while len(lista)>1:
tam = len(lista)
for i in range(0,tam-1):
mergeou = False
# Ponto inicial e final da feicao A
coord_A = lista[i][0]
P_ini_A = lista[i][1]
P_fim_A = lista[i][2]
ang_ini_A = lista[i][3]
ang_fim_A = lista[i][4]
att_A = lista[i][5]
for j in range(i+1,tam):
# Ponto inicial e final da feicao B
coord_B = lista[j][0]
P_ini_B = lista[j][1]
P_fim_B = lista[j][2]
ang_ini_B = lista[j][3]
ang_fim_B = lista[j][4]
att_B = lista[j][5]
# 4 possibilidades
# 1 - Ponto final de A igual ao ponto inicial de B
if (P_fim_A == P_ini_B) and (fabs(ang_fim_A-ang_ini_B)<tol or fabs(360-fabs(ang_fim_A-ang_ini_B))<tol):
mergeou = True
break
# 2 - Ponto inicial de A igual ao ponto final de B
elif (P_ini_A == P_fim_B) and (fabs(ang_ini_A-ang_fim_B)<tol or fabs(360-fabs(ang_ini_A-ang_fim_B))<tol):
mergeou = True
break
# 3 - Ponto incial de A igual ao ponto inicial de B
elif (P_ini_A == P_ini_B) and (fabs(ang_ini_A-contraAz(ang_ini_B))<tol or fabs(360-fabs(ang_ini_A-contraAz(ang_ini_B)))<tol):
mergeou = True
break
# 4 - Ponto final de A igual ao ponto final de B
elif (P_fim_A == P_fim_B) and (fabs(ang_fim_A-contraAz(ang_fim_B))<tol or fabs(360-fabs(ang_fim_A-contraAz(ang_fim_B)))<tol):
mergeou = True
break
if mergeou:
geom_A = QgsGeometry.fromPolyline(coord_A)
geom_B = QgsGeometry.fromPolyline(coord_B)
new_geom = geom_A.combine(geom_B)
length_A = geom_A.length()
length_B = geom_B.length()
if length_A > length_B:
att = att_A
else:
att = att_B
new_feat = QgsFeature()
new_feat.setAttributes(att)
new_feat.setGeometry(new_geom)
if new_geom.isMultipart():
nova_lista += [[coord_A, att_A], [coord_B, att_B]]
del lista[i], lista[j-1]
break
else:
del lista[i], lista[j-1]
lista = pontos_ang(new_feat)+lista
break
if not(mergeou):
# Tirar a geometria que nao se conecta com nada da lista
nova_lista += [[coord_A, att_A]]
del lista[i]
break
if len(lista)==1:
nova_lista += [[lista[0][0], lista[0][5]]]
# Criando o shapefile de saida
progress.setInfo('<b>Criando shapefile de saida...</b><br/>')
path_name = output_name
encoding = 'utf-8'
formato = 'ESRI Shapefile'
crs = linhas.crs()
# Criar campos
fields = linhas.pendingFields()
writer = QgsVectorFileWriter(path_name, encoding, fields, QGis.WKBLineString, crs, formato)
for item in nova_lista:
feature = QgsFeature()
feature.setGeometry(QgsGeometry.fromPolyline(item[0]))
feature.setAttributes(item[1])
writer.addFeature(feature)
del writer
progress.setInfo('<b>Operacao concluida!</b><br/><br/>')
progress.setInfo('<b>Leandro França - Eng Cart</b><br/>')
time.sleep(3)
iface.messageBar().pushMessage(u'Situacao', "Operacao Concluida com Sucesso!", level=QgsMessageBar.INFO, duration=5)