51 lines
1.3 KiB
Python
51 lines
1.3 KiB
Python
|
"""
|
||
|
GeometryFactory retrieve the specific geometric module to load the given format
|
||
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
||
|
Copyright © 2020 Project Author Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
|
||
|
"""
|
||
|
from city_model_structure.city import City
|
||
|
from city_model_structure.city_object import CityObject
|
||
|
from factories.geometry_feeders.city_gml import CityGml
|
||
|
from factories.geometry_feeders.osm_subway import OsmSubway
|
||
|
|
||
|
|
||
|
class GeometryFactory:
|
||
|
"""
|
||
|
GeometryFactory class
|
||
|
"""
|
||
|
def __init__(self, file_type, path):
|
||
|
self._file_type = '_' + file_type.lower()
|
||
|
self._path = path
|
||
|
|
||
|
@property
|
||
|
def _citygml(self):
|
||
|
return CityGml(self._path).city
|
||
|
|
||
|
@property
|
||
|
def _geojson(self):
|
||
|
raise Exception('Not implemented')
|
||
|
|
||
|
@property
|
||
|
def _bim(self):
|
||
|
raise Exception('Not implemented')
|
||
|
|
||
|
@property
|
||
|
def city(self) -> City:
|
||
|
"""
|
||
|
Load the city model structure from a geometry source
|
||
|
:return: City
|
||
|
"""
|
||
|
return getattr(self, self._file_type, lambda: None)
|
||
|
|
||
|
@property
|
||
|
def _osm_subway(self):
|
||
|
return OsmSubway(self._path).subway_entrances
|
||
|
|
||
|
@property
|
||
|
def features(self) -> [CityObject]:
|
||
|
"""
|
||
|
Load the city model structure from a geometry source
|
||
|
:return: [CityObject]
|
||
|
"""
|
||
|
return getattr(self, self._file_type, lambda: None)
|