mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
27 lines
805 B
Python
27 lines
805 B
Python
import numpy as np
|
|
|
|
STANDARD_ROOF_CONSTRUCTIONS = {
|
|
"pitched access to loft",
|
|
"pitched no access to loft",
|
|
"pitched unknown access to loft",
|
|
"piched unknown insulation",
|
|
"pitched insulated",
|
|
"another dwelling above",
|
|
"flat unknown insulation",
|
|
"unknown insulated",
|
|
"unknown",
|
|
}
|
|
|
|
ROOF_CONSTRUCTION_MAPPINGS = {
|
|
'Flat': 'flat unknown insulation',
|
|
'Pitched (access to loft)': 'pitched access to loft',
|
|
'Pitched (no access to loft)': 'pitched no access to loft',
|
|
'Another dwelling above': 'another dwelling above',
|
|
'Same dwelling above': 'another dwelling above',
|
|
'As-built': 'unknown',
|
|
'ND (inferred)': 'unknown',
|
|
'2018 onwards': 'unknown',
|
|
'Pitched (vaulted ceiling)': 'pitched insulated',
|
|
np.nan: "unknown",
|
|
None: "unknown"
|
|
}
|