Fixed temperature units
This commit is contained in:
parent
72026dd1c5
commit
79d319cc87
1 changed files with 2 additions and 2 deletions
|
@ -31,8 +31,8 @@ public class UnitDisplayUtils
|
||||||
{
|
{
|
||||||
KELVIN("Kelvin", "K", 0, 1),
|
KELVIN("Kelvin", "K", 0, 1),
|
||||||
CELSIUS("Celsius", "°C", 273.15, 1),
|
CELSIUS("Celsius", "°C", 273.15, 1),
|
||||||
RANKINE("Rankine", "R", 0, 5/9),
|
RANKINE("Rankine", "R", 0, 9D/5D),
|
||||||
FAHRENHEIT("Fahrenheit", "°F", 459.67, 5/9),
|
FAHRENHEIT("Fahrenheit", "°F", 459.67, 9D/5D),
|
||||||
AMBIENT("Ambient", "+STP", 300, 1);
|
AMBIENT("Ambient", "+STP", 300, 1);
|
||||||
|
|
||||||
public String name;
|
public String name;
|
||||||
|
|
Loading…
Reference in a new issue