From 6990811ea798902fbe8c34d8e65bce0b38400723 Mon Sep 17 00:00:00 2001 From: sanam Date: Tue, 5 Dec 2023 11:04:15 -0500 Subject: [PATCH] remove .idea --- .idea/.gitignore | 8 ----- .idea/ep_workflow.iml | 12 -------- .idea/inspectionProfiles/Project_Default.xml | 30 ------------------- .../inspectionProfiles/profiles_settings.xml | 6 ---- .idea/misc.xml | 4 --- .idea/modules.xml | 8 ----- .idea/vcs.xml | 6 ---- scripts/ep_workflow.py | 5 ++-- 8 files changed, 2 insertions(+), 77 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/ep_workflow.iml delete mode 100644 .idea/inspectionProfiles/Project_Default.xml delete mode 100644 .idea/inspectionProfiles/profiles_settings.xml delete mode 100644 .idea/misc.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 13566b81..00000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/.idea/ep_workflow.iml b/.idea/ep_workflow.iml deleted file mode 100644 index 8b8c3954..00000000 --- a/.idea/ep_workflow.iml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml deleted file mode 100644 index 0c6593c6..00000000 --- a/.idea/inspectionProfiles/Project_Default.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml deleted file mode 100644 index 105ce2da..00000000 --- a/.idea/inspectionProfiles/profiles_settings.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index d1be9602..00000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 7e0c47a2..00000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 35eb1ddf..00000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/scripts/ep_workflow.py b/scripts/ep_workflow.py index 65fa0d98..61068d31 100644 --- a/scripts/ep_workflow.py +++ b/scripts/ep_workflow.py @@ -15,7 +15,7 @@ from hub.imports.results_factory import ResultFactory sys.path.append('./') try: - file_path = (Path(__file__).parent.parent / 'input_files' / 'selected_building_1724.geojson') + file_path = (Path(__file__).parent.parent / 'input_files' / 'concordia.geojson') out_path = (Path(__file__).parent.parent / 'out_files') files = glob.glob(f'{out_path}/*') @@ -46,9 +46,8 @@ try: area += ground.perimeter_polygon.area print('exporting:') - city.name = '1724' + _idf = EnergyBuildingsExportsFactory('idf', city, out_path).export() - print(_idf) print(' idf exported...') _idf.run()