Partial correction citygml read

This commit is contained in:
Guille Gutierrez 2021-06-03 10:14:36 -04:00
parent 81324c945e
commit 3005e5de6e
2 changed files with 0 additions and 3 deletions

View File

@ -88,7 +88,6 @@ class CityGml:
lod = 2
surfaces = CityGmlLod2(o).surfaces
elif 'consistsOfBuildingPart' in o['Building']:
raise NotImplementedError("Building cluster")
'''
if 'lod1Solid' in o['Building']:

View File

@ -43,8 +43,6 @@ class CityGmlLod2(CityGmlBase):
p = Polygon(sp)
surface = Surface(p,p, surface_type=GeometryHelper.gml_surface_to_libs(surface_type))
surfaces.append(surface)
for p in o["Building"]["consistsOfBuildingPart"]:
raise NotImplementedError
return surfaces