Commit 79c85e26 authored by Eric Duminil's avatar Eric Duminil
Browse files

Merge branch 'standalone_regionchooser' into refactor

parents e875874a 3cc00bf0
...@@ -20,17 +20,17 @@ ...@@ -20,17 +20,17 @@
public class RegionExtractorWithDifferentInputTests public class RegionExtractorWithDifferentInputTests
{ {
WKTReader reader = new WKTReader(); private static final WKTReader WKT_READER = new WKTReader();
WKTWriter writer = new WKTWriter(); private static final WKTWriter WKT_WRITER = new WKTWriter();
private static final Path TEST_REPOSITORY = Paths.get("../RegionChooser/test/testdata/");
//NOTE: This test can be adapted to download a region which is too large for the server. Here with local coordinates //NOTE: This test can be adapted to download a region which is too large for the server. Here with local coordinates
@Test @Test
public void testExtractRegionWithLocalCRS() throws NumberFormatException, XPathParseException, NavException, public void testExtractRegionWithLocalCRS()
XPathEvalException, ParseException, IOException { throws IOException, XPathParseException, NavException, XPathEvalException, ParseException {
String citygml = "DA13_DA14_3D_Buildings_Port_Morris.gml"; String citygml = "DA13_DA14_3D_Buildings_Port_Morris.gml";
String projectName = "NewYork"; String projectName = "NewYork";
Path repo = Paths.get("../TestRepository"); Path project = TEST_REPOSITORY.resolve(projectName + ".proj");
Path project = repo.resolve(projectName + ".proj");
String wktPolygon = "POLYGON ((307475.5578835043 70804.63316765877, 307236.984333501 70360.67156492763, 307650.1509142817 70061.64902227426, 307964.8070375744 70462.43265268637, 307627.75063951925 70710.99549733262, 307475.5578835043 70804.63316765877))"; String wktPolygon = "POLYGON ((307475.5578835043 70804.63316765877, 307236.984333501 70360.67156492763, 307650.1509142817 70061.64902227426, 307964.8070375744 70462.43265268637, 307627.75063951925 70710.99549733262, 307475.5578835043 70804.63316765877))";
Path citygmlPath = project.resolve(citygml); Path citygmlPath = project.resolve(citygml);
...@@ -42,18 +42,17 @@ public void testExtractRegionWithLocalCRS() throws NumberFormatException, XPathP ...@@ -42,18 +42,17 @@ public void testExtractRegionWithLocalCRS() throws NumberFormatException, XPathP
//NOTE: This test can be adapted to download a region which is too large for the server. Here with WGS84 coordinates //NOTE: This test can be adapted to download a region which is too large for the server. Here with WGS84 coordinates
@Test @Test
public void testExtractRegionWithWGS84() throws ParseException, IOException, NumberFormatException, public void testExtractRegionWithWGS84()
XPathParseException, NavException, XPathEvalException { throws ParseException, IOException, XPathParseException, NavException, XPathEvalException {
String wgs84WktPolygon = "POLYGON((-73.91140940026597 40.804246732157196,-73.91424181298568 40.80025100302325,-73.90934946374252 40.79755456207104,-73.90561582879378 40.80116062104605,-73.90960695580794 40.80340212653638,-73.91140940026597 40.804246732157196))"; String wgs84WktPolygon = "POLYGON((-73.91140940026597 40.804246732157196,-73.91424181298568 40.80025100302325,-73.90934946374252 40.79755456207104,-73.90561582879378 40.80116062104605,-73.90960695580794 40.80340212653638,-73.91140940026597 40.804246732157196))";
String citygml = "DA13_DA14_3D_Buildings_Port_Morris.gml"; String citygml = "DA13_DA14_3D_Buildings_Port_Morris.gml";
String projectName = "NewYork"; String projectName = "NewYork";
Path repo = Paths.get("../TestRepository"); Path project = TEST_REPOSITORY.resolve(projectName + ".proj");
Path project = repo.resolve(projectName + ".proj");
Path citygmlPath = project.resolve(citygml); Path citygmlPath = project.resolve(citygml);
Polygon wgs84Polygon = (Polygon) reader.read(wgs84WktPolygon); Polygon wgs84Polygon = (Polygon) WKT_READER.read(wgs84WktPolygon);
CoordinateReferenceSystem localCRS = GeoUtils.crsFromCityGMLHeader(citygmlPath); CoordinateReferenceSystem localCRS = GeoUtils.crsFromCityGMLHeader(citygmlPath);
String localWktPolygon = writer.write(GeoUtils.changePolygonCRS(wgs84Polygon, GeoUtils.WGS84, localCRS)); String localWktPolygon = WKT_WRITER.write(GeoUtils.changePolygonCRS(wgs84Polygon, GeoUtils.WGS84, localCRS));
StringBuilder sb = RegionExtractor.selectRegionDirectlyFromCityGML(citygmlPath, localWktPolygon, StringBuilder sb = RegionExtractor.selectRegionDirectlyFromCityGML(citygmlPath, localWktPolygon,
localCRS.getName()); localCRS.getName());
assertTrue("One weird shaped roof should be inside the region", assertTrue("One weird shaped roof should be inside the region",
...@@ -62,8 +61,8 @@ public void testExtractRegionWithWGS84() throws ParseException, IOException, Num ...@@ -62,8 +61,8 @@ public void testExtractRegionWithWGS84() throws ParseException, IOException, Num
//NOTE: This test can be adapted to download a region which is too large for the server. Here with old coordinates from WebSimstadt //NOTE: This test can be adapted to download a region which is too large for the server. Here with old coordinates from WebSimstadt
@Test @Test
public void testExtractRegionWithOldCoordinates() throws ParseException, IOException, NumberFormatException, public void testExtractRegionWithOldCoordinates()
XPathParseException, NavException, XPathEvalException { throws ParseException, IOException, XPathParseException, NavException, XPathEvalException {
String oldFormatPolygon = "(40.81173171854368,-73.93268437431763)\r\n" + String oldFormatPolygon = "(40.81173171854368,-73.93268437431763)\r\n" +
"(40.81069231965162,-73.93068165999941)\r\n" + "(40.81069231965162,-73.93068165999941)\r\n" +
"(40.809176499753505,-73.92907948540162)\r\n" + "(40.809176499753505,-73.92907948540162)\r\n" +
...@@ -96,13 +95,12 @@ public void testExtractRegionWithOldCoordinates() throws ParseException, IOExcep ...@@ -96,13 +95,12 @@ public void testExtractRegionWithOldCoordinates() throws ParseException, IOExcep
}).collect(Collectors.joining(",")) + "))"; }).collect(Collectors.joining(",")) + "))";
String citygml = "DA13_DA14_3D_Buildings_Port_Morris.gml"; String citygml = "DA13_DA14_3D_Buildings_Port_Morris.gml";
String projectName = "NewYork"; String projectName = "NewYork";
Path repo = Paths.get("../TestRepository"); Path project = TEST_REPOSITORY.resolve(projectName + ".proj");
Path project = repo.resolve(projectName + ".proj");
Path citygmlPath = project.resolve(citygml); Path citygmlPath = project.resolve(citygml);
Polygon wgs84Polygon = (Polygon) reader.read(wgs84WktPolygon); Polygon wgs84Polygon = (Polygon) WKT_READER.read(wgs84WktPolygon);
CoordinateReferenceSystem localCRS = GeoUtils.crsFromCityGMLHeader(citygmlPath); CoordinateReferenceSystem localCRS = GeoUtils.crsFromCityGMLHeader(citygmlPath);
String localWktPolygon = writer.write(GeoUtils.changePolygonCRS(wgs84Polygon, GeoUtils.WGS84, localCRS)); String localWktPolygon = WKT_WRITER.write(GeoUtils.changePolygonCRS(wgs84Polygon, GeoUtils.WGS84, localCRS));
StringBuilder sb = RegionExtractor.selectRegionDirectlyFromCityGML(citygmlPath, localWktPolygon, StringBuilder sb = RegionExtractor.selectRegionDirectlyFromCityGML(citygmlPath, localWktPolygon,
localCRS.getName()); localCRS.getName());
......
.cache/
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
<?xml version="1.0" encoding="windows-1252" standalone="yes"?>
<core:CityModel xmlns:core="http://www.opengis.net/citygml/1.0" xmlns:tran="http://www.opengis.net/citygml/transportation/1.0" xmlns:gml="http://www.opengis.net/gml" xmlns:wtr="http://www.opengis.net/citygml/waterbody/1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:grp="http://www.opengis.net/citygml/cityobjectgroup/1.0" xmlns:luse="http://www.opengis.net/citygml/landuse/1.0" xmlns:frn="http://www.opengis.net/citygml/cityfurniture/1.0" xmlns:app="http://www.opengis.net/citygml/appearance/1.0" xmlns:tex="http://www.opengis.net/citygml/texturedsurface/1.0" xmlns:xal="urn:oasis:names:tc:ciq:xsdschema:xAL:2.0" xmlns:bldg="http://www.opengis.net/citygml/building/1.0" xmlns:dem="http://www.opengis.net/citygml/relief/1.0" xmlns:veg="http://www.opengis.net/citygml/vegetation/1.0" xmlns:gen="http://www.opengis.net/citygml/generics/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/citygml/landuse/1.0 http://schemas.opengis.net/citygml/landuse/1.0/landUse.xsd http://www.opengis.net/citygml/cityfurniture/1.0 http://schemas.opengis.net/citygml/cityfurniture/1.0/cityFurniture.xsd http://www.opengis.net/citygml/appearance/1.0 http://schemas.opengis.net/citygml/appearance/1.0/appearance.xsd http://www.opengis.net/citygml/texturedsurface/1.0 http://schemas.opengis.net/citygml/texturedsurface/1.0/texturedSurface.xsd http://www.opengis.net/citygml/transportation/1.0 http://schemas.opengis.net/citygml/transportation/1.0/transportation.xsd http://www.opengis.net/citygml/waterbody/1.0 http://schemas.opengis.net/citygml/waterbody/1.0/waterBody.xsd http://www.opengis.net/citygml/building/1.0 http://schemas.opengis.net/citygml/building/1.0/building.xsd http://www.opengis.net/citygml/relief/1.0 http://schemas.opengis.net/citygml/relief/1.0/relief.xsd http://www.opengis.net/citygml/vegetation/1.0 http://schemas.opengis.net/citygml/vegetation/1.0/vegetation.xsd http://www.opengis.net/citygml/generics/1.0 http://schemas.opengis.net/citygml/generics/1.0/generics.xsd http://www.opengis.net/citygml/cityobjectgroup/1.0 http://schemas.opengis.net/citygml/cityobjectgroup/1.0/cityObjectGroup.xsd">
<core:cityObjectMember>
<bldg:Building gml:id="DEBW_LOD2_1003850">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515945.65 5415651.42999787 282.84</gml:lowerCorner>
<gml:upperCorner>3516006.55000071 5415668.0100002 297.090006697</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:stringAttribute name="Datenquelle Lage">
<gen:value>1000</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="Datenquelle Bodenhoehe">
<gen:value>1100</gen:value>
</gen:stringAttribute>
<gen:doubleAttribute name="Min Gelaendepunkt">
<gen:value>282.841</gen:value>
</gen:doubleAttribute>
<gen:doubleAttribute name="Max Hoehe Firstlinie">
<gen:value>297.09</gen:value>
</gen:doubleAttribute>
<gen:doubleAttribute name="Min Hoehe Trauflinie">
<gen:value>295.35</gen:value>
</gen:doubleAttribute>
<gen:stringAttribute name="Methode">
<gen:value>2000</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="Datenquelle Dachhoehe">
<gen:value>1000</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="StandLK">
<gen:value>20120806</gen:value>
</gen:stringAttribute>
<bldg:function>1121</bldg:function>
<bldg:roofType>2100</bldg:roofType>
<bldg:measuredHeight uom="urn:ogc:def:uom:UCUM::m">14.249</bldg:measuredHeight>
<bldg:lod2Solid>
<gml:Solid gml:id="UUID_afe4b619-3f75-4e46-a6ad-754868300685">
<gml:exterior>
<gml:CompositeSurface gml:id="UUID_7914c78a-3728-486a-b53f-b8a3fcade787">
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_6a72e1a7-740c-4f18-ae07-459d39853316_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_49b63b67-781c-4c93-9dec-cd336b3e15ce_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_1de92d58-13d6-49e3-85c7-b660cbed71e9_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_1810de03-d175-4bf4-9f8b-9c9342e941d9_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_fc57e1bd-befd-43e5-913c-6faab07fafcb_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_cd6855dd-6cf6-4aeb-b82a-6813a352e645_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_2a0d6e14-9e41-417d-87b7-0c8700f4954b_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_de593455-c6d8-4fec-a076-fd1a149a5de4_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_c9580089-f67d-4c99-b867-d1139b788d07_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_fc6e6095-417e-49b9-a066-a724cd7e77b5_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_180872ba-50a8-4c04-995f-0d52cc6a3436_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_1fd4cae1-dade-40b5-a558-d9599056d1d9_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_0e214d90-c159-4acf-afab-262f709e864e_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_107ea0a9-bf01-44c2-8c70-1d363700f96a_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_aaf53d26-f15e-4ec4-90fd-2f8a5a72e51e_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_1ddafe04-6d99-47d6-986d-77cdefe32b57_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_34101323-16e0-48e3-a2fd-3329c8c846e2_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_ab74c955-5be3-4136-9bd2-024f970ed64a_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_53d20778-4789-47ef-a6d8-2f8626edd467_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_4ad9b384-bf5f-44c7-aa71-49642ace5515_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_ea21dafd-e20a-45b0-8298-6cfde13ccce0_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_f42eb573-adea-4609-92b9-9c4b1f1212bb_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_71efa9a5-7130-4f51-8dc5-492411203c2a_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_7a581bff-9830-420b-84b3-c6f669a46605_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_a4f23fd8-259d-4cb0-9835-ed539a457f0d_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_e3dfd4c5-8859-4411-9016-1dd7e0b904e9_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_849b57c2-223a-42d5-883b-12a640bc7308_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_0e4a6e83-44e4-46a8-a2ab-cf81a9b5a658_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_69f3b6a9-e08b-4582-af42-92812f3c0cd2_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_98f536d9-6fe8-47b4-bb28-03fc03e197af_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_0b029028-ae33-43ae-8eed-0a4b668f61ac_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_71bf85f5-b723-4cdc-b831-c295b6688bf5_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_7e76d106-9e26-414e-9ff9-bfe3566ac45e_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_86c0761d-8917-47a5-90a3-4141d10a52e2_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_3de5af06-8538-4c3b-bf0b-e3e175cf5ef7_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_08357ec8-f78e-40d8-8e84-b5d719de0cc5_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_3e8b5a71-5228-4a26-bdee-22d75dcada20_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_2013430a-4986-4308-8187-f35a9043c26e_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_76a0314c-17df-4006-8e57-f3331483bf06_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_299b2e0c-e5b5-4f04-a15a-b47c857005fc_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_78b8efec-55b8-4acb-85af-ea4f8930a35a_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_8e44f846-93f8-465b-b903-c0e2e3de0e91_poly"/>
<gml:surfaceMember xlink:href="#DEBW_LOD2_1003850_5ac67922-bb65-4339-ba04-fcbbc7f99527_poly"/>
</gml:CompositeSurface>
</gml:exterior>
</gml:Solid>
</bldg:lod2Solid>
<bldg:boundedBy>
<bldg:RoofSurface gml:id="DEBW_LOD2_1003850_fc57e1bd-befd-43e5-913c-6faab07fafcb">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515945.65000037 5415651.42999852 296.118415413</gml:lowerCorner>
<gml:upperCorner>3516006.3612805 5415658.43609954 297.090006697</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Dachflaeche">
<gen:value>347.01</gen:value>
</gen:doubleAttribute>
<gen:doubleAttribute name="Dachneigung">
<gen:value>80.444</gen:value>
</gen:doubleAttribute>
<gen:doubleAttribute name="Dachorientierung">
<gen:value>181.178</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_c5027e3c-5507-4b22-ab18-d0ffd6eca6b7">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_fc57e1bd-befd-43e5-913c-6faab07fafcb_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_fc57e1bd-befd-43e5-913c-6faab07fafcb_poly_0">
<gml:posList srsDimension="3">3515960.04999999 5415652.36999967 296.118415413 3515960.30000003 5415652.37000207 296.119282851 3515960.29999998 5415652.40999746 296.126013185 3515970.79999996 5415652.18999624 296.125328473 3515970.80000003 5415652.16000267 296.120282406 3515971.06000004 5415652.16000266 296.121182399 3515971.05999997 5415652.18999741 296.126228654 3515980.51000001 5415651.9900013 296.125279802 3515980.50999995 5415651.95999653 296.120227105 3515981.01999967 5415651.94999787 296.120310386 3515981.03000024 5415651.98000061 296.1253957 3515990.50000003 5415651.79000059 296.12619608 3515990.5 5415651.7699986 296.122827806 3515990.76000004 5415651.76000482 296.122049655 3515990.75999996 5415651.77999782 296.125411652 3516001.22999997 5415651.55999689 296.124623327 3516001.23000004 5415651.5300023 296.119577098 3516001.49999998 5415651.52999972 296.120509618 3516001.52999995 5415652.82999793 296.33942367 3516005.98000001 5415652.74000127 296.339681623 3516005.95000005 5415651.44000306 296.120767571 3516006.25001843 5415651.42999852 296.120119519 3516006.3612805 5415657.1899011 297.089991703 3515945.76929945 5415658.43609954 297.090006697 3515945.65000037 5415652.67000334 296.119067607 3515960.04999999 5415652.36999967 296.118415413</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:RoofSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_cd6855dd-6cf6-4aeb-b82a-6813a352e645">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515945.76929942 5415657.18990093 295.35</gml:lowerCorner>
<gml:upperCorner>3516006.3612805 5415658.43609954 297.090006697</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>105.452</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_66502ee9-bc22-4b3f-a9cd-365738803074">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_cd6855dd-6cf6-4aeb-b82a-6813a352e645_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_cd6855dd-6cf6-4aeb-b82a-6813a352e645_poly_0">
<gml:posList srsDimension="3">3515945.76929942 5415658.43609947 295.35 3515945.76929945 5415658.43609954 297.090006697 3516006.3612805 5415657.1899011 297.089991703 3516006.36127987 5415657.18990093 295.35 3515945.76929942 5415658.43609947 295.35</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_2a0d6e14-9e41-417d-87b7-0c8700f4954b">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3516005.95000005 5415651.42999787 282.84</gml:lowerCorner>
<gml:upperCorner>3516006.25001843 5415651.44000306 296.120767571</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>3.987</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_fd8e6eb8-432d-49b4-a89b-99188f249963">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_2a0d6e14-9e41-417d-87b7-0c8700f4954b_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_2a0d6e14-9e41-417d-87b7-0c8700f4954b_poly_0">
<gml:posList srsDimension="3">3516006.25001365 5415651.42999787 282.84 3516006.25001843 5415651.42999852 296.120119519 3516005.95000005 5415651.44000306 296.120767571 3516005.95000005 5415651.44000185 282.84 3516006.25001365 5415651.42999787 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_53d20778-4789-47ef-a6d8-2f8626edd467">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3516005.95000005 5415651.44000185 282.84</gml:lowerCorner>
<gml:upperCorner>3516005.98000004 5415652.7400015 296.339681623</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>17.412</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_372d4d44-a1b6-4993-8d38-7605c62a5279">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_53d20778-4789-47ef-a6d8-2f8626edd467_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_53d20778-4789-47ef-a6d8-2f8626edd467_poly_0">
<gml:posList srsDimension="3">3516005.95000005 5415651.44000185 282.84 3516005.95000005 5415651.44000306 296.120767571 3516005.98000001 5415652.74000127 296.339681623 3516005.98000004 5415652.7400015 282.84 3516005.95000005 5415651.44000185 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_de593455-c6d8-4fec-a076-fd1a149a5de4">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3516001.52999995 5415652.74000127 282.84</gml:lowerCorner>
<gml:upperCorner>3516005.98000004 5415652.82999849 296.339681623</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>60.085</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_97bdf8c1-292e-4618-981e-6e9f74f7f8f8">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_de593455-c6d8-4fec-a076-fd1a149a5de4_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_de593455-c6d8-4fec-a076-fd1a149a5de4_poly_0">
<gml:posList srsDimension="3">3516005.98000004 5415652.7400015 282.84 3516005.98000001 5415652.74000127 296.339681623 3516001.52999995 5415652.82999793 296.33942367 3516001.52999998 5415652.82999849 282.84 3516005.98000004 5415652.7400015 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_c9580089-f67d-4c99-b867-d1139b788d07">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3516001.49999998 5415651.52999884 282.84</gml:lowerCorner>
<gml:upperCorner>3516001.52999998 5415652.82999849 296.33942367</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>17.412</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_707748b5-1624-4472-a35a-8480d2a6d622">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_c9580089-f67d-4c99-b867-d1139b788d07_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_c9580089-f67d-4c99-b867-d1139b788d07_poly_0">
<gml:posList srsDimension="3">3516001.52999998 5415652.82999849 282.84 3516001.52999995 5415652.82999793 296.33942367 3516001.49999998 5415651.52999972 296.120509618 3516001.49999998 5415651.52999884 282.84 3516001.52999998 5415652.82999849 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_fc6e6095-417e-49b9-a066-a724cd7e77b5">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3516001.23000003 5415651.52999884 282.84</gml:lowerCorner>
<gml:upperCorner>3516001.49999998 5415651.5300023 296.120509618</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>3.586</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_32bd424e-76c6-4e1f-be40-2a1f359ceca4">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_fc6e6095-417e-49b9-a066-a724cd7e77b5_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_fc6e6095-417e-49b9-a066-a724cd7e77b5_poly_0">
<gml:posList srsDimension="3">3516001.49999998 5415651.52999884 282.84 3516001.49999998 5415651.52999972 296.120509618 3516001.23000004 5415651.5300023 296.119577098 3516001.23000003 5415651.53000117 282.84 3516001.49999998 5415651.52999884 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_180872ba-50a8-4c04-995f-0d52cc6a3436">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3516001.22999996 5415651.53000117 282.84</gml:lowerCorner>
<gml:upperCorner>3516001.23000004 5415651.55999958 296.124623327</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>0.398</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_31eb9b9f-0bff-4311-95ea-a24bb3020f84">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_180872ba-50a8-4c04-995f-0d52cc6a3436_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_180872ba-50a8-4c04-995f-0d52cc6a3436_poly_0">
<gml:posList srsDimension="3">3516001.23000003 5415651.53000117 282.84 3516001.23000004 5415651.5300023 296.119577098 3516001.22999997 5415651.55999689 296.124623327 3516001.22999996 5415651.55999958 282.84 3516001.23000003 5415651.53000117 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_1fd4cae1-dade-40b5-a558-d9599056d1d9">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515990.75999996 5415651.55999689 282.84</gml:lowerCorner>
<gml:upperCorner>3516001.22999997 5415651.78000042 296.125411652</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>139.125</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_40095314-7fb7-43f2-a7c7-0d733518c9af">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_1fd4cae1-dade-40b5-a558-d9599056d1d9_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_1fd4cae1-dade-40b5-a558-d9599056d1d9_poly_0">
<gml:posList srsDimension="3">3516001.22999996 5415651.55999958 282.84 3516001.22999997 5415651.55999689 296.124623327 3515990.75999996 5415651.77999782 296.125411652 3515990.76000001 5415651.78000042 282.84 3516001.22999996 5415651.55999958 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_0e214d90-c159-4acf-afab-262f709e864e">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515990.75999996 5415651.7600028 282.84</gml:lowerCorner>
<gml:upperCorner>3515990.76000009 5415651.78000042 296.125411652</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>0.266</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_071d3540-e24b-4e14-b55e-c244770afe1c">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_0e214d90-c159-4acf-afab-262f709e864e_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_0e214d90-c159-4acf-afab-262f709e864e_poly_0">
<gml:posList srsDimension="3">3515990.76000001 5415651.78000042 282.84 3515990.75999996 5415651.77999782 296.125411652 3515990.76000004 5415651.76000482 296.122049655 3515990.76000009 5415651.7600028 282.84 3515990.76000001 5415651.78000042 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_107ea0a9-bf01-44c2-8c70-1d363700f96a">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515990.49999994 5415651.7600028 282.84</gml:lowerCorner>
<gml:upperCorner>3515990.76000009 5415651.7699986 296.122827806</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>3.456</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_2cba74ac-7ba9-4515-8412-8ddee70bfc8f">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_107ea0a9-bf01-44c2-8c70-1d363700f96a_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_107ea0a9-bf01-44c2-8c70-1d363700f96a_poly_0">
<gml:posList srsDimension="3">3515990.76000009 5415651.7600028 282.84 3515990.76000004 5415651.76000482 296.122049655 3515990.5 5415651.7699986 296.122827806 3515990.49999994 5415651.7699972 282.84 3515990.76000009 5415651.7600028 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_aaf53d26-f15e-4ec4-90fd-2f8a5a72e51e">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515990.49999994 5415651.7699972 282.84</gml:lowerCorner>
<gml:upperCorner>3515990.50000003 5415651.79000059 296.12619608</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>0.266</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_6fbaab58-7372-4d54-8e1b-686a475580b2">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_aaf53d26-f15e-4ec4-90fd-2f8a5a72e51e_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_aaf53d26-f15e-4ec4-90fd-2f8a5a72e51e_poly_0">
<gml:posList srsDimension="3">3515990.49999994 5415651.7699972 282.84 3515990.5 5415651.7699986 296.122827806 3515990.50000003 5415651.79000059 296.12619608 3515990.49999998 5415651.79000002 282.84 3515990.49999994 5415651.7699972 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_1ddafe04-6d99-47d6-986d-77cdefe32b57">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515981.02999979 5415651.79000002 282.84</gml:lowerCorner>
<gml:upperCorner>3515990.50000003 5415651.98000061 296.12619608</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>125.842</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_9a2e7c93-858e-4388-a188-e8b6dde9eac3">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_1ddafe04-6d99-47d6-986d-77cdefe32b57_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_1ddafe04-6d99-47d6-986d-77cdefe32b57_poly_0">
<gml:posList srsDimension="3">3515990.49999998 5415651.79000002 282.84 3515990.50000003 5415651.79000059 296.12619608 3515981.03000024 5415651.98000061 296.1253957 3515981.02999979 5415651.98000004 282.84 3515990.49999998 5415651.79000002 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_34101323-16e0-48e3-a2fd-3329c8c846e2">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515981.01999967 5415651.94999787 282.84</gml:lowerCorner>
<gml:upperCorner>3515981.03000024 5415651.98000061 296.1253957</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>0.42</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_0caf4fe1-b557-43a6-a75f-23b5120910f6">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_34101323-16e0-48e3-a2fd-3329c8c846e2_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_34101323-16e0-48e3-a2fd-3329c8c846e2_poly_0">
<gml:posList srsDimension="3">3515981.02999979 5415651.98000004 282.84 3515981.03000024 5415651.98000061 296.1253957 3515981.01999967 5415651.94999787 296.120310386 3515981.02000025 5415651.95000056 282.84 3515981.02999979 5415651.98000004 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_ab74c955-5be3-4136-9bd2-024f970ed64a">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515980.50999995 5415651.94999787 282.84</gml:lowerCorner>
<gml:upperCorner>3515981.02000025 5415651.95999937 296.120310386</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>6.774</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_98963885-68bc-434f-8fba-4539043097fa">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_ab74c955-5be3-4136-9bd2-024f970ed64a_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_ab74c955-5be3-4136-9bd2-024f970ed64a_poly_0">
<gml:posList srsDimension="3">3515981.02000025 5415651.95000056 282.84 3515981.01999967 5415651.94999787 296.120310386 3515980.50999995 5415651.95999653 296.120227105 3515980.50999998 5415651.95999937 282.84 3515981.02000025 5415651.95000056 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_4ad9b384-bf5f-44c7-aa71-49642ace5515">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515980.50999995 5415651.95999653 282.84</gml:lowerCorner>
<gml:upperCorner>3515980.51000004 5415651.99000175 296.125279802</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>0.399</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_8f7b95b9-104f-4a37-9a69-068ed2ba8864">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_4ad9b384-bf5f-44c7-aa71-49642ace5515_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_4ad9b384-bf5f-44c7-aa71-49642ace5515_poly_0">
<gml:posList srsDimension="3">3515980.50999998 5415651.95999937 282.84 3515980.50999995 5415651.95999653 296.120227105 3515980.51000001 5415651.9900013 296.125279802 3515980.51000004 5415651.99000175 282.84 3515980.50999998 5415651.95999937 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_ea21dafd-e20a-45b0-8298-6cfde13ccce0">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515971.05999995 5415651.9900013 282.84</gml:lowerCorner>
<gml:upperCorner>3515980.51000004 5415652.18999825 296.126228654</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>125.578</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_08022737-c667-4304-ab47-4ea53d94c08e">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_ea21dafd-e20a-45b0-8298-6cfde13ccce0_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_ea21dafd-e20a-45b0-8298-6cfde13ccce0_poly_0">
<gml:posList srsDimension="3">3515980.51000004 5415651.99000175 282.84 3515980.51000001 5415651.9900013 296.125279802 3515971.05999997 5415652.18999741 296.126228654 3515971.05999995 5415652.18999825 282.84 3515980.51000004 5415651.99000175 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_f42eb573-adea-4609-92b9-9c4b1f1212bb">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515971.05999995 5415652.16 282.84</gml:lowerCorner>
<gml:upperCorner>3515971.06000004 5415652.18999825 296.126228654</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>0.398</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_9871cd86-3d8a-413d-9c0c-eff583472dff">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_f42eb573-adea-4609-92b9-9c4b1f1212bb_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_f42eb573-adea-4609-92b9-9c4b1f1212bb_poly_0">
<gml:posList srsDimension="3">3515971.05999995 5415652.18999825 282.84 3515971.05999997 5415652.18999741 296.126228654 3515971.06000004 5415652.16000266 296.121182399 3515971.06000002 5415652.16 282.84 3515971.05999995 5415652.18999825 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_71efa9a5-7130-4f51-8dc5-492411203c2a">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515970.80000003 5415652.16 282.84</gml:lowerCorner>
<gml:upperCorner>3515971.06000004 5415652.16000267 296.121182399</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>3.453</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_9009c30c-9a30-4969-956a-008b401985ce">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_71efa9a5-7130-4f51-8dc5-492411203c2a_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_71efa9a5-7130-4f51-8dc5-492411203c2a_poly_0">
<gml:posList srsDimension="3">3515971.06000002 5415652.16 282.84 3515971.06000004 5415652.16000266 296.121182399 3515970.80000003 5415652.16000267 296.120282406 3515970.80000003 5415652.16 282.84 3515971.06000002 5415652.16 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_7a581bff-9830-420b-84b3-c6f669a46605">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515970.79999996 5415652.16 282.84</gml:lowerCorner>
<gml:upperCorner>3515970.80000003 5415652.18999945 296.125328473</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>0.398</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_c60f5cff-6b6f-4010-9073-03f115930fcd">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_7a581bff-9830-420b-84b3-c6f669a46605_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_7a581bff-9830-420b-84b3-c6f669a46605_poly_0">
<gml:posList srsDimension="3">3515970.80000003 5415652.16 282.84 3515970.80000003 5415652.16000267 296.120282406 3515970.79999996 5415652.18999624 296.125328473 3515970.79999996 5415652.18999945 282.84 3515970.80000003 5415652.16 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_a4f23fd8-259d-4cb0-9835-ed539a457f0d">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515960.29999998 5415652.18999624 282.84</gml:lowerCorner>
<gml:upperCorner>3515970.79999996 5415652.41000055 296.126013185</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>139.53</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_be3fe677-b8e7-4855-93b0-7b07904de746">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_a4f23fd8-259d-4cb0-9835-ed539a457f0d_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_a4f23fd8-259d-4cb0-9835-ed539a457f0d_poly_0">
<gml:posList srsDimension="3">3515970.79999996 5415652.18999945 282.84 3515970.79999996 5415652.18999624 296.125328473 3515960.29999998 5415652.40999746 296.126013185 3515960.29999998 5415652.41000055 282.84 3515970.79999996 5415652.18999945 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_e3dfd4c5-8859-4411-9016-1dd7e0b904e9">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515960.29999998 5415652.37000053 282.84</gml:lowerCorner>
<gml:upperCorner>3515960.30000003 5415652.41000055 296.126013185</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>0.531</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_4906d62a-b6ee-4847-b8a3-3acbb6060c8f">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_e3dfd4c5-8859-4411-9016-1dd7e0b904e9_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_e3dfd4c5-8859-4411-9016-1dd7e0b904e9_poly_0">
<gml:posList srsDimension="3">3515960.29999998 5415652.41000055 282.84 3515960.29999998 5415652.40999746 296.126013185 3515960.30000003 5415652.37000207 296.119282851 3515960.30000003 5415652.37000053 282.84 3515960.29999998 5415652.41000055 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_849b57c2-223a-42d5-883b-12a640bc7308">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515960.04999997 5415652.36999823 282.84</gml:lowerCorner>
<gml:upperCorner>3515960.30000003 5415652.37000207 296.119282851</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>3.32</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_82659663-40c4-41b4-9f12-7dc2add4bdf8">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_849b57c2-223a-42d5-883b-12a640bc7308_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_849b57c2-223a-42d5-883b-12a640bc7308_poly_0">
<gml:posList srsDimension="3">3515960.30000003 5415652.37000053 282.84 3515960.30000003 5415652.37000207 296.119282851 3515960.04999999 5415652.36999967 296.118415413 3515960.04999997 5415652.36999823 282.84 3515960.30000003 5415652.37000053 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_86c0761d-8917-47a5-90a3-4141d10a52e2">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515945.65000011 5415652.36999823 282.84</gml:lowerCorner>
<gml:upperCorner>3515960.04999999 5415652.67000334 296.119067607</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>191.255</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_226abb00-4bbe-4c77-ad2a-1aa2d3031758">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_86c0761d-8917-47a5-90a3-4141d10a52e2_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_86c0761d-8917-47a5-90a3-4141d10a52e2_poly_0">
<gml:posList srsDimension="3">3515960.04999997 5415652.36999823 282.84 3515960.04999999 5415652.36999967 296.118415413 3515945.65000037 5415652.67000334 296.119067607 3515945.65000011 5415652.67000155 282.84 3515960.04999997 5415652.36999823 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_3de5af06-8538-4c3b-bf0b-e3e175cf5ef7">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515945.80000065 5415659.71999995 282.84</gml:lowerCorner>
<gml:upperCorner>3515955.45000249 5415659.91999999 295.35</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>120.747</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_8ac9cab3-c246-4d1b-af68-22d8cbb0b6ed">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_3de5af06-8538-4c3b-bf0b-e3e175cf5ef7_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_3de5af06-8538-4c3b-bf0b-e3e175cf5ef7_poly_0">
<gml:posList srsDimension="3">3515945.80000065 5415659.91999999 282.84 3515945.80000086 5415659.91999998 295.35 3515955.45000249 5415659.71999995 295.35 3515955.45000249 5415659.71999995 282.84 3515945.80000065 5415659.91999999 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_08357ec8-f78e-40d8-8e84-b5d719de0cc5">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515960.5300085 5415661.46999985 282.84</gml:lowerCorner>
<gml:upperCorner>3516001.44000767 5415662.30999983 295.35</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>511.892</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_298b2d30-8be4-46ec-b493-e1c806787655">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_08357ec8-f78e-40d8-8e84-b5d719de0cc5_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_08357ec8-f78e-40d8-8e84-b5d719de0cc5_poly_0">
<gml:posList srsDimension="3">3515960.5300085 5415662.30999983 282.84 3515960.5300085 5415662.30999983 295.35 3516001.44000767 5415661.46999985 295.35 3516001.44000767 5415661.46999985 282.84 3515960.5300085 5415662.30999983 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_0e4a6e83-44e4-46a8-a2ab-cf81a9b5a658">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515955.60998858 5415668.01 282.84</gml:lowerCorner>
<gml:upperCorner>3515955.88 5415668.0100002 295.35</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>3.378</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_df8f97a5-58a2-4ca9-9b0f-62670deae307">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_0e4a6e83-44e4-46a8-a2ab-cf81a9b5a658_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_0e4a6e83-44e4-46a8-a2ab-cf81a9b5a658_poly_0">
<gml:posList srsDimension="3">3515955.60998858 5415668.0100002 282.84 3515955.60998858 5415668.0100002 295.35 3515955.88 5415668.01 295.35 3515955.88 5415668.01 282.84 3515955.60998858 5415668.0100002 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_69f3b6a9-e08b-4582-af42-92812f3c0cd2">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515955.88 5415667.94 282.84</gml:lowerCorner>
<gml:upperCorner>3515955.88 5415668.01 295.35</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>0.876</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_a0f83f83-4a64-4a9b-9160-e0c0eaa6a43b">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_69f3b6a9-e08b-4582-af42-92812f3c0cd2_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_69f3b6a9-e08b-4582-af42-92812f3c0cd2_poly_0">
<gml:posList srsDimension="3">3515955.88 5415668.01 282.84 3515955.88 5415668.01 295.35 3515955.88 5415667.94 295.35 3515955.88 5415667.94 282.84 3515955.88 5415668.01 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_6a72e1a7-740c-4f18-ae07-459d39853316">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515955.88 5415667.84 282.84</gml:lowerCorner>
<gml:upperCorner>3515960.36 5415667.94 295.35</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>56.059</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_92ce7c41-b819-47ec-9b6b-c8b25b5703a2">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_6a72e1a7-740c-4f18-ae07-459d39853316_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_6a72e1a7-740c-4f18-ae07-459d39853316_poly_0">
<gml:posList srsDimension="3">3515955.88 5415667.94 282.84 3515955.88 5415667.94 295.35 3515960.36 5415667.84 295.35 3515960.36 5415667.84 282.84 3515955.88 5415667.94 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_3e8b5a71-5228-4a26-bdee-22d75dcada20">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515960.36 5415667.84 282.84</gml:lowerCorner>
<gml:upperCorner>3515960.36 5415667.91 295.35</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>0.876</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_b040a230-81d7-4ed3-be78-7060e43aa7fd">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_3e8b5a71-5228-4a26-bdee-22d75dcada20_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_3e8b5a71-5228-4a26-bdee-22d75dcada20_poly_0">
<gml:posList srsDimension="3">3515960.36 5415667.84 282.84 3515960.36 5415667.84 295.35 3515960.36 5415667.91 295.35 3515960.36 5415667.91 282.84 3515960.36 5415667.84 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_78b8efec-55b8-4acb-85af-ea4f8930a35a">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515960.36 5415667.91 282.84</gml:lowerCorner>
<gml:upperCorner>3515960.64000008 5415667.91 295.35</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>3.503</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_b1af38f4-136b-4b66-b26c-a852273d8bc7">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_78b8efec-55b8-4acb-85af-ea4f8930a35a_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_78b8efec-55b8-4acb-85af-ea4f8930a35a_poly_0">
<gml:posList srsDimension="3">3515960.36 5415667.91 282.84 3515960.36 5415667.91 295.35 3515960.64000008 5415667.91 295.35 3515960.64000008 5415667.91 282.84 3515960.36 5415667.91 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_98f536d9-6fe8-47b4-bb28-03fc03e197af">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3516001.55000007 5415667.06 282.84</gml:lowerCorner>
<gml:upperCorner>3516001.81 5415667.06 295.35</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>3.253</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_166a2092-cc0f-4f10-bc71-5fd230204f9d">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_98f536d9-6fe8-47b4-bb28-03fc03e197af_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_98f536d9-6fe8-47b4-bb28-03fc03e197af_poly_0">
<gml:posList srsDimension="3">3516001.55000007 5415667.06 282.84 3516001.55000007 5415667.06 295.35 3516001.81 5415667.06 295.35 3516001.81 5415667.06 282.84 3516001.55000007 5415667.06 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_49b63b67-781c-4c93-9dec-cd336b3e15ce">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3516001.81 5415666.99 282.84</gml:lowerCorner>
<gml:upperCorner>3516001.81 5415667.06 295.35</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>0.876</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_8a641ec1-3b51-41d0-afc8-aab8a04adee9">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_49b63b67-781c-4c93-9dec-cd336b3e15ce_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_49b63b67-781c-4c93-9dec-cd336b3e15ce_poly_0">
<gml:posList srsDimension="3">3516001.81 5415667.06 282.84 3516001.81 5415667.06 295.35 3516001.81 5415666.99 295.35 3516001.81 5415666.99 282.84 3516001.81 5415667.06 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_2013430a-4986-4308-8187-f35a9043c26e">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3516001.81 5415666.9 282.84</gml:lowerCorner>
<gml:upperCorner>3516006.27 5415666.99 295.35</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>55.806</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_c4d13334-a455-47a1-ac10-7f151f7eb63e">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_2013430a-4986-4308-8187-f35a9043c26e_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_2013430a-4986-4308-8187-f35a9043c26e_poly_0">
<gml:posList srsDimension="3">3516001.81 5415666.99 282.84 3516001.81 5415666.99 295.35 3516006.27 5415666.9 295.35 3516006.27 5415666.9 282.84 3516001.81 5415666.99 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_8e44f846-93f8-465b-b903-c0e2e3de0e91">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3516006.27 5415666.9 282.84</gml:lowerCorner>
<gml:upperCorner>3516006.27 5415666.97000002 295.35</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>0.876</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_abb74a89-f756-45b1-9eb9-571899be95bb">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_8e44f846-93f8-465b-b903-c0e2e3de0e91_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_8e44f846-93f8-465b-b903-c0e2e3de0e91_poly_0">
<gml:posList srsDimension="3">3516006.27 5415666.9 282.84 3516006.27 5415666.9 295.35 3516006.27 5415666.97000002 295.35 3516006.27 5415666.96999999 282.84 3516006.27 5415666.9 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_0b029028-ae33-43ae-8eed-0a4b668f61ac">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3516006.27 5415666.95999997 282.84</gml:lowerCorner>
<gml:upperCorner>3516006.55000071 5415666.97000002 295.35</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>3.505</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_2b227522-1d96-4e2b-8422-777862f923e3">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_0b029028-ae33-43ae-8eed-0a4b668f61ac_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_0b029028-ae33-43ae-8eed-0a4b668f61ac_poly_0">
<gml:posList srsDimension="3">3516006.27 5415666.96999999 282.84 3516006.27 5415666.97000002 295.35 3516006.55000071 5415666.95999997 295.35 3516006.54999623 5415666.9600001 282.84 3516006.27 5415666.96999999 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_1de92d58-13d6-49e3-85c7-b660cbed71e9">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3516006.25001365 5415651.42999787 282.84</gml:lowerCorner>
<gml:upperCorner>3516006.55000071 5415666.9600001 297.089991703</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>201.547</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_11b21292-a38a-4f7a-bf6f-48132e96383e">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_1de92d58-13d6-49e3-85c7-b660cbed71e9_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_1de92d58-13d6-49e3-85c7-b660cbed71e9_poly_0">
<gml:posList srsDimension="3">3516006.25001843 5415651.42999852 296.120119519 3516006.25001365 5415651.42999787 282.84 3516006.36127538 5415657.18990048 282.84 3516006.39998288 5415659.19380033 282.84 3516006.44293024 5415661.41729942 282.84 3516006.54999623 5415666.9600001 282.84 3516006.55000071 5415666.95999997 295.35 3516006.44293473 5415661.41729933 295.35 3516006.39998736 5415659.19380024 295.35 3516006.36127987 5415657.18990093 295.35 3516006.3612805 5415657.1899011 297.089991703 3516006.25001843 5415651.42999852 296.120119519</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:GroundSurface gml:id="DEBW_LOD2_1003850_76a0314c-17df-4006-8e57-f3331483bf06">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515945.65000011 5415651.42999787 282.84</gml:lowerCorner>
<gml:upperCorner>3516006.54999623 5415668.0100002 282.84</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Grundflaeche">
<gen:value>624.886</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_010583bc-af92-4e9c-9fdb-5dcb4c4ede63">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_76a0314c-17df-4006-8e57-f3331483bf06_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_76a0314c-17df-4006-8e57-f3331483bf06_poly_0">
<gml:posList srsDimension="3">3516006.44293024 5415661.41729942 282.84 3516006.39998288 5415659.19380033 282.84 3516006.36127538 5415657.18990048 282.84 3516006.25001365 5415651.42999787 282.84 3516005.95000005 5415651.44000185 282.84 3516005.98000004 5415652.7400015 282.84 3516001.52999998 5415652.82999849 282.84 3516001.49999998 5415651.52999884 282.84 3516001.23000003 5415651.53000117 282.84 3516001.22999996 5415651.55999958 282.84 3515990.76000001 5415651.78000042 282.84 3515990.76000009 5415651.7600028 282.84 3515990.49999994 5415651.7699972 282.84 3515990.49999998 5415651.79000002 282.84 3515981.02999979 5415651.98000004 282.84 3515981.02000025 5415651.95000056 282.84 3515980.50999998 5415651.95999937 282.84 3515980.51000004 5415651.99000175 282.84 3515971.05999995 5415652.18999825 282.84 3515971.06000002 5415652.16 282.84 3515970.80000003 5415652.16 282.84 3515970.79999996 5415652.18999945 282.84 3515960.29999998 5415652.41000055 282.84 3515960.30000003 5415652.37000053 282.84 3515960.04999997 5415652.36999823 282.84 3515945.65000011 5415652.67000155 282.84 3515945.76929922 5415658.43610002 282.84 3515945.80000065 5415659.91999999 282.84 3515955.45000249 5415659.71999995 282.84 3515955.46006841 5415660.24150061 282.84 3515955.50294052 5415662.46319922 282.84 3515955.60998858 5415668.0100002 282.84 3515955.88 5415668.01 282.84 3515955.88 5415667.94 282.84 3515960.36 5415667.84 282.84 3515960.36 5415667.91 282.84 3515960.64000008 5415667.91 282.84 3515960.53099142 5415662.36000017 282.84 3515960.5300085 5415662.30999983 282.84 3516001.44000767 5415661.46999985 282.84 3516001.44099226 5415661.52000015 282.84 3516001.55000007 5415667.06 282.84 3516001.81 5415667.06 282.84 3516001.81 5415666.99 282.84 3516006.27 5415666.9 282.84 3516006.27 5415666.96999999 282.84 3516006.54999623 5415666.9600001 282.84 3516006.44293024 5415661.41729942 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:GroundSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:RoofSurface gml:id="DEBW_LOD2_1003850_71bf85f5-b723-4cdc-b831-c295b6688bf5">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515945.76929942 5415657.18990093 295.35</gml:lowerCorner>
<gml:upperCorner>3516006.55000071 5415668.0100002 295.35</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Dachflaeche">
<gen:value>282.691</gen:value>
</gen:doubleAttribute>
<gen:doubleAttribute name="Dachneigung">
<gen:value>90.0</gen:value>
</gen:doubleAttribute>
<gen:doubleAttribute name="Dachorientierung">
<gen:value>-1.0</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_cbeba390-2cca-4849-beb4-13a2ad63400d">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_71bf85f5-b723-4cdc-b831-c295b6688bf5_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_71bf85f5-b723-4cdc-b831-c295b6688bf5_poly_0">
<gml:posList srsDimension="3">3516006.36127987 5415657.18990093 295.35 3516006.39998736 5415659.19380024 295.35 3516006.44293473 5415661.41729933 295.35 3516006.55000071 5415666.95999997 295.35 3516006.27 5415666.97000002 295.35 3516006.27 5415666.9 295.35 3516001.81 5415666.99 295.35 3516001.81 5415667.06 295.35 3516001.55000007 5415667.06 295.35 3516001.44099226 5415661.52000015 295.35 3516001.44000767 5415661.46999985 295.35 3515960.5300085 5415662.30999983 295.35 3515960.53099142 5415662.36000017 295.35 3515960.64000008 5415667.91 295.35 3515960.36 5415667.91 295.35 3515960.36 5415667.84 295.35 3515955.88 5415667.94 295.35 3515955.88 5415668.01 295.35 3515955.60998858 5415668.0100002 295.35 3515955.50294052 5415662.46319922 295.35 3515955.46006841 5415660.24150061 295.35 3515955.45000249 5415659.71999995 295.35 3515945.80000086 5415659.91999998 295.35 3515945.76929942 5415658.43609947 295.35 3516006.36127987 5415657.18990093 295.35</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:RoofSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_5ac67922-bb65-4339-ba04-fcbbc7f99527">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515955.45000249 5415659.71999995 282.84</gml:lowerCorner>
<gml:upperCorner>3515955.60998858 5415668.0100002 295.35</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>103.727</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_56ce2111-4787-4315-a784-033df2f71605">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_5ac67922-bb65-4339-ba04-fcbbc7f99527_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_5ac67922-bb65-4339-ba04-fcbbc7f99527_poly_0">
<gml:posList srsDimension="3">3515955.45000249 5415659.71999995 295.35 3515955.46006841 5415660.24150061 295.35 3515955.50294052 5415662.46319922 295.35 3515955.60998858 5415668.0100002 295.35 3515955.60998858 5415668.0100002 282.84 3515955.50294052 5415662.46319922 282.84 3515955.46006841 5415660.24150061 282.84 3515955.45000249 5415659.71999995 282.84 3515955.45000249 5415659.71999995 295.35</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_1810de03-d175-4bf4-9f8b-9c9342e941d9">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3516001.44000767 5415661.46999985 282.84</gml:lowerCorner>
<gml:upperCorner>3516001.55000007 5415667.06 295.35</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>69.944</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_7bcdfa33-d51f-4344-bef8-d0a97d0e57d4">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_1810de03-d175-4bf4-9f8b-9c9342e941d9_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_1810de03-d175-4bf4-9f8b-9c9342e941d9_poly_0">
<gml:posList srsDimension="3">3516001.44000767 5415661.46999985 295.35 3516001.44099226 5415661.52000015 295.35 3516001.55000007 5415667.06 295.35 3516001.55000007 5415667.06 282.84 3516001.44099226 5415661.52000015 282.84 3516001.44000767 5415661.46999985 282.84 3516001.44000767 5415661.46999985 295.35</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_299b2e0c-e5b5-4f04-a15a-b47c857005fc">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515960.5300085 5415662.30999983 282.84</gml:lowerCorner>
<gml:upperCorner>3515960.64000008 5415667.91 295.35</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>70.07</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_7de69b49-9ca2-4da4-b8dc-447201cdea43">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_299b2e0c-e5b5-4f04-a15a-b47c857005fc_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_299b2e0c-e5b5-4f04-a15a-b47c857005fc_poly_0">
<gml:posList srsDimension="3">3515960.5300085 5415662.30999983 282.84 3515960.53099142 5415662.36000017 282.84 3515960.64000008 5415667.91 282.84 3515960.64000008 5415667.91 295.35 3515960.53099142 5415662.36000017 295.35 3515960.5300085 5415662.30999983 295.35 3515960.5300085 5415662.30999983 282.84</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="DEBW_LOD2_1003850_7e76d106-9e26-414e-9ff9-bfe3566ac45e">
<gml:boundedBy>
<gml:Envelope srsName="urn:ogc:def:crs,crs:EPSG:6.12:31467,crs:EPSG:6.12:5783" srsDimension="3">
<gml:lowerCorner>3515945.65000011 5415652.67000155 282.84</gml:lowerCorner>
<gml:upperCorner>3515945.80000086 5415659.91999999 297.090006697</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<core:creationDate>2013-07-30</core:creationDate>
<gen:doubleAttribute name="Wandflaeche">
<gen:value>97.952</gen:value>
</gen:doubleAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface gml:id="UUID_301ff7f6-7f20-45e9-b99e-14af320f2341">
<gml:surfaceMember>
<gml:Polygon gml:id="DEBW_LOD2_1003850_7e76d106-9e26-414e-9ff9-bfe3566ac45e_poly">
<gml:exterior>
<gml:LinearRing gml:id="DEBW_LOD2_1003850_7e76d106-9e26-414e-9ff9-bfe3566ac45e_poly_0">
<gml:posList srsDimension="3">3515945.65000037 5415652.67000334 296.119067607 3515945.76929945 5415658.43609954 297.090006697 3515945.76929942 5415658.43609947 295.35 3515945.80000086 5415659.91999998 295.35 3515945.80000065 5415659.91999999 282.84 3515945.76929922 5415658.43610002 282.84 3515945.65000011 5415652.67000155 282.84 3515945.65000037 5415652.67000334 296.119067607</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:address>
<core:Address>
<core:xalAddress>
<xal:AddressDetails>
<xal:Country>
<xal:CountryName>Germany</xal:CountryName>
<xal:Locality Type="Town">
<xal:LocalityName>Ludwigsburg</xal:LocalityName>
<xal:Thoroughfare Type="Street">
<xal:ThoroughfareNumber>22</xal:ThoroughfareNumber>
<xal:ThoroughfareName>Neiestrae</xal:ThoroughfareName>
</xal:Thoroughfare>
</xal:Locality>
</xal:Country>
</xal:AddressDetails>
</core:xalAddress>
</core:Address>
</bldg:address>
</bldg:Building>
</core:cityObjectMember>
</core:CityModel>
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
<?xml version="1.0" encoding="UTF-8"?>
<core:CityModel xmlns:smil20="http://www.w3.org/2001/SMIL20/" xmlns:grp="http://www.opengis.net/citygml/cityobjectgroup/1.0" xmlns:smil20lang="http://www.w3.org/2001/SMIL20/Language" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:base="http://www.citygml.org/citygml/profiles/base/1.0" xmlns:luse="http://www.opengis.net/citygml/landuse/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:frn="http://www.opengis.net/citygml/cityfurniture/1.0" xmlns:dem="http://www.opengis.net/citygml/relief/1.0" xmlns:tran="http://www.opengis.net/citygml/transportation/1.0" xmlns:wtr="http://www.opengis.net/citygml/waterbody/1.0" xmlns:tex="http://www.opengis.net/citygml/texturedsurface/1.0" xmlns:core="http://www.opengis.net/citygml/1.0" xmlns:xAL="urn:oasis:names:tc:ciq:xsdschema:xAL:2.0" xmlns:bldg="http://www.opengis.net/citygml/building/1.0" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:app="http://www.opengis.net/citygml/appearance/1.0" xmlns:veg="http://www.opengis.net/citygml/vegetation/1.0" xmlns:gml="http://www.opengis.net/gml" xmlns:gen="http://www.opengis.net/citygml/generics/1.0">
<cityObjectMember>
<bldg:Building gml:id="gml_ZL7GWAR67EC4S4ILQ40LOJB7Y8NM02D0HAWS">
<gml:name>Bldg_1210018481</gml:name>
<gen:stringAttribute name="DOITT_ID">
<gen:value>294532</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="BIN">
<gen:value>4465953</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="SOURCE_ID">
<gen:value>1210018481</gen:value>
</gen:stringAttribute>
<bldg:boundedBy>
<bldg:RoofSurface gml:id="gml_G73EI5D84XNG6BTW7RBQKARYXFGFBMWRIZET">
<gen:stringAttribute name="DOITT_ID">
<gen:value>294532</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="BIN">
<gen:value>4465953</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="SOURCE_ID">
<gen:value>1210018481</gen:value>
</gen:stringAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface srsName="EPSG:2263" srsDimension="3">
<gml:surfaceMember>
<gml:Polygon>
<gml:exterior>
<gml:LinearRing>
<gml:posList>
1007684.09091516 143034.642786562 24.6757999999973 1007630.56444742 143048.987574145 24.6757999999973 1007629.72324175 143045.848800898 24.6757999999973 1007624.51459074 143026.412159979 24.6757999999973 1007623.83709866 143023.884605974 24.6757999999973 1007677.36356641 143009.539818391 24.6757999999973 1007684.09091516 143034.642786562 24.6757999999973
</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:RoofSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:GroundSurface gml:id="gml_AWDTFCCAUHPYIQ209FIFPFQDY87RB58G6AVL">
<gen:stringAttribute name="DOITT_ID">
<gen:value>294532</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="BIN">
<gen:value>4465953</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="SOURCE_ID">
<gen:value>1210018481</gen:value>
</gen:stringAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface srsName="EPSG:2263" srsDimension="3">
<gml:surfaceMember>
<gml:Polygon>
<gml:exterior>
<gml:LinearRing>
<gml:posList>
1007684.09091516 143034.642786562 6.84230000000389 1007677.36356641 143009.539818391 6.84230000000389 1007623.83709866 143023.884605974 6.84230000000389 1007624.51459074 143026.412159979 6.84230000000389 1007629.72324175 143045.848800898 6.84230000000389 1007630.56444742 143048.987574145 6.84230000000389 1007684.09091516 143034.642786562 6.84230000000389
</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:GroundSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="gml_NSLH7QDQZR6UT6SCR8E5FA4GFU9ZII2I5RMQ">
<gen:stringAttribute name="DOITT_ID">
<gen:value>294532</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="BIN">
<gen:value>4465953</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="SOURCE_ID">
<gen:value>1210018481</gen:value>
</gen:stringAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface srsName="EPSG:2263" srsDimension="3">
<gml:surfaceMember>
<gml:Polygon>
<gml:exterior>
<gml:LinearRing>
<gml:posList>
1007630.56444742 143048.987574145 6.84230000000389 1007630.56444742 143048.987574145 24.6757999999973 1007684.09091516 143034.642786562 24.6757999999973 1007684.09091516 143034.642786562 6.84230000000389 1007630.56444742 143048.987574145 6.84230000000389
</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="gml_4AI8CANHCM8FM5Z760FNXECMROHQZXZCTCHQ">
<gen:stringAttribute name="DOITT_ID">
<gen:value>294532</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="BIN">
<gen:value>4465953</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="SOURCE_ID">
<gen:value>1210018481</gen:value>
</gen:stringAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface srsName="EPSG:2263" srsDimension="3">
<gml:surfaceMember>
<gml:Polygon>
<gml:exterior>
<gml:LinearRing>
<gml:posList>
1007629.72324175 143045.848800898 6.84230000000389 1007629.72324175 143045.848800898 24.6757999999973 1007630.56444742 143048.987574145 24.6757999999973 1007630.56444742 143048.987574145 6.84230000000389 1007629.72324175 143045.848800898 6.84230000000389
</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="gml_0F3FXXE2W4MMT4MEM82Z85RY26SOX5VKYIH0">
<gen:stringAttribute name="DOITT_ID">
<gen:value>294532</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="BIN">
<gen:value>4465953</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="SOURCE_ID">
<gen:value>1210018481</gen:value>
</gen:stringAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface srsName="EPSG:2263" srsDimension="3">
<gml:surfaceMember>
<gml:Polygon>
<gml:exterior>
<gml:LinearRing>
<gml:posList>
1007624.51459074 143026.412159979 6.84230000000389 1007624.51459074 143026.412159979 24.6757999999973 1007629.72324175 143045.848800898 24.6757999999973 1007629.72324175 143045.848800898 6.84230000000389 1007624.51459074 143026.412159979 6.84230000000389
</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="gml_790AAJ0WB474LV0UKSS5YEM0F0E0JCYLXWGM">
<gen:stringAttribute name="DOITT_ID">
<gen:value>294532</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="BIN">
<gen:value>4465953</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="SOURCE_ID">
<gen:value>1210018481</gen:value>
</gen:stringAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface srsName="EPSG:2263" srsDimension="3">
<gml:surfaceMember>
<gml:Polygon>
<gml:exterior>
<gml:LinearRing>
<gml:posList>
1007623.83709866 143023.884605974 6.84230000000389 1007623.83709866 143023.884605974 24.6757999999973 1007624.51459074 143026.412159979 24.6757999999973 1007624.51459074 143026.412159979 6.84230000000389 1007623.83709866 143023.884605974 6.84230000000389
</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="gml_I2ZYF4W88XCCFBAF0LB2X94JF9N8FWGZONMR">
<gen:stringAttribute name="DOITT_ID">
<gen:value>294532</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="BIN">
<gen:value>4465953</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="SOURCE_ID">
<gen:value>1210018481</gen:value>
</gen:stringAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface srsName="EPSG:2263" srsDimension="3">
<gml:surfaceMember>
<gml:Polygon>
<gml:exterior>
<gml:LinearRing>
<gml:posList>
1007677.36356641 143009.539818391 6.84230000000389 1007677.36356641 143009.539818391 24.6757999999973 1007623.83709866 143023.884605974 24.6757999999973 1007623.83709866 143023.884605974 6.84230000000389 1007677.36356641 143009.539818391 6.84230000000389
</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
<bldg:boundedBy>
<bldg:WallSurface gml:id="gml_23Z3SO1RXCUICSULUNZI7PTGRX2MQNY2YSN7">
<gen:stringAttribute name="DOITT_ID">
<gen:value>294532</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="BIN">
<gen:value>4465953</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="SOURCE_ID">
<gen:value>1210018481</gen:value>
</gen:stringAttribute>
<bldg:lod2MultiSurface>
<gml:MultiSurface srsName="EPSG:2263" srsDimension="3">
<gml:surfaceMember>
<gml:Polygon>
<gml:exterior>
<gml:LinearRing>
<gml:posList>
1007684.09091516 143034.642786562 6.84230000000389 1007684.09091516 143034.642786562 24.6757999999973 1007677.36356641 143009.539818391 24.6757999999973 1007677.36356641 143009.539818391 6.84230000000389 1007684.09091516 143034.642786562 6.84230000000389
</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</bldg:lod2MultiSurface>
</bldg:WallSurface>
</bldg:boundedBy>
</bldg:Building>
</cityObjectMember>
</core:CityModel>
<?xml version="1.0" encoding="UTF-8"?>
<core:CityModel xmlns:smil20="http://www.w3.org/2001/SMIL20/" xmlns:grp="http://www.opengis.net/citygml/cityobjectgroup/1.0" xmlns:smil20lang="http://www.w3.org/2001/SMIL20/Language" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:base="http://www.citygml.org/citygml/profiles/base/1.0" xmlns:luse="http://www.opengis.net/citygml/landuse/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:frn="http://www.opengis.net/citygml/cityfurniture/1.0" xmlns:dem="http://www.opengis.net/citygml/relief/1.0" xmlns:tran="http://www.opengis.net/citygml/transportation/1.0" xmlns:wtr="http://www.opengis.net/citygml/waterbody/1.0" xmlns:tex="http://www.opengis.net/citygml/texturedsurface/1.0" xmlns:core="http://www.opengis.net/citygml/1.0" xmlns:xAL="urn:oasis:names:tc:ciq:xsdschema:xAL:2.0" xmlns:bldg="http://www.opengis.net/citygml/building/1.0" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:app="http://www.opengis.net/citygml/appearance/1.0" xmlns:veg="http://www.opengis.net/citygml/vegetation/1.0" xmlns:gml="http://www.opengis.net/gml" xmlns:gen="http://www.opengis.net/citygml/generics/1.0">
</core:CityModel>
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
<?xml version='1.0' encoding='UTF-8'?>
<CityModel xmlns:smil20="http://www.w3.org/2001/SMIL20/" xmlns:wtr="http://www.opengis.net/citygml/waterbody/2.0" xmlns:dem="http://www.opengis.net/citygml/relief/2.0" xmlns:xAL="urn:oasis:names:tc:ciq:xsdschema:xAL:2.0" xmlns:tran="http://www.opengis.net/citygml/transportation/2.0" xmlns:grp="http://www.opengis.net/citygml/cityobjectgroup/2.0" xmlns:gen="http://www.opengis.net/citygml/generics/2.0" xmlns:luse="http://www.opengis.net/citygml/landuse/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tex="http://www.opengis.net/citygml/texturedsurface/2.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:smil20lang="http://www.w3.org/2001/SMIL20/Language" xmlns:frn="http://www.opengis.net/citygml/cityfurniture/2.0" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:bldg="http://www.opengis.net/citygml/building/2.0" xmlns:tun="http://www.opengis.net/citygml/tunnel/2.0" xmlns:gml="http://www.opengis.net/gml" xmlns:bridge="http://www.opengis.net/citygml/bridge/2.0" xmlns:pbase="http://www.opengis.net/citygml/profiles/base/2.0" xmlns:app="http://www.opengis.net/citygml/appearance/2.0" xmlns:veg="http://www.opengis.net/citygml/vegetation/2.0" xmlns="http://www.opengis.net/citygml/2.0" xsi:schemaLocation="http://www.sig3d.org/citygml/2.0/energy/0.5.0/xsd/energy.xsd">
<gml:description>
/stuttgart3d/esdreid_austausch/exporte/daten/stoeckach.gml
</gml:description>
<gml:name>/stuttgart3d/esdreid_austausch/exporte/daten/stoeckach.gml</gml:name>
<gml:boundedBy>
<gml:Envelope srsName="EPSG:31463" srsDimension="3">
<gml:lowerCorner>3514156.19 5405550.89 212.28</gml:lowerCorner>
<gml:upperCorner>3516032.55 5406650.91 300.9</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<cityObjectMember>
<bldg:Building gml:id="DEBW522AA00008229">
<gml:name>08111000_0_085_19580_000_003</gml:name>
<externalReference>
<informationSystem>Aufruf GrundIS</informationSystem>
<externalObject>
<uri>http://grundis/amt62/GrundIS?ak=9&amp;"amp;"lg=19580&amp;"amp;"hn=85</uri>
</externalObject>
</externalReference>
<gen:stringAttribute name="LoD1_datenquelleBodenhoehe">
<gen:value>1000</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="LoD1_datenquelleLage">
<gen:value>1000</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="alkisId">
<gen:value>DEBWL52210005hqH</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="baublockNummer">
<gen:value>145121</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="baublockseitenNummer">
<gen:value>1</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="gebaeudekennzeichen_1">
<gen:value>08111000_0_085_19580_000_003</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="gmlIdALKISLageBezeichnung_1">
<gen:value>DEBWL522100049y5</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="grundflaeche">
<gen:value>5.0</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="statusDesGebaeudes">
<gen:value>1</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="averageStoreyHeight">
<gen:value>3.3</gen:value>
</gen:stringAttribute>
<bldg:function codeSpace="http://www.adv-online.de/codespaces/buildingfunctiontypeADV.xml">1313</bldg:function>
<bldg:storeysBelowGround>0</bldg:storeysBelowGround>
</bldg:Building>
</cityObjectMember>
<cityObjectMember>
<bldg:Building gml:id="DEBW522AA00003102">
<gml:name>08111000_0_011_00080_000_001</gml:name>
<externalReference>
<informationSystem>Aufruf GrundIS</informationSystem>
<externalObject>
<uri>http://grundis/amt62/GrundIS?ak=9&amp;"amp;"lg=00080&amp;"amp;"hn=11</uri>
</externalObject>
</externalReference>
<gen:stringAttribute name="LoD1_datenquelleBodenhoehe">
<gen:value>1000</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="LoD1_datenquelleLage">
<gen:value>1000</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="alkisId">
<gen:value>DEBWL52210005OPX</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="baublockNummer">
<gen:value>145116</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="baublockseitenNummer">
<gen:value>1</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="dachgeschossausbau">
<gen:value>-1000</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="gebaeudekennzeichen_1">
<gen:value>08111000_0_011_00080_000_001</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="geschossflaeche">
<gen:value>18.0</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="gmlIdALKISLageBezeichnung_1">
<gen:value>DEBWL52210005Fzp</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="grundflaeche">
<gen:value>9.0</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="hoeheEFH">
<gen:value>248.03</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="hoeheTrauf">
<gen:value>251.65</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="statusDesGebaeudes">
<gen:value>1</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="umbauterRaum">
<gen:value>51.0</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="averageStoreyHeight">
<gen:value>3.3</gen:value>
</gen:stringAttribute>
<bldg:function codeSpace="http://www.adv-online.de/codespaces/buildingfunctiontypeADV.xml">1010</bldg:function>
<bldg:yearOfConstruction>1979</bldg:yearOfConstruction>
<bldg:roofType codeSpace="http://www.adv-online.de/codespaces/rooftypetypeADV.xml">1000</bldg:roofType>
<gen:storeysAboveGround>1</gen:storeysAboveGround>
<bldg:storeysBelowGround>1</bldg:storeysBelowGround>
</bldg:Building>
</cityObjectMember>
<cityObjectMember>
<bldg:Building gml:id="DEBW522AA0000071a">
<gml:name>08111000_0_010_36920_000_001</gml:name>
<externalReference>
<informationSystem>Aufruf GrundIS</informationSystem>
<externalObject>
<uri>http://grundis/amt62/GrundIS?ak=9&amp;"amp;"lg=36920&amp;"amp;"hn=10</uri>
</externalObject>
</externalReference>
<gen:stringAttribute name="LoD1_datenquelleBodenhoehe">
<gen:value>1000</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="LoD1_datenquelleLage">
<gen:value>1000</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="alkisId">
<gen:value>DEBWL52210006Kh7</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="baublockNummer">
<gen:value>143221</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="baublockseitenNummer">
<gen:value>1</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="dachgeschossausbau">
<gen:value>-1000</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="gebaeudekennzeichen_1">
<gen:value>08111000_0_010_36920_000_001</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="geschossflaeche">
<gen:value>3.0</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="gmlIdALKISLageBezeichnung_1">
<gen:value>DEBWL52210004CB3</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="grundflaeche">
<gen:value>3.0</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="hoeheEFH">
<gen:value>231.83</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="hoeheTrauf">
<gen:value>234.33</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="statusDesGebaeudes">
<gen:value>1</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="umbauterRaum">
<gen:value>8.0</gen:value>
</gen:stringAttribute>
<gen:stringAttribute name="averageStoreyHeight">
<gen:value>3.3</gen:value>
</gen:stringAttribute>
<bldg:function codeSpace="http://www.adv-online.de/codespaces/buildingfunctiontypeADV.xml">1010</bldg:function>
<bldg:yearOfConstruction>1976</bldg:yearOfConstruction>
<bldg:roofType codeSpace="http://www.adv-online.de/codespaces/rooftypetypeADV.xml">1000</bldg:roofType>
<gen:storeysAboveGround>1</gen:storeysAboveGround>
<bldg:storeysBelowGround>0</bldg:storeysBelowGround>
</bldg:Building>
</cityObjectMember>
</CityModel>
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment