2
2
# @Author: WuLC
3
3
# @Date: 2017-02-12 15:41:09
4
4
# @Last Modified by: WuLC
5
- # @Last Modified time: 2017-02-14 23:05:08
5
+ # @Last Modified time: 2017-02-15 22:08:57
6
6
7
7
from GetData import read_data
8
8
from math import sqrt
@@ -92,26 +92,26 @@ def print_cluster(cluster, blog_names, n):
92
92
print blog_names [cluster .id ]
93
93
94
94
95
- def getheight (cluster ):
95
+ def get_height (cluster ):
96
96
if cluster .left == None and cluster .right == None : return 1
97
97
# Otherwise the height is the same of the heights of
98
98
# each branch
99
- return getheight (cluster .left )+ getheight (cluster .right )
99
+ return get_height (cluster .left )+ get_height (cluster .right )
100
100
101
101
102
- def getdepth (cluster ):
102
+ def get_depth (cluster ):
103
103
# The distance of an endpoint is 0.0
104
104
if cluster .left == None and cluster .right == None : return 0
105
105
106
106
# The distance of a branch is the greater of its two sides
107
107
# plus its own distance
108
- return max (getdepth (cluster .left ),getdepth (cluster .right ))+ cluster .distance
108
+ return max (get_depth (cluster .left ),get_depth (cluster .right ))+ cluster .distance
109
109
110
110
111
- def drawnode (draw ,cluster ,x ,y ,scaling ,blog_names ):
111
+ def draw_node (draw ,cluster ,x ,y ,scaling ,blog_names ):
112
112
if cluster .id < 0 :
113
- h1 = getheight (cluster .left )* 20
114
- h2 = getheight (cluster .right )* 20
113
+ h1 = get_height (cluster .left )* 20
114
+ h2 = get_height (cluster .right )* 20
115
115
top = y - (h1 + h2 )/ 2
116
116
bottom = y + (h1 + h2 )/ 2
117
117
# Line length
@@ -126,18 +126,18 @@ def drawnode(draw,cluster,x,y,scaling,blog_names):
126
126
draw .line ((x ,bottom - h2 / 2 ,x + ll ,bottom - h2 / 2 ),fill = (255 ,0 ,0 ))
127
127
128
128
# Call the function to draw the left and right nodes
129
- drawnode (draw ,cluster .left ,x + ll ,top + h1 / 2 ,scaling ,blog_names )
130
- drawnode (draw ,cluster .right ,x + ll ,bottom - h2 / 2 ,scaling ,blog_names )
129
+ draw_node (draw ,cluster .left ,x + ll ,top + h1 / 2 ,scaling ,blog_names )
130
+ draw_node (draw ,cluster .right ,x + ll ,bottom - h2 / 2 ,scaling ,blog_names )
131
131
else :
132
132
# If this is an endpoint, draw the item label
133
133
draw .text ((x + 5 ,y - 7 ),blog_names [cluster .id ],(0 ,0 ,0 ))
134
134
135
135
136
136
def draw_cluster (cluster , blog_names , jpeg_path ):
137
137
# height and width
138
- h = getheight (cluster )* 20
138
+ h = get_height (cluster )* 20
139
139
w = 1200
140
- depth = getdepth (cluster )
140
+ depth = get_depth (cluster )
141
141
142
142
# width is fixed, so scale distances accordingly
143
143
scaling = float (w - 150 )/ depth
@@ -149,7 +149,7 @@ def draw_cluster(cluster, blog_names, jpeg_path):
149
149
draw .line ((0 ,h / 2 ,10 ,h / 2 ),fill = (255 ,0 ,0 ))
150
150
151
151
# Draw the first node
152
- drawnode (draw ,cluster ,10 ,( h / 2 ) ,scaling ,blog_names )
152
+ draw_node (draw ,cluster ,10 ,h / 2 ,scaling ,blog_names )
153
153
img .save (jpeg_path ,'JPEG' )
154
154
155
155
0 commit comments