mirror of
https://github.com/Arrowar/StreamingCommunity.git
synced 2025-06-07 12:05:35 +00:00
18 lines
470 B
Python
18 lines
470 B
Python
# 16.05.24
|
|
|
|
units_of_measurement_mapping = {
|
|
'℃': 'degrees Celsius',
|
|
'℉': 'degrees Fahrenheit',
|
|
'°C': 'degrees Celsius',
|
|
'°F': 'degrees Fahrenheit',
|
|
'm²': 'square meters',
|
|
'm³': 'cubic meters',
|
|
'cm²': 'square centimeters',
|
|
'cm³': 'cubic centimeters',
|
|
'mm²': 'square millimeters',
|
|
'mm³': 'cubic millimeters',
|
|
'km²': 'square kilometers',
|
|
'km³': 'cubic kilometers',
|
|
'ha': 'hectares',
|
|
'ha': 'hectares',
|
|
} |