makeGraphInput.py
1.31 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
import csv, re, sqlite3
fy= open("Maps/GraphInputFileW.txt", "w+")
fs= open("Maps/GraphInputFileS.txt", "w+")
fr= open("Maps/GraphInputFileR.txt", "w+")
con = sqlite3.connect("res/database_modfire.db")
cur = con.cursor()
Filemame = "outputPairs.csv"
f=open(Filemame,"r")
lines=f.readlines()
result=[]
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 = ''
woodSum = int(result[i][2]) + int(result[i][3])
toWrite = str(MU)+","+str(year)+","+str(result[i][1])+","+str(woodSum)+"\n"
fy.write(toWrite)
cur.execute("SELECT Year, Soilloss FROM action_external where Id = "+str(MU)+" and Presc = "+str(Pr))
result = cur.fetchall()
for i in range(0, len(result)):
year = result[i][0]
toWrite = str(year)+","+str(result[i][1])+"\n"
fs.write(toWrite)
cur.execute("SELECT Year, Perc_r0 FROM action_external where Id = "+str(MU)+" and Presc = "+str(Pr))
result = cur.fetchall()
for i in range(0, len(result)):
year = result[i][0]
toWrite = str(year)+","+str(result[i][1])+"\n"
fr.write(toWrite)
fy.close()
fs.close()
fr.close