From d88e3a9c104078dac29a8a97c800b19901a077ef Mon Sep 17 00:00:00 2001 From: Rushikesh Padsala Date: Tue, 10 Mar 2026 07:45:50 +0000 Subject: [PATCH 1/2] Update README.md --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ce4b5b8..b0476f1 100644 --- a/README.md +++ b/README.md @@ -39,16 +39,14 @@ A complete guide on using ADE with Importer/Exporter plugin and 3DCityDB is avai Please refer to the main repository of [Energy ADE 3](https://github.com/tudelft3d/Energy_ADE) for more details. -To file/track issues: https://transfer.hft-stuttgart.de/gitlab/energy-ade/energy-ade-3-releases/-/issues - # Contact person: - Rushikesh Padsala - rushikesh.padsala@hft-stuttgart.de # Main developers and contributors -- Prabitha Prabhakaran (HFT Stuttgart, Germany): **Main developer** -- Rushikesh Padsala (HFT Stuttgart, Germany): **Main developer** +- Rushikesh Padsala (HFT Stuttgart, Germany): **Main developer - Lead** +- Prabitha Prabhakaran (HFT Stuttgart, Germany): **Ex Main developer - Student Master Software Technology, HFT Stuttgart** - Matthias Betz (HFT Stuttgart, Germany): Contributor - Zhihang Yao (HFT Stuttgart, Germany): Contributor @@ -57,10 +55,14 @@ To file/track issues: https://transfer.hft-stuttgart.de/gitlab/energy-ade/energy - Dr. Giorgio Agugiaro (TU Delft, Netherlands) - Prof. Dr. Volker Coors (HFT Stuttgart, Germany) +# Contributing +- To file bugs create a [issue](https://transfer.hft-stuttgart.de/gitlab/energy-ade/energy-ade-3-3dcitydb/-/issues). +- To contribute code for fixing filed issues create a pull request with the issue id. + # License The software resources available on this repository adopt the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). # Funding -The development of the Energy ADE v3.0 (led by TU Delft) started in spring 2024 within the European [DigiTwins4PEDs](https://digitwins4peds.eu/) project. The project is funded by the Federal Ministry for Economic Affairs and Climate Protection (BMWK) for the project DigiTwins4PEDs (case study: Stuttgart) as part of the [Driving Urban Transition - DUT](https://dutpartnership.eu/) partnership, which is co-financed by the European Commission (Funding Indicator:03EN3081A). The project is part of the DUT 2022 call which also contributes to the Urban Transition Mission of Mission Innovation as part of the MICall 2022 initiative. +The development of the Energy ADE v3.0 (led by TU Delft) started in spring 2024 within the European [DigiTwins4PEDs](https://digitwins4peds.eu/) project and further developed in the [FlexPED](https://flexped.eu/). Both the projects are funded by the Federal Ministry for Economic Affairs and Climate Protection (BMWK) for the project DigiTwins4PEDs (case study: Stuttgart) as part of the [Driving Urban Transition - DUT](https://dutpartnership.eu/) partnership, which is co-financed by the European Commission (Funding Indicator DigiTwins4PEDs:03EN3081A; FlexPED:03EN3132A). The projects are part of the DUT 2022 and 2024 call which also contributes to the Urban Transition Mission of Mission Innovation as part of the MICall 2022 and 2024 initiative. As such both the projects has received funding from the European Union's Horizon Europe research and innovation programme under grant agreement no. 101069506. -- GitLab From b0d4a3f9bc0035042ed85751c140143dbf4eef4e Mon Sep 17 00:00:00 2001 From: Rushi Date: Fri, 15 May 2026 13:15:15 +0200 Subject: [PATCH 2/2] support for importing-exporting CityObjectRelation --- .idea/gradle.xml | 1 + .idea/misc.xml | 6 +- .idea/vcs.xml | 1 + README.md | 2 +- build.gradle | 4 +- .../3dcitydb/postgreSQL/CREATE_ADE_DB.sql | 1048 ------------ .../3dcitydb/postgreSQL/DROP_ADE_DB.sql | 149 -- .../schema-mapping/schema-mapping.xml | 1408 ----------------- .../CityObjectPropertiesExporter.java | 6 + .../exporter/CityObjectRelationExporter.java | 73 + .../ade/energy3/exporter/ExportManager.java | 4 + .../energy3/exporter/ResourceExporter.java | 2 +- .../CityObjectPropertiesImporter.java | 34 + .../importer/CityObjectRelationImporter.java | 34 +- .../ade/energy3/importer/ImportManager.java | 2 + .../hft/ade/energy3/schema/ADESequence.java | 1 + .../hft/ade/energy3/schema/ADETable.java | 2 +- 17 files changed, 147 insertions(+), 2630 deletions(-) delete mode 100644 resources/database/3dcitydb/postgreSQL/CREATE_ADE_DB.sql delete mode 100644 resources/database/3dcitydb/postgreSQL/DROP_ADE_DB.sql delete mode 100644 resources/database/schema-mapping/schema-mapping.xml create mode 100644 src/main/java/de/stuttgart/hft/ade/energy3/exporter/CityObjectRelationExporter.java diff --git a/.idea/gradle.xml b/.idea/gradle.xml index fbe9675..8f64c63 100644 --- a/.idea/gradle.xml +++ b/.idea/gradle.xml @@ -1,5 +1,6 @@ +