diff --git a/src/main/java/de/stuttgart/hft/ade/energy2/importer/ImportManager.java b/src/main/java/de/stuttgart/hft/ade/energy2/importer/ImportManager.java index df1b659a21ff5f827f19f96e7473af817a54a55b..09354d842faad63f1a7080cb021ff3a61f8d09e1 100644 --- a/src/main/java/de/stuttgart/hft/ade/energy2/importer/ImportManager.java +++ b/src/main/java/de/stuttgart/hft/ade/energy2/importer/ImportManager.java @@ -96,8 +96,10 @@ public class ImportManager implements ADEImportManager { getImporter(CityObjectPropertiesImporter.class).doImport(properties, (AbstractCityObject) parent, parentId, parentType); if (parent instanceof AbstractBuilding && properties.containsOneOf(QualifiedHeightProperty.class, - QualifiedAreaProperty.class, QualifiedVolumeProperty.class, RefurbishmentMeasureProperty.class)) - getImporter(BuildingPropertiesImporter.class).doImport(properties,(AbstractBuilding) parent, parentId, parentType); + QualifiedAreaProperty.class, QualifiedVolumeProperty.class, RefurbishmentMeasureProperty.class, + BuildingTypeProperty.class, BuildingIsProtectedProperty.class, BuildingConstructionWeightProperty.class, + BuildingAtticThermalStatusProperty.class, BuildingBasementThermalStatusProperty.class)) + getImporter(BuildingPropertiesImporter.class).doImport(properties, (AbstractBuilding) parent, parentId, parentType); } @Override