added "residential" type to us_to_library_types.py

added building_type = "residential" to us_archetypes.xml
20 buildings example returns geometrical errors in third building
This commit is contained in:
pilar 2020-06-22 14:34:29 -04:00
parent 9d921da698
commit c764c96deb
3 changed files with 5 additions and 4 deletions

View File

@ -27,6 +27,6 @@ class BixiFeature(CityObject):
def gps_coordinates(self):
"""
Get bixi feature coordinates
:return: length
:return: [x, y, z]
"""
return self._coordinates

View File

@ -11,7 +11,7 @@ class UsToLibraryTypes:
"""
standards = {
'ASHRAE Std189': 1,
'ASHRAE 90.1-2004': 2
'ASHRAE 90.1_2004': 2
}
reference_city_climate_zone = {

View File

@ -26,8 +26,9 @@ class UsFunctionToUsage:
'stand alone retail': 'retail',
'strip mall': 'hall',
'supermarket': 'retail',
'warehouse': 'industry'
}
'warehouse': 'industry',
'residential': 'residential'
}
@staticmethod
def usage(building_function):