From 53ae043d637ced8cc3b0e1df454600eab8502418 Mon Sep 17 00:00:00 2001 From: guille Date: Thu, 9 Mar 2023 11:11:34 -0500 Subject: [PATCH] optimize imports --- hub/helpers/geometry_helper.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/hub/helpers/geometry_helper.py b/hub/helpers/geometry_helper.py index 54428937..eb66ee1f 100644 --- a/hub/helpers/geometry_helper.py +++ b/hub/helpers/geometry_helper.py @@ -5,18 +5,17 @@ Copyright © 2022 Concordia CERC group Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ -import datetime import math + import numpy as np import requests from trimesh import Trimesh from trimesh import intersections + from hub.city_model_structure.attributes.polygon import Polygon from hub.city_model_structure.attributes.polyhedron import Polyhedron from hub.helpers.location import Location -from PIL import Image - class MapPoint: def __init__(self, x, y):