From 37ad7fae0df006309afa846b320668f7616dcc18 Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Thu, 8 Jun 2023 11:25:57 -0400 Subject: [PATCH] changed name to fit our stile --- support_material/tutorial_0/main_level_0.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/support_material/tutorial_0/main_level_0.py b/support_material/tutorial_0/main_level_0.py index 47ea530..71ff30c 100644 --- a/support_material/tutorial_0/main_level_0.py +++ b/support_material/tutorial_0/main_level_0.py @@ -1,15 +1,13 @@ -from pathlib import Path from hub.imports.geometry_factory import GeometryFactory from hub.exports.exports_factory import ExportsFactory gml_file = 'FZK-Haus-LoD2-KIT-IAI-KHH-B36-V1.gml' city = GeometryFactory('citygml', gml_file).city -path = Path(__file__).parent for building in city.buildings: print(building.name) print(building.volume) print(building.floor_area) -ExportsFactory('obj', city, path).export() +ExportsFactory('obj', city, './').export()