27 lines
924 B
Python
27 lines
924 B
Python
from helpers import constants as cte
|
|
|
|
nrel_to_function = {
|
|
'residential': cte.RESIDENTIAL,
|
|
'midrise apartment': cte.MID_RISE_APARTMENT,
|
|
'high-rise apartment': cte.HIGH_RISE_APARTMENT,
|
|
'small office': cte.SMALL_OFFICE,
|
|
'medium office': cte.MEDIUM_OFFICE,
|
|
'large office': cte.LARGE_OFFICE,
|
|
'primary school': cte.PRIMARY_SCHOOL,
|
|
'secondary school': cte.SECONDARY_SCHOOL,
|
|
'stand-alone retail': cte.STAND_ALONE_RETAIL,
|
|
'hospital': cte.HOSPITAL,
|
|
'outpatient healthcare': cte.OUT_PATIENT_HEALTH_CARE,
|
|
'strip mall': cte.STRIP_MALL,
|
|
'supermarket': cte.SUPERMARKET,
|
|
'warehouse': cte.WAREHOUSE,
|
|
'quick service restaurant': cte.QUICK_SERVICE_RESTAURANT,
|
|
'full service restaurant': cte.FULL_SERVICE_RESTAURANT,
|
|
'small hotel': cte.SMALL_HOTEL,
|
|
'large hotel': cte.LARGE_HOTEL
|
|
}
|
|
|
|
reference_standard_to_construction_period = {
|
|
'ASHRAE 90.1_2004': '2004 - 2009',
|
|
'ASHRAE 189.1_2009': '2009 - PRESENT'
|
|
} |