Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Energy ADE
Energy ADE 3 3DCityDB
Commits
4df49609
Commit
4df49609
authored
Aug 15, 2025
by
Rushikesh Padsala
Browse files
fixed import manager for building properties importer
parent
6f52a5c9
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/de/stuttgart/hft/ade/energy2/importer/ImportManager.java
View file @
4df49609
...
...
@@ -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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment