Commit 839a34de authored by Eric Duminil's avatar Eric Duminil
Browse files

Moving every required file to RegionChooser folder

parent 274e08cb
Showing with 635809 additions and 38 deletions
+635809 -38
<?xml version="1.0" encoding="ASCII"?>
<anttasks:AntTask xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:anttasks="http://org.eclipse.fx.ide.jdt/1.0" buildDirectory="${project}/build">
<deploy>
<application name="RegionChooser"/>
<info/>
</deploy>
<signjar/>
</anttasks:AntTask>
<?xml version="1.0" encoding="ASCII"?>
<anttasks:AntTask xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:anttasks="http://org.eclipse.fx.ide.jdt/1.0" buildDirectory="${project}/build">
<deploy>
<application name="RegionChooser"/>
<info/>
</deploy>
<signjar/>
</anttasks:AntTask>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!--
This script performs the common tasks required for compiling and deploying one or more Eclipse projects given
in ${projects} into one jar file as well as corresponding javadoc and sources zip files. ${target.path} must hold the
path and base-name (without extension) of the generated artifacts relative to the deployment directory given by
${deploy.dir.path}.
Thus, a correct usage from an ant script located in, say, ProjectOne would look like this:
<project default="deploy" basedir="..">
<property name="deploy.dir.path" location="${user.home}/Desktop/FooBar" />
<property name="target.path" value="lib/artefact" />
<property name="projects" value="ProjectOne,ProjectTwo,ProjectThree" />
<import file="deploy-common.xml" />
... specific tasks follow here ...
This script expects Java sources, properties files, fxml files and other resources to reside in the "src" directory of
each project, while all required jar libraries, if any, are expected directly under directory "lib" in each project.
Note that a version string has to be provided in "simstadt.version" below.
Note also that this script requires Ant version 1.9.4 or higher.
-->
<project name="CommonDeploy" xmlns:if="ant:if" xmlns:unless="ant:unless">
<property name="simstadt.version" value="0.9.1-SNAPSHOT" />
<property name="stage.dir" location="tmpdeploy/${ant.project.name}" />
<property name="src.dir" location="${stage.dir}/src" />
<dirname property="simstadt.src.dir" file="${ant.file.CommonDeploy}" />
<property name="test.dir" location="${stage.dir}/test" />
<property name="doc.dir" location="${stage.dir}/doc" />
<property name="classes.dir" location="${stage.dir}/classes" />
<property name="testclasses.dir" location="${stage.dir}/testclasses" />
<property name="report.dir" location="SimStadtTestReports" />
<property name="reports.dir" location="${report.dir}/${target.path}" />
<property name="deploy.dir.path" location="${user.home}/Desktop/SimStadt" />
<property name="deploy.dir" location="${deploy.dir.path} ${simstadt.version}" />
<property name="lib.dir" location="${deploy.dir}/lib" />
<property name="workflows.dir" location="${deploy.dir}/workflows" />
<property name="target.lib.prefix" location="${deploy.dir}/${target.path}-${simstadt.version}" /> <!-- How to define and use specific lib version? -->
<!-- <property name="doNotTest" value="true"/> Uncomment in order to disable tests, reports and coverage reports -->
<taskdef uri="antlib:org.jacoco.ant" resource="org/jacoco/ant/antlib.xml">
<classpath path="SimStadt/lib/test/jacocoant.jar" />
</taskdef>
<path id="classpath">
<fileset dir="${lib.dir}">
<include name="*.jar" />
</fileset>
<fileset dir="${workflows.dir}/">
<include name="*.jar" />
</fileset>
<pathelement path="${classes.dir}" />
<pathelement path="${testclasses.dir}" />
<pathelement path="${simstadt.src.dir}/lib/test/junit.jar" />
</path>
<target name="print-classpath">
<property name="myclasspath" refid="classpath" />
<echo message="Classpath = ${myclasspath}" />
</target>
<target name="delete-deploy-dir">
<delete dir="${deploy.dir}" />
</target>
<target name="setup">
<fail message="Ant 1.9.4 or higher required">
<condition>
<not>
<antversion atleast="1.9.4" />
</not>
</condition>
</fail>
<!-- setup stage dir -->
<delete dir="${stage.dir}" />
<mkdir dir="${stage.dir}" />
<mkdir dir="${workflows.dir}" />
<!-- copy jar libraries -->
<mkdir dir="${lib.dir}" />
<copy todir="${deploy.dir}">
<multirootfileset id="project.lib.dirs" basedirs="${projects}">
<patternset>
<include name="**/lib/*.jar" />
<exclude name="**/lib/*-javadoc.jar" />
<exclude name="**/lib/*-sources.jar" />
</patternset>
</multirootfileset>
</copy>
<!-- copy project sources (without tests) -->
<mkdir dir="${src.dir}" />
<copy toDir="${stage.dir}">
<multirootfileset basedirs="${projects}">
<include name="**/src/**/*" />
</multirootfileset>
</copy>
<!-- copy project tests -->
<mkdir dir="${test.dir}" />
<copy toDir="${stage.dir}">
<multirootfileset basedirs="${projects}">
<include name="**/test/**/*" />
</multirootfileset>
</copy>
</target>
<target name="compile" depends="setup">
<mkdir dir="${classes.dir}" />
<mkdir dir="${testclasses.dir}" />
<javac includeantruntime="false" source="1.8" target="1.8" debug="true" srcdir="${src.dir}" destdir="${classes.dir}" classpathref="classpath" encoding="UTF-8" />
<javac includeantruntime="false" source="1.8" target="1.8" debug="true" srcdir="${test.dir}" destdir="${testclasses.dir}" classpathref="classpath" encoding="UTF-8" />
</target>
<target name="deploy-common" depends="compile, git.revision">
<!-- copy all non Java resource files -->
<copy todir="${classes.dir}">
<fileset dir="${src.dir}">
<exclude name="**/*.java" />
</fileset>
</copy>
<!-- copy all non Java resource test files -->
<copy todir="${testclasses.dir}">
<fileset dir="${test.dir}">
<exclude name="**/*.java" />
</fileset>
</copy>
<!-- create jar with classes and resources from all modules -->
<jar destfile="${target.lib.prefix}.jar">
<fileset dir="${classes.dir}" />
<manifest>
<attribute name="Implementation-Title" value="${ant.project.name}" />
<attribute name="Implementation-Version" value="${simstadt.version} (${git.branch}, rev. ${git.revision}, ${git.date})" />
<attribute name="Implementation-URL" value="http://simstadt.hft-stuttgart.de/" />
</manifest>
</jar>
<!-- create javadoc, without error messages and at most 1 warning. -->
<javadoc access="protected" destdir="${doc.dir}" charset="UTF-8" additionalparam="-Xdoclint:none -Xmaxwarns 1" unless:set="doNotDoc">
<sourcepath path="${src.dir}" />
<classpath refid="classpath" />
</javadoc>
<!-- zip javadoc and sources -->
<zip destfile="${target.lib.prefix}-javadoc.zip" basedir="${doc.dir}" unless:set="doNotDoc"/>
<zip destfile="${target.lib.prefix}-sources.zip" basedir="${src.dir}" unless:set="doNotDoc"/>
</target>
<!-- Defines classpath for junit tests -->
<target name="test-common" depends="deploy-common">
<delete dir="${reports.dir}" />
<mkdir dir="${reports.dir}" />
<path id="test-classpath">
<fileset dir="${lib.dir}">
<include name="*.jar" />
</fileset>
<fileset dir="${workflows.dir}">
<include name="*.jar" />
</fileset>
<pathelement path="${java.class.path}" />
<pathelement path="${classes.dir}" />
<pathelement path="${testclasses.dir}" />
<pathelement path="${simstadt.src.dir}/lib/test/junit.jar" />
<pathelement path="${simstadt.src.dir}/lib/test/hamcrest-core-1.3.jar" />
</path>
</target>
<!-- Extract date and hash for the last GIT commit in master. Useful for manifest and deployed zip.
Properties are set to YYYY-MM-DD and XXXXX if they cannot be extracted.
-->
<available file=".git" type="dir" property="git.present" />
<target name="git.revision" description="Store git revision in ${repository.version}" if="git.present">
<exec executable="git" outputproperty="git.revision" failifexecutionfails="false" errorproperty="">
<arg value="log" />
<arg value="-n1" />
<arg value="--format=%h" />
</exec>
<exec executable="git" outputproperty="git.date" failifexecutionfails="false" errorproperty="">
<arg value="log" />
<arg value="-1" />
<arg value="--format=%cd" />
<arg value="--date=short" />
</exec>
<exec executable="git" outputproperty="git.branch" failifexecutionfails="false" errorproperty="">
<arg value="rev-parse" />
<arg value="--abbrev-ref" />
<arg value="HEAD" />
</exec>
<!-- Set default for git.revision -->
<condition property="git.revision" value="${git.revision}" else="XXXXXX">
<and>
<isset property="git.revision" />
<length string="${git.revision}" trim="yes" length="0" when="greater" />
</and>
</condition>
<!-- Set default for git.branch -->
<condition property="git.branch" value="${git.branch}" else="XXXXXX">
<and>
<isset property="git.branch" />
<length string="${git.branch}" trim="yes" length="0" when="greater" />
</and>
</condition>
<!-- Set default for git.date -->
<condition property="git.date" value="${git.date}" else="YYYY-MM-DD">
<and>
<isset property="git.date" />
<length string="${git.date}" trim="yes" length="0" when="greater" />
</and>
</condition>
<loadresource property="git.YYYYMMDD">
<propertyresource name="git.date" />
<filterchain>
<tokenfilter>
<filetokenizer />
<replacestring from="-" to="" />
</tokenfilter>
</filterchain>
</loadresource>
</target>
</project>
......@@ -11,7 +11,7 @@ Before executing check that all required modules/projects are enumerated in pro
</description>
<property name="target.path" value="lib/region-chooser" />
<property name="projects" value="RegionChooser" />
<import file="../SimStadt/deploy-common.xml" />
<import file="deploy-common.xml" />
<target name="deploy" depends="unit-test">
<echo file="${deploy.dir}/RegionChooser.bat">
java -classpath lib/* -Xms512m -Xmx2g -Djava.util.logging.config.file=logging.properties eu.simstadt.regionchooser.RegionChooserFX&#13;
......@@ -28,20 +28,18 @@ java -classpath lib/* -Xms512m -Xmx2g -Djava.util.logging.config.file=logging.pr
</target>
<target name="unit-test" depends="test-common" unless="doNotTest">
<jacoco:coverage destfile="${reports.dir}/${ant.project.name}.exec" xmlns:jacoco="antlib:org.jacoco.ant">
<junit printsummary="yes" haltonfailure="yes" fork="true">
<junit printsummary="yes" haltonfailure="yes" fork="true">
<classpath refid="test-classpath" />
<formatter type="xml" usefile="true" />
<formatter type="plain" usefile="true" />
<test name="eu.simstadt.geo.fast_xml_parser.CitygmlParserTests" todir="${reports.dir}" />
<test name="eu.simstadt.geo.fast_xml_parser.ConvexHullCalculatorTests" todir="${reports.dir}" />
<classpath refid="test-classpath" />
<formatter type="xml" usefile="true" />
<formatter type="plain" usefile="true" />
<test name="eu.simstadt.geo.fast_xml_parser.CitygmlParserTests" todir="${reports.dir}" />
<test name="eu.simstadt.geo.fast_xml_parser.ConvexHullCalculatorTests" todir="${reports.dir}" />
<!-- RegionExtractor -->
<test name="eu.simstadt.regionchooser.RegionExtractorTests" haltonfailure="no" todir="${reports.dir}" />
<test name="eu.simstadt.regionchooser.RegionExtractorWithDifferentInputTests" haltonfailure="yes" todir="${reports.dir}" />
</junit>
</jacoco:coverage>
<!-- RegionExtractor -->
<test name="eu.simstadt.regionchooser.RegionExtractorTests" haltonfailure="no" todir="${reports.dir}" />
<test name="eu.simstadt.regionchooser.RegionExtractorWithDifferentInputTests" haltonfailure="yes" todir="${reports.dir}" />
</junit>
</target>
</project>
\ No newline at end of file
</project>
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
NaN GiB (NaN%)
View file @ 839a34de
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
......@@ -35,36 +35,36 @@ private void testNoNanInCoordinates(Path citygmlPath)
@Test
public void testExtractCoordsFromStuttgart()
throws NumberFormatException, XPathParseException, NavException, XPathEvalException, IOException {
Path repo = Paths.get("../TestRepository");
Path citygmlPath = repo.resolve("Stuttgart.proj/Stuttgart_LOD0_LOD1_buildings_and_trees.gml");
Path repo = Paths.get("../RegionChooser/test/testdata");
Path citygmlPath = repo.resolve("Stuttgart_LOD0_LOD1_buildings_and_trees.gml");
testNoNanInCoordinates(citygmlPath);
}
@Test
public void testExtractCoordsFromGruenbuehl() throws Throwable {
Path repo = Paths.get("../TestRepository");
Path citygmlPath = repo.resolve("Gruenbuehl.proj/20140218_Gruenbuehl_LOD2_1building.gml");
Path repo = Paths.get("../RegionChooser/test/testdata");
Path citygmlPath = repo.resolve("20140218_Gruenbuehl_LOD2_1building.gml");
testNoNanInCoordinates(citygmlPath);
}
@Test
public void testExtractCoordsFromMunich() throws Throwable {
Path repo = Paths.get("../TestRepository");
Path citygmlPath = repo.resolve("Muenchen.proj/Munich_v_1_0_0.gml");
Path repo = Paths.get("../RegionChooser/test/testdata");
Path citygmlPath = repo.resolve("Munich_v_1_0_0.gml");
testNoNanInCoordinates(citygmlPath);
}
@Test
public void testExtractCoordsFromNYC() throws Throwable {
Path repo = Paths.get("../TestRepository");
Path citygmlPath = repo.resolve("NewYork.proj/ManhattanSmall.gml");
Path repo = Paths.get("../RegionChooser/test/testdata");
Path citygmlPath = repo.resolve("ManhattanSmall.gml");
testNoNanInCoordinates(citygmlPath);
}
@Test
public void testExtractNoCoordsFromEmptyBuilding() throws Throwable {
Path repo = Paths.get("../TestRepository");
Path citygmlPath = repo.resolve("Ensource.proj/Stöckach_empty_buildings.gml");
Path repo = Paths.get("../RegionChooser/test/testdata");
Path citygmlPath = repo.resolve("Stöckach_empty_buildings.gml");
CityGmlIterator buildingXmlNodes = new CityGmlIterator(citygmlPath);
int counter = 0;
for (BuildingXmlNode buildingXmlNode : buildingXmlNodes) {
......
......@@ -16,11 +16,11 @@
public class ConvexHullCalculatorTests
{
private static final GeometryFactory gf = new GeometryFactory();
private static final Path repository = Paths.get("../TestRepository");
private static final Path repository = Paths.get("../RegionChooser/test/testdata");
@Test
public void testExtractConvexHullFromOneBuilding() throws Throwable {
Path citygmlPath = repository.resolve("Gruenbuehl.proj/20140218_Gruenbuehl_LOD2_1building.gml");
Path citygmlPath = repository.resolve("20140218_Gruenbuehl_LOD2_1building.gml");
Geometry hull = ConvexHullCalculator.calculateFromCityGML(citygmlPath);
assertEquals(hull.getCoordinates().length, 4 + 1); // Convex hull of a building should be a closed rectangle
Point someBuildingPoint = gf.createPoint(new Coordinate(9.216845, 48.878196)); // WGS84
......@@ -29,7 +29,7 @@ public void testExtractConvexHullFromOneBuilding() throws Throwable {
@Test
public void testExtractConvexHullFromOneSmallRegion() throws Throwable {
Path citygmlPath = repository.resolve("Gruenbuehl.proj/Gruenbuehl_LOD2_ALKIS_1010.gml");
Path citygmlPath = repository.resolve("Gruenbuehl_LOD2_ALKIS_1010.gml");
Geometry hull = ConvexHullCalculator.calculateFromCityGML(citygmlPath);
assertTrue(hull.getCoordinates().length > 4); // Convex hull should have at least 4 corners
// Point somewhereBetweenBuildings = gf.createPoint(new Coordinate(3515883.6668538367, 5415843.300640578)); // Original coordinates, GSK3
......@@ -39,7 +39,7 @@ public void testExtractConvexHullFromOneSmallRegion() throws Throwable {
@Test
public void testExtractConvexHullFromStoeckachNoBuildingPart() throws Throwable {
Path citygmlPath = repository.resolve("Ensource.proj/Stöckach_überarbeitete GML-NoBuildingPart.gml");
Path citygmlPath = repository.resolve("Stöckach_überarbeitete GML-NoBuildingPart.gml");
Geometry hull = ConvexHullCalculator.calculateFromCityGML(citygmlPath);
assertTrue(hull.getCoordinates().length > 4); // Convex hull should have at least 4 corners
Point somewhereBetweenBuildings = gf.createPoint(new Coordinate(9.195212, 48.789062)); // WGS84
......@@ -48,7 +48,7 @@ public void testExtractConvexHullFromStoeckachNoBuildingPart() throws Throwable
@Test
public void testExtractConvexHullFromEveryCitygmlInRepository() throws Throwable {
int minHullCount = 70;
int minHullCount = 7;
//NOTE: Should cache be deleted first?
// Files.walk(repository.resolve(".cache/hulls"), 1).forEach(System.out::println);
long gmlCount = GeoUtils.everyCityGML(repository).count();
......
<?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.
<?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