Skip to content

Commit

Permalink
style: increase location saturation default from 60 to 80%
Browse files Browse the repository at this point in the history
  • Loading branch information
Sieboldianus committed Jan 24, 2019
1 parent 65d3a60 commit bc92401
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tagmaps/classes/cluster.py
Expand Up @@ -584,7 +584,7 @@ def _is_saturated_item(
item_area: float,
topitem_area: float):
"""Skip item entirely if saturated, i.e.
if total area > 60%
if total area > 80%
of top item cluster area
Args:
Expand All @@ -594,7 +594,7 @@ def _is_saturated_item(
local_saturation = item_area/(topitem_area/100)
# print("Local Saturation for Tag " + top_item[0] "
# "+ ": " + str(round(localSaturation,0)))
if local_saturation > 60:
if local_saturation > 80:
return True
else:
return False
Expand Down

0 comments on commit bc92401

Please sign in to comment.