Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add option for rounding to set number of decimals #262

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions scour/scour.py
Original file line number Diff line number Diff line change
Expand Up @@ -2821,8 +2821,8 @@ def parseListOfPoints(s):
i = 0
while i < len(nums):
try:
nums[i] = getcontext().create_decimal(nums[i])
nums[i + 1] = getcontext().create_decimal(nums[i + 1])
nums[i] = getcontext().create_decimal(nums[i]).quantize(roundingQuantum)
nums[i + 1] = getcontext().create_decimal(nums[i + 1]).quantize(roundingQuantum)
except InvalidOperation: # one of the lengths had a unit or is an invalid number
return []

Expand Down Expand Up @@ -3641,8 +3641,10 @@ def scourString(in_string, options=None):
# to minimize errors
global scouringContext
global scouringContextC # even more reduced precision for control points
global roundingQuantum
scouringContext = Context(prec=options.digits)
scouringContextC = Context(prec=options.cdigits)
roundingQuantum = Decimal(10) ** (-options.rounding)

# globals for tracking statistics
# TODO: get rid of these globals...
Expand Down Expand Up @@ -3976,6 +3978,9 @@ def format_usage(self, usage):
action="store", type=int, dest="cdigits", default=-1, metavar="NUM",
help="set number of significant digits for control points "
"(default: same as '--set-precision')")
_option_group_optimization.add_option("--set-rounding",
action="store", type=int, dest="rounding", default=9, metavar="NUM",
help="set number of digits after decimal point (default: %default)")
_option_group_optimization.add_option("--disable-simplify-colors",
action="store_false", dest="simple_colors", default=True,
help="won't convert colors to #RRGGBB format")
Expand Down