mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-30 13:10:47 +00:00
fixed error converting welsh floor description
This commit is contained in:
parent
7956a4adc4
commit
092f9dd190
3 changed files with 7 additions and 2 deletions
|
|
@ -4,7 +4,6 @@ import pandas as pd
|
||||||
import msgpack
|
import msgpack
|
||||||
|
|
||||||
from model_data.EpcClean import EpcClean
|
from model_data.EpcClean import EpcClean
|
||||||
from model_data.analysis.UvalueEstimations import UvalueEstimations
|
|
||||||
from model_data.simulation_system.core.Settings import EARLIEST_EPC_DATE
|
from model_data.simulation_system.core.Settings import EARLIEST_EPC_DATE
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from utils.s3 import save_data_to_s3
|
from utils.s3 import save_data_to_s3
|
||||||
|
|
|
||||||
|
|
@ -65,7 +65,7 @@ class FloorAttributes(Definitions):
|
||||||
uvalue = uvalue_match.group(1)
|
uvalue = uvalue_match.group(1)
|
||||||
else:
|
else:
|
||||||
uvalue = uvalue_match2.group(1)
|
uvalue = uvalue_match2.group(1)
|
||||||
self.description = f"average thermal transmittance {uvalue} w/m-¦K"
|
self.description = f'average thermal transmittance {uvalue} w/m-¦k'
|
||||||
|
|
||||||
else:
|
else:
|
||||||
translation = self.WELSH_TEXT.get(self.description)
|
translation = self.WELSH_TEXT.get(self.description)
|
||||||
|
|
|
||||||
|
|
@ -370,5 +370,11 @@ clean_floor_cases = [
|
||||||
'thermal_transmittance_unit': 'w/m+é-¦k', 'is_assumed': False,
|
'thermal_transmittance_unit': 'w/m+é-¦k', 'is_assumed': False,
|
||||||
'is_to_unheated_space': False, 'is_to_external_air': False, 'is_suspended': False, 'is_solid': False,
|
'is_to_unheated_space': False, 'is_to_external_air': False, 'is_suspended': False, 'is_solid': False,
|
||||||
'another_property_below': False, 'insulation_thickness': None},
|
'another_property_below': False, 'insulation_thickness': None},
|
||||||
|
{
|
||||||
|
"original_description": "Trawsyriannedd thermol cyfartalog 0.27 W/m-¦K", 'thermal_transmittance': 0.27,
|
||||||
|
'thermal_transmittance_unit': 'w/m-¦k', 'is_assumed': False,
|
||||||
|
'is_to_unheated_space': False, 'is_to_external_air': False, 'is_suspended': False, 'is_solid': False,
|
||||||
|
'another_property_below': False, 'insulation_thickness': None
|
||||||
|
}
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue