2020-06-09 14:07:47 -04:00
|
|
|
"""
|
2021-06-04 09:22:06 -04:00
|
|
|
CityGml module parses citygml_classes files and import the geometry into the city model structure
|
2020-06-09 14:07:47 -04:00
|
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
|
|
Copyright © 2020 Project Author Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
|
|
|
|
"""
|
2020-05-18 13:25:08 -04:00
|
|
|
import numpy as np
|
2020-06-16 10:34:17 -04:00
|
|
|
import xmltodict
|
2020-05-18 13:25:08 -04:00
|
|
|
from city_model_structure.city import City
|
2020-06-16 15:12:18 -04:00
|
|
|
from city_model_structure.building import Building
|
2020-06-11 16:22:58 -04:00
|
|
|
from helpers.geometry_helper import GeometryHelper
|
2021-06-04 09:22:06 -04:00
|
|
|
from imports.geometry.citygml_classes.citygml_lod2 import CityGmlLod2
|
|
|
|
from imports.geometry.citygml_classes.citygml_lod1 import CityGmlLod1
|
2021-06-03 12:42:00 -04:00
|
|
|
from city_model_structure.parts_consisting_building import PartsConsistingBuilding
|
2020-05-18 13:25:08 -04:00
|
|
|
|
2020-06-23 14:48:01 -04:00
|
|
|
|
2020-05-18 13:25:08 -04:00
|
|
|
class CityGml:
|
2020-06-11 15:45:11 -04:00
|
|
|
"""
|
|
|
|
CityGml class
|
|
|
|
"""
|
2020-05-18 13:25:08 -04:00
|
|
|
def __init__(self, path):
|
|
|
|
self._city = None
|
2021-06-03 10:12:06 -04:00
|
|
|
self._lod1_tags = ['lod1Solid', 'lod1MultiSurface']
|
|
|
|
self._lod2_tags = ['lod2Solid', 'lod2MultiSurface', 'lod2MultiCurve']
|
2020-05-18 13:25:08 -04:00
|
|
|
with open(path) as gml:
|
2021-06-04 09:22:06 -04:00
|
|
|
# Clean the namespaces is an important task to prevent wrong ns:field due poor citygml_classes implementations
|
2021-06-03 12:42:00 -04:00
|
|
|
fl = ('cityObjectMember', 'curveMember', 'boundedBy', 'surfaceMember', 'consistsOfBuildingPart')
|
2020-05-18 13:25:08 -04:00
|
|
|
self._gml = xmltodict.parse(gml.read(), process_namespaces=True, xml_attribs=True, namespaces={
|
|
|
|
'http://www.opengis.net/gml': None,
|
2020-06-22 13:26:50 -04:00
|
|
|
'http://www.opengis.net/citygml/1.0': None,
|
|
|
|
'http://www.opengis.net/citygml/building/1.0': None,
|
|
|
|
'http://schemas.opengis.net/citygml/building/1.0/building.xsd': None,
|
|
|
|
'http://www.opengis.net/citygml/appearance/1.0': None,
|
|
|
|
'http://schemas.opengis.net/citygml/appearance/1.0/appearance.xsd': None,
|
|
|
|
'http://www.opengis.net/citygml/relief/1.0': None,
|
|
|
|
'http://schemas.opengis.net/citygml/relief/1.0/relief.xsd': None,
|
|
|
|
'http://www.opengis.net/citygml/generics/1.0': None,
|
2020-05-18 13:25:08 -04:00
|
|
|
'http://www.w3.org/2001/XMLSchema-instance': None,
|
|
|
|
'urn:oasis:names:tc:ciq:xsdschema:xAL:2.0': None,
|
|
|
|
'http://www.w3.org/1999/xlink': None,
|
|
|
|
'http://www.opengis.net/citygml/relief/2.0': None,
|
|
|
|
'http://www.opengis.net/citygml/building/2.0': None,
|
|
|
|
'http://www.opengis.net/citygml/building/2.0 http://schemas.opengis.net/citygml/building/2.0/building.xsd '
|
|
|
|
'http://www.opengis.net/citygml/relief/2.0 http://schemas.opengis.net/citygml/relief/2.0/relief.xsd" '
|
|
|
|
'xmlns="http://www.opengis.net/citygml/2.0': None,
|
|
|
|
'http://www.opengis.net/citygml/2.0': None
|
2021-06-03 12:42:00 -04:00
|
|
|
}, force_list=fl)
|
|
|
|
|
2020-06-16 16:19:14 -04:00
|
|
|
self._city_objects = None
|
2020-06-11 16:22:58 -04:00
|
|
|
self._geometry = GeometryHelper()
|
2021-06-03 16:26:00 -04:00
|
|
|
|
2020-06-22 13:26:50 -04:00
|
|
|
for bound in self._gml['CityModel']['boundedBy']:
|
|
|
|
envelope = bound['Envelope']
|
|
|
|
if '#text' in envelope['lowerCorner']:
|
|
|
|
self._lower_corner = np.fromstring(envelope['lowerCorner']['#text'], dtype=float, sep=' ')
|
|
|
|
self._upper_corner = np.fromstring(envelope['upperCorner']['#text'], dtype=float, sep=' ')
|
|
|
|
else:
|
|
|
|
self._lower_corner = np.fromstring(envelope['lowerCorner'], dtype=float, sep=' ')
|
|
|
|
self._upper_corner = np.fromstring(envelope['upperCorner'], dtype=float, sep=' ')
|
2020-10-26 10:00:42 -04:00
|
|
|
if '@srsName' in envelope:
|
|
|
|
self._srs_name = envelope['@srsName']
|
2020-05-18 13:25:08 -04:00
|
|
|
|
|
|
|
@property
|
|
|
|
def content(self):
|
2020-06-11 15:45:11 -04:00
|
|
|
"""
|
|
|
|
CityGml raw content
|
|
|
|
:return: str
|
|
|
|
"""
|
2020-05-18 13:25:08 -04:00
|
|
|
return self._gml
|
|
|
|
|
2021-06-03 11:16:21 -04:00
|
|
|
def _create_building(self, city_object):
|
|
|
|
name = city_object['@id']
|
|
|
|
function = None
|
|
|
|
year_of_construction = None
|
|
|
|
if 'yearOfConstruction' in city_object:
|
|
|
|
year_of_construction = city_object['yearOfConstruction']
|
|
|
|
if 'function' in city_object:
|
|
|
|
function = city_object['function']
|
|
|
|
if any(key in city_object for key in self._lod1_tags):
|
|
|
|
lod = 1
|
|
|
|
surfaces = CityGmlLod1(city_object).surfaces
|
|
|
|
elif any(key in city_object for key in self._lod2_tags):
|
|
|
|
lod = 2
|
|
|
|
surfaces = CityGmlLod2(city_object).surfaces
|
|
|
|
else:
|
|
|
|
raise NotImplementedError("Not supported level of detail")
|
2021-06-03 11:27:48 -04:00
|
|
|
return Building(name, lod, surfaces, year_of_construction, function, self._lower_corner, [])
|
2021-06-03 11:16:21 -04:00
|
|
|
|
2021-06-03 12:42:00 -04:00
|
|
|
def _create_parts_consisting_building(self, city_object):
|
|
|
|
name = city_object['@id']
|
|
|
|
building_parts = []
|
|
|
|
for part in city_object['consistsOfBuildingPart']:
|
|
|
|
building = self._create_building(part['BuildingPart'])
|
|
|
|
print(f'add city building part {building.name}')
|
|
|
|
self._city.add_city_object(building)
|
|
|
|
building_parts.append(building)
|
|
|
|
return PartsConsistingBuilding(name, building_parts)
|
2021-06-03 10:12:06 -04:00
|
|
|
|
2020-05-18 13:25:08 -04:00
|
|
|
@property
|
2020-06-11 15:45:11 -04:00
|
|
|
def city(self) -> City:
|
|
|
|
"""
|
|
|
|
City model structure enriched with the geometry information
|
|
|
|
:return: City
|
|
|
|
"""
|
2021-06-03 11:16:21 -04:00
|
|
|
|
2020-05-18 13:25:08 -04:00
|
|
|
if self._city is None:
|
2020-05-28 12:07:36 -04:00
|
|
|
self._city = City(self._lower_corner, self._upper_corner, self._srs_name)
|
2021-06-08 11:34:30 -04:00
|
|
|
i = 0
|
2020-05-18 13:25:08 -04:00
|
|
|
for o in self._gml['CityModel']['cityObjectMember']:
|
2021-06-08 11:34:30 -04:00
|
|
|
i += 1
|
2021-06-03 11:16:21 -04:00
|
|
|
city_object = o['Building']
|
|
|
|
if 'consistsOfBuildingPart' in city_object:
|
2021-06-03 12:42:00 -04:00
|
|
|
self._city.add_city_objects_cluster(self._create_parts_consisting_building(city_object))
|
2020-06-22 13:46:41 -04:00
|
|
|
else:
|
2021-06-03 11:16:21 -04:00
|
|
|
self._city.add_city_object(self._create_building(city_object))
|
2021-06-08 11:34:30 -04:00
|
|
|
if i < 4:
|
|
|
|
break
|
2020-05-18 13:25:08 -04:00
|
|
|
return self._city
|