Merge remote-tracking branch 'origin/master'

This commit is contained in:
Guille Gutierrez 2020-06-22 14:35:59 -04:00
commit 254def746a
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):