verifiedSolutionMapper.py
4.14 KB
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
import csv, re, sqlite3
fy= open("Maps/MapInputFile.txt", "w+")
con = sqlite3.connect("database_modfire.db")
cur = con.cursor()
Filemame = "VerifiedSolution.csv"
f=open(Filemame,"r")
lines=f.readlines()
result=[]
#0-Year,1-Spec,2-Thin,3-Harv
for line in lines:
MU = line.split(',')[0]
Pr = line.split(',')[1]
cur.execute("SELECT Year, Species, V_thin, V_harv FROM action_external where Id = "+str(MU)+" and Presc = "+str(Pr)+" and (V_thin or V_harv) > 0.0")
result = cur.fetchall()
for i in range(0, len(result)):
year = result[i][0]
act = ''
if(int(result[i][2]) > 0):
act = 't'
else:
act = 'h'
toWrite = str(MU)+","+str(year)+","+str(result[i][1])+"-"+act+"\n"
fy.write(toWrite)
fy.close()
con.close()
file = open('Maps/UG_Vertice_Concelho.txt')
nlin = -1
vert4MU = {}
conc4MU = {}
MUNames = []
MU4conc = {'Paiva':[], 'Penafiel':[], 'Paredes':[]}
xmin = 100000000000
xmax = -100000000000
ymin = 100000000000
ymax = -100000000000
for line in file:
nlin += 1
if nlin == 0:
continue
lex = line.split()
if nlin < 5 or nlin > 54405:
continue
if lex[0] not in vert4MU:
vert4MU[lex[0]] = []
conc4MU[lex[0]] = lex[4]
MUNames.append(lex[0])
x = float(lex[2])
y = float(lex[3])
vert4MU[lex[0]].append((x,y))
if xmin > x : xmin = x
if xmax < x : xmax = x
if ymin > y : ymin = y
if ymax < y :
ymax = y
nymax = lex[0]
MU4conc[lex[4]].append(lex[0])
file.close()
import matplotlib.pyplot as plt
Colors = {'Ec-h':'darkred', 'Ec-t':'red', 'Pb-h':'cornflowerblue','Pb-t':'cyan',
'Ct-h':'green', 'Ct-t':'lightgreen','Sb-h':'purple', 'Sb-t':'magenta',
'Qr-h':'darkgoldenrod', 'Qr-t':'gold','Rp-h':'orange', 'Rp-t':'yellow','No':'gray'}
fig = plt.figure(figsize=(8,10))
ax = plt.gca()
ax.set_facecolor('lightgray')
plt.plot([-25000, -25010], [165000, 165010], lw=15, c=Colors['Ec-h'], label='Ec-h')
plt.plot([-25000, -25010], [165000, 165010], lw=15, c=Colors['Ec-t'], label='Ec-t')
plt.plot([-25000, -25010], [165000, 165010], lw=15, c=Colors['Pb-h'], label='Pb-h')
plt.plot([-25000, -25010], [165000, 165010], lw=15, c=Colors['Pb-t'], label='Pb-t')
plt.plot([-25000, -25010], [165000, 165010], lw=15, c=Colors['Ct-h'], label='Ct-h')
plt.plot([-25000, -25010], [165000, 165010], lw=15, c=Colors['Ct-t'], label='Ct-t')
plt.plot([-25000, -25010], [165000, 165010], lw=15, c=Colors['Sb-h'], label='Sb-h')
plt.plot([-25000, -25010], [165000, 165010], lw=15, c=Colors['Sb-t'], label='Sb-t')
plt.plot([-25000, -25010], [165000, 165010], lw=15, c=Colors['Qr-h'], label='Qr-h')
plt.plot([-25000, -25010], [165000, 165010], lw=15, c=Colors['Qr-t'], label='Qr-t')
plt.plot([-25000, -25010], [165000, 165010], lw=15, c=Colors['Rp-h'], label='Rp-h')
plt.plot([-25000, -25010], [165000, 165010], lw=15, c=Colors['Rp-t'], label='Rp-t')
plt.plot([-25000, -25010], [165000, 165010], lw=17, c='lightgray')
plt.legend()
unList = ['9','10','11','12','13','14','167', '451']
for unit in unList:
xx = []
yy = []
for v in vert4MU[unit]:
xx.append(v[0])
yy.append(v[1])
#conc = conc4MU[unit]
clr = 'yellow'
#plt.fill(xx, yy, facecolor=clr, edgecolor='black', linewidth=1)
fy= open("Maps/MapInputFile.txt", "r")
lines=fy.readlines()
for year in range(2020, 2071):
print("Outputting year: "+str(year))
for unit in MUNames:
xx = []
yy = []
for v in vert4MU[unit]:
xx.append(v[0])
yy.append(v[1])
plt.fill(xx, yy, facecolor='gray', edgecolor='black', linewidth=1)
for line in lines:
pYear = int(line.split(',')[1])
if(pYear == year):
unit = int(line.split(',')[0])
act = (line.split(',')[2][:-1])
xx = []
yy = []
for v in vert4MU[str(unit)]:
xx.append(v[0])
yy.append(v[1])
plt.fill(xx, yy, c=Colors[str(act)], edgecolor='black', linewidth=1)
plt.savefig('Maps/VerifiedSolutionMaps/Map_'+str(year),dpi=100)