Merge pull request #5340 from PhytoEpidemic/master
Fix divide by 0 error
This commit is contained in:
commit
bab6ea6b22
1 changed files with 3 additions and 3 deletions
|
@ -276,8 +276,8 @@ def poi_average(pois, settings):
|
||||||
weight += poi.weight
|
weight += poi.weight
|
||||||
x += poi.x * poi.weight
|
x += poi.x * poi.weight
|
||||||
y += poi.y * poi.weight
|
y += poi.y * poi.weight
|
||||||
avg_x = round(x / weight)
|
avg_x = round(weight and x / weight)
|
||||||
avg_y = round(y / weight)
|
avg_y = round(weight and y / weight)
|
||||||
|
|
||||||
return PointOfInterest(avg_x, avg_y)
|
return PointOfInterest(avg_x, avg_y)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue