hub/imports/geometry/citygml.py

113 lines
4.9 KiB
Python
Raw Normal View History

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
"""
import numpy as np
import xmltodict
from city_model_structure.city import City
from city_model_structure.building import Building
2021-08-27 12:51:30 -04:00
from city_model_structure.parts_consisting_building import PartsConsistingBuilding
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
2020-06-23 14:48:01 -04:00
class CityGml:
"""
CityGml class
"""
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']
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
force_list = ('cityObjectMember', 'curveMember', 'boundedBy', 'surfaceMember', 'consistsOfBuildingPart')
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,
'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
}, force_list=force_list)
2021-06-03 12:42:00 -04:00
self._city_objects = None
2020-06-11 16:22:58 -04:00
self._geometry = GeometryHelper()
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=' ')
if '@srsName' in envelope:
self._srs_name = envelope['@srsName']
@property
def content(self):
"""
Get cityGml raw content
:return: str
"""
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")
2022-03-08 19:19:52 -05:00
return Building(name, lod, surfaces, year_of_construction, function, self._lower_corner, terrains=None)
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'])
self._city.add_city_object(building)
building_parts.append(building)
return PartsConsistingBuilding(name, building_parts)
2021-06-03 10:12:06 -04:00
@property
def city(self) -> City:
"""
Get city model structure enriched with the geometry information
:return: City
"""
2021-06-03 11:16:21 -04:00
if self._city is None:
self._city = City(self._lower_corner, self._upper_corner, self._srs_name)
for city_object_member in self._gml['CityModel']['cityObjectMember']:
city_object = city_object_member['Building']
2021-06-03 11:16:21 -04:00
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))
return self._city