From 023e3b6e30dae577247fa3360cd1ee244cdd9292 Mon Sep 17 00:00:00 2001 From: "Dr.-Ing. Amilcar Do Carmo Lucas" Date: Tue, 16 May 2017 01:18:50 +0200 Subject: [PATCH] Tools: Add comments explaining why a couple of units are not SI --- Tools/autotest/param_metadata/param.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Tools/autotest/param_metadata/param.py b/Tools/autotest/param_metadata/param.py index 31ceb6a71d..352e652ed7 100644 --- a/Tools/autotest/param_metadata/param.py +++ b/Tools/autotest/param_metadata/param.py @@ -59,13 +59,13 @@ known_units = { 'cm/s/s/s': 'centimeters per cubic second' , # metre is the SI unit name, meter is the american spelling of it 'mm' : 'millimeters' , # metre is the SI unit name, meter is the american spelling of it # temperature - 'degC' : 'degrees Celsius' , + 'degC' : 'degrees Celsius' , # Not SI, but Kelvin is too cumbersome for most users # angle - 'deg' : 'degrees' , - 'deg/s' : 'degrees per second' , - 'cdeg' : 'centidegrees' , - 'cdeg/s' : 'centidegrees per second', - 'cdeg/s/s': 'centidegrees per square second' , + 'deg' : 'degrees' , # Not SI, but is some situations more user-friendly than radians + 'deg/s' : 'degrees per second' , # Not SI, but is some situations more user-friendly than radians + 'cdeg' : 'centidegrees' , # Not SI, but is some situations more user-friendly than radians + 'cdeg/s' : 'centidegrees per second', # Not SI, but is some situations more user-friendly than radians + 'cdeg/s/s': 'centidegrees per square second' , # Not SI, but is some situations more user-friendly than radians 'rad' : 'radians' , 'rad/s' : 'radians per second' , 'rad/s/s' : 'radians per square second' ,