Add experimental support for gbxml - make importer import spaces, as it is very important for energy modeling

This commit is contained in:
Dion Moult
2019-10-04 17:20:19 +10:00
parent e37c882fe2
commit bf7005acfc
2 changed files with 131 additions and 1 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ class ImportIFC():
def execute(self):
self.load_file()
n = 0
elements = self.file.by_type('IfcElement')
elements = self.file.by_type('IfcElement') + self.file.by_type('IfcSpace')
for element in elements:
self.create_object(element)
n += 1