mirror of
https://github.com/Arrowar/StreamingCommunity.git
synced 2025-06-06 19:45:24 +00:00
16 lines
426 B
Python
16 lines
426 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',
|
|
} |