Upgraded geometry package. Fixed related issues
This commit is contained in:
parent
79e79f48c4
commit
dfde4212a3
|
@ -26,7 +26,7 @@ from hub.city_model_structure.level_of_detail import LevelOfDetail
|
|||
from hub.city_model_structure.machine import Machine
|
||||
from hub.city_model_structure.parts_consisting_building import PartsConsistingBuilding
|
||||
from geometry import Library as GeometryHelper
|
||||
from hub.helpers.location import Location
|
||||
from geometry import Location
|
||||
from hub.city_model_structure.energy_system import EnergySystem
|
||||
from hub.city_model_structure.lca_material import LcaMaterial
|
||||
import pandas as pd
|
||||
|
|
|
@ -5,7 +5,7 @@ Copyright © 2022 Concordia CERC group
|
|||
Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
|
||||
"""
|
||||
|
||||
from hub.helpers.location import Location
|
||||
from geometry import Location
|
||||
from hub.city_model_structure.iot.sensor_measure import SensorMeasure
|
||||
from hub.city_model_structure.iot.sensor_type import SensorType
|
||||
|
||||
|
|
|
@ -9,7 +9,9 @@ Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
|
|||
from hub.imports.geometry.citygml_classes.citygml_base import CityGmlBase
|
||||
from hub.city_model_structure.building_demand.surface import Surface
|
||||
from geometry import Polygon
|
||||
from geometry import Helper as GeometryHelper
|
||||
from geometry import Helper
|
||||
|
||||
GeometryHelper = Helper.instance()
|
||||
|
||||
|
||||
class CityGmlLod1(CityGmlBase):
|
||||
|
|
|
@ -8,7 +8,9 @@ Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
|
|||
from hub.imports.geometry.citygml_classes.citygml_base import CityGmlBase
|
||||
from hub.city_model_structure.building_demand.surface import Surface
|
||||
from geometry import Polygon
|
||||
from geometry import Helper as GeometryHelper
|
||||
from geometry import Helper
|
||||
|
||||
GeometryHelper = Helper.instance()
|
||||
|
||||
|
||||
class CityGmlLod2(CityGmlBase):
|
||||
|
|
|
@ -13,10 +13,12 @@ from hub.city_model_structure.building import Building
|
|||
from hub.city_model_structure.building_demand.surface import Surface as HubSurface
|
||||
from hub.city_model_structure.city import City
|
||||
from hub.helpers.configuration_helper import ConfigurationHelper
|
||||
from geometry import Helper as GeometryHelper
|
||||
from geometry import Helper
|
||||
from geometry import Polygon
|
||||
from geometry import Point
|
||||
|
||||
GeometryHelper = Helper.instance()
|
||||
|
||||
|
||||
class Rhino:
|
||||
def __init__(self, path):
|
||||
|
|
|
@ -25,4 +25,5 @@ triangle
|
|||
psycopg2-binary
|
||||
Pillow
|
||||
pathlib
|
||||
pickle5
|
||||
pickle5
|
||||
cerc-geometry
|
Loading…
Reference in New Issue
Block a user