ConventionalUnit
- Definition
- Conventional units that are neither base units nor defined by direct combination of base units are used in many application domains. For example electronVolt for energy, feet and nautical miles for length. In most cases there is a known, usually linear, conversion to a preferred unit which is either a base unit or derived by direct combination of base units.
ConventionalUnit | |
Plain Definition and Guidance | |
---|---|---|---|
1 | identifier | 1 | |
2 | name | 0..* | |
3 | (choose one)
|
1 |
More Information
Links | |
---|---|
Examples |
Feet to Meters Conversion
<gml:ConventionalUnit gml:id="ID007"> <gml:identifier codeSpace="foot"/> <gml:conversionToPreferredUnit uom="m"> <gml:factor>0.305</gml:factor> </gml:conversionToPreferredUnit> </gml:ConventionalUnit> Celsius to Kelvin Conversion
<gml:ConventionalUnit gml:id="ID008"> <gml:identifier codeSpace="degree Celsius"/> <gml:conversionToPreferredUnit uom="K"> <gml:formula> <gml:a>273.15</gml:a> <gml:b>1</gml:b> <gml:c>1</gml:c> </gml:formula> </gml:conversionToPreferredUnit> </gml:ConventionalUnit> |