← Back to team overview

python-quantities-developers team mailing list archive

[Bug 401409] Re: Temperature conversion behavior deserves more emphasis in docs

 

** Changed in: python-quantities
    Milestone: None => 0.5.0

-- 
Temperature conversion behavior deserves more emphasis in docs
https://bugs.launchpad.net/bugs/401409
You received this bug notification because you are a member of Python
Quantities Development Team, which is subscribed to python-quantities.

Status in Physical Quantities for Python: Fix Committed

Bug description:
Quantities does not handle absolute temperature scales; instead, temperatures are assumed to be temperature differences. For example

>>> T = 20 * pq.degC
>>> print T.rescale('K')
20.0 K

This behavior, is noted in the Quick-start Tutorial, but since it will be a common misunderstanding, should be given more emphasis.