202011_HfT_Stuttgart_Campus_LoD3.city.gml 8.39 MB
Newer Older
Egbert Casper's avatar
Egbert Casper committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<!-- ......................................................................................................... -->
<!-- NeqModPlus HfT Stuttgart Campus CityGML 2.0 Model in LoD3                                                 -->
<!-- ......................................................................................................... -->
<!-- Exported with 3DIS GmbH (http://www.3dis.de) CityEditor                                                   -->
<!-- Modified by Egbert Casper cas@citis.consulting Date: $Date: 2020/12/15 13:44:11 $                         -->
<!-- ......................................................................................................... -->
<!-- This model is licensed under the Apache License, Version 2.0.                                             -->
<!-- See https://www.apache.org/licenses/LICENSE-2.0 for more details.                                         -->
<!-- ......................................................................................................... -->
<!-- $Id: 202011_HfT_Stuttgart_Campus_LoD3.city.gml,v 1.2 2020/12/15 13:44:11 cas Exp cas $ -->
<!-- ......................................................................................................... -->
<core:CityModel xmlns:core="http://www.opengis.net/citygml/2.0"
              	xmlns:app="http://www.opengis.net/citygml/appearance/2.0"
              	xmlns:bldg="http://www.opengis.net/citygml/building/2.0"
              	xmlns:frn="http://www.opengis.net/citygml/cityfurniture/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:dem="http://www.opengis.net/citygml/relief/2.0"
              	xmlns:veg="http://www.opengis.net/citygml/vegetation/2.0"
              	xmlns:tex="http://www.opengis.net/citygml/texturedsurface/2.0"
              	xmlns:gml="http://www.opengis.net/gml"
              	xmlns:xal="urn:oasis:names:tc:ciq:xsdschema:xAL:2.0"
              	xmlns:smil20lang="http://www.w3.org/2001/SMIL20/Language"
              	xmlns:smil20="http://www.w3.org/2001/SMIL20/"
              	xmlns:wfs="http://www.opengis.net/wfs"
              	xmlns:xlink="http://www.w3.org/1999/xlink"
              	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
              	xsi:schemaLocation="http://www.opengis.net/citygml/2.0 http://schemas.opengis.net/citygml/2.0/cityGMLBase.xsd http://www.opengis.net/citygml/appearance/2.0 http://schemas.opengis.net/citygml/appearance/2.0/appearance.xsd http://www.opengis.net/citygml/building/2.0 http://schemas.opengis.net/citygml/building/2.0/building.xsd http://www.opengis.net/citygml/cityfurniture/2.0 http://schemas.opengis.net/citygml/cityfurniture/2.0/cityFurniture.xsd http://www.opengis.net/citygml/cityobjectgroup/2.0 http://schemas.opengis.net/citygml/cityobjectgroup/2.0/cityObjectGroup.xsd http://www.opengis.net/citygml/generics/2.0 http://schemas.opengis.net/citygml/generics/2.0/generics.xsd http://www.opengis.net/citygml/landuse/2.0 http://schemas.opengis.net/citygml/landuse/2.0/landUse.xsd http://www.opengis.net/citygml/relief/2.0 http://schemas.opengis.net/citygml/relief/2.0/relief.xsd http://www.opengis.net/citygml/vegetation/2.0 http://schemas.opengis.net/citygml/vegetation/2.0/vegetation.xsd http://www.opengis.net/citygml/texturedsurface/2.0 http://schemas.opengis.net/citygml/texturedsurface/2.0/texturedSurface.xsd ">
		<core:cityObjectMember>
		<bldg:Building gml:id="GML_ae0b09cb-6083-4fd0-963a-e36ea5e9ccf8">
			<gml:description>NeqModPlus Bau 01 CityGML 2.0 Model in LoD3</gml:description>
			<gml:name>NeqModPlus_Bau_01_LoD3</gml:name>
			<gml:boundedBy>
				<gml:Envelope srsName="EPSG:25832" srsDimension="3">
					<gml:lowerCorner>512665.636 5403023.0 257.0</gml:lowerCorner>
					<gml:upperCorner>512739.215 5403100.951 276.45</gml:upperCorner>
				</gml:Envelope>
			</gml:boundedBy>
			<core:creationDate>2020-11-11</core:creationDate>
			<gen:stringAttribute name="Bodenhoehe">
				<gen:value>257.0</gen:value>
			</gen:stringAttribute>
			<gen:stringAttribute name="CreationDate">
				<gen:value>11.11.2020 11:11:11</gen:value>
			</gen:stringAttribute>
			<gen:stringAttribute name="CreationUser">
				<gen:value>CITIS</gen:value>
			</gen:stringAttribute>
			<gen:stringAttribute name="Dachform">
				<gen:value>HipRoof</gen:value>
			</gen:stringAttribute>
			<gen:stringAttribute name="Dachneigung">
				<gen:value>15</gen:value>
			</gen:stringAttribute>
			<gen:stringAttribute name="Dachorientierung">
				<gen:value>0</gen:value>
			</gen:stringAttribute>
			<gen:stringAttribute name="Dachflaeche">
				<gen:value>2509</gen:value>
			</gen:stringAttribute>
			<gen:stringAttribute name="Firsthoehe">
				<gen:value>19.3</gen:value>
			</gen:stringAttribute>
			<gen:stringAttribute name="MittlereTraufHoehe">
				<gen:value>18.0</gen:value>
			</gen:stringAttribute>
			<gen:stringAttribute name="AbsoluteHoehe">
				<gen:value>276.3</gen:value>
			</gen:stringAttribute>
			<gen:stringAttribute name="DatenquelleBodenhoehe">
				<gen:value>1100</gen:value>
			</gen:stringAttribute>
			<gen:stringAttribute name="DatenquelleDachhoehe">
				<gen:value>1000</gen:value>
			</gen:stringAttribute>
			<gen:stringAttribute name="DatenquelleLage">
				<gen:value>1000</gen:value>
			</gen:stringAttribute>
			<gen:stringAttribute name="GebaeudeHoehe">
				<gen:value>19.0</gen:value>
			</gen:stringAttribute>
			<gen:stringAttribute name="Gemeindeschluessel">
				<gen:value>08111000</gen:value>
			</gen:stringAttribute>
			<gen:stringAttribute name="Modified">
				<gen:value>1</gen:value>
			</gen:stringAttribute>
			<gen:stringAttribute name="ALKIS Code">
				<gen:value>31001_3023</gen:value>
			</gen:stringAttribute>
			<bldg:function>3023</bldg:function>
			<bldg:yearOfConstruction>1870</bldg:yearOfConstruction>
			<bldg:roofType>5000</bldg:roofType>
			<bldg:measuredHeight uom="m">19.3</bldg:measuredHeight>
			<bldg:storeysAboveGround>4</bldg:storeysAboveGround>
			<bldg:storeysBelowGround>0</bldg:storeysBelowGround>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Roof SW</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_1f597003-9d58-45e0-8aa7-d2a29c1fac27">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512719.61 5403070.139 276.45
												512717.607 5403061.107 275.047
												512722.223 5403051.643 275.047
												512730.192 5403048.442 276.45
												512719.61 5403070.139 276.45
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Roof SE</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_04de695a-a737-4dbc-bba0-6cf39fb72354">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512697.667 5403053.401 275.056
												512699.818 5403060.486 276.282
												512696.331 5403058.785 276.282
												512696.112 5403052.642 275.056
												512697.667 5403053.401 275.056
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 NW Wing Roof SW</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_49257248-f1d8-4bf8-816f-138a6098f959">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512670.603 5403069.106 275.039
												512673.54 5403074.65 276.45
												512666.816 5403076.871 275.039
												512670.603 5403069.106 275.039
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Roof NW</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_623a988c-4be1-4942-9819-8cd1965cb7bd">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512700.516 5403071.352 275.047
												512719.61 5403070.139 276.45
												512710.159 5403076.377 275.047
												512700.516 5403071.352 275.047
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Roof SW</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_01834c32-7dea-44af-8800-e7698d9ccec7">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512699.818 5403060.486 276.282
												512703.887 5403040.647 275.039
												512710.401 5403038.789 276.45
												512699.818 5403060.486 276.282
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Roof NE</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_55b0c17b-57a8-432e-8987-bb10a3f263af">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512707.828 5403056.337 275.047
												512710.401 5403038.789 276.45
												512712.444 5403046.873 275.047
												512707.828 5403056.337 275.047
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Roof NE</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_f730345f-4597-4823-af6d-0d15d5811085">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512695.773 5403081.077 275.047
												512689.188 5403082.282 276.45
												512700.516 5403071.352 275.047
												512695.773 5403081.077 275.047
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Roof SE</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_20c0f5a4-7f61-4e67-a5b3-80a7f3cea864">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512719.61 5403070.139 276.45
												512726.334 5403067.917 275.039
												512727.988 5403068.724 275.039
												512723.097 5403071.84 276.45
												512719.61 5403070.139 276.45
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 SE Wing Roof SE</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_838821a7-e77d-4d9a-865c-31cf34defa8f">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512736.894 5403046.176 275.039
												512730.192 5403048.442 276.45
												512710.401 5403038.789 276.45
												512694.753 5403031.157 276.45
												512692.341 5403024.446 275.039
												512736.894 5403046.176 275.039
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 SE Wing Roof NW</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_a5b47ecf-ac52-423a-a356-65edea816cc3">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512710.401 5403038.789 276.45
												512703.887 5403040.647 275.039
												512688.176 5403032.984 275.039
												512694.753 5403031.157 276.45
												512710.401 5403038.789 276.45
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Roof SW</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_83d608e5-8860-4336-8bb4-7ede4945ea40">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512696.331 5403058.785 276.282
												512691.355 5403062.394 275.056
												512696.112 5403052.642 275.056
												512696.331 5403058.785 276.282
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Roof NW</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_778996ac-848a-462b-a46f-e0a622691861">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512699.818 5403060.486 276.282
												512692.91 5403063.153 275.056
												512691.355 5403062.394 275.056
												512696.331 5403058.785 276.282
												512699.818 5403060.486 276.282
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Roof SE</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_44a48701-afd2-49ef-a9c4-b6c3d6f1be2c">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512719.61 5403070.139 276.45
												512699.818 5403060.486 276.282
												512707.828 5403056.337 275.047
												512719.61 5403070.139 276.45
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Roof NW</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_ab05f90f-8417-4af5-8668-e61094c85a56">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512723.097 5403071.84 276.45
												512723.249 5403078.44 275.039
												512721.497 5403077.585 275.039
												512719.61 5403070.139 276.45
												512723.097 5403071.84 276.45
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Roof NE</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_fbf1aaa4-1936-47cd-9660-f9063d4972ec">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512710.401 5403038.789 276.45
												512707.828 5403056.337 275.047
												512699.818 5403060.486 276.282
												512710.401 5403038.789 276.45
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Roof NW</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_31c2d96c-70db-44d1-bb65-427f1c1c7a31">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512719.61 5403070.139 276.45
												512700.516 5403071.352 275.047
												512699.818 5403060.486 276.282
												512719.61 5403070.139 276.45
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Roof NE</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_70388377-3178-4f49-aaef-210825a9f8b2">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512726.334 5403067.917 275.039
												512719.61 5403070.139 276.45
												512736.894 5403046.176 275.039
												512726.334 5403067.917 275.039
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Roof NE</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_24e12e81-c7c0-41e0-ab2e-291ca0120c27">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512711.27 5403098.553 275.039
												512708.979 5403091.935 276.45
												512719.61 5403070.139 276.45
												512721.497 5403077.585 275.039
												512711.27 5403098.553 275.039
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Roof NE</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_b7fd0337-9434-4aee-bbdf-ab09b8b48978">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512736.894 5403046.176 275.039
												512719.61 5403070.139 276.45
												512730.192 5403048.442 276.45
												512736.894 5403046.176 275.039
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Roof NE</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_b4819f7c-ac7b-4da3-bcc1-1b8f5e1a8f15">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512700.516 5403071.352 275.047
												512689.188 5403082.282 276.45
												512699.818 5403060.486 276.282
												512700.516 5403071.352 275.047
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 NW Wing Roof SE</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_4e957e60-1358-4315-8d33-5ac4efbe8c38">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512705.543 5403085.842 275.047
												512708.979 5403091.935 276.45
												512689.188 5403082.282 276.45
												512695.773 5403081.077 275.047
												512705.543 5403085.842 275.047
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 SE Wing Roof NW</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_cf51234c-63da-45b4-b75c-aed811e25e2d">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512730.192 5403048.442 276.45
												512722.223 5403051.643 275.047
												512712.444 5403046.873 275.047
												512710.401 5403038.789 276.45
												512730.192 5403048.442 276.45
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Roof SW</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_af479c0c-afcf-42d3-b6bf-a4e58f0698db">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512699.818 5403060.486 276.282
												512697.667 5403053.401 275.056
												512703.887 5403040.647 275.039
												512699.818 5403060.486 276.282
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Roof SW</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_0d038e97-4e25-408b-a649-0ae5e50ae126">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512708.979 5403091.935 276.45
												512705.543 5403085.842 275.047
												512710.159 5403076.377 275.047
												512719.61 5403070.139 276.45
												512708.979 5403091.935 276.45
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Roof SW</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_513969d0-1aa2-4ae9-8aca-433563f0be11">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512686.278 5403076.752 275.039
												512699.818 5403060.486 276.282
												512689.188 5403082.282 276.45
												512686.278 5403076.752 275.039
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Roof SW</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_7f899dac-7066-4007-8de1-fcf90d934c16">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512692.91 5403063.153 275.056
												512699.818 5403060.486 276.282
												512686.278 5403076.752 275.039
												512692.91 5403063.153 275.056
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 NW Wing Roof SE</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_f6bdaadd-507f-43e1-939b-20653929f1a3">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512689.188 5403082.282 276.45
												512673.54 5403074.65 276.45
												512670.603 5403069.106 275.039
												512686.278 5403076.752 275.039
												512689.188 5403082.282 276.45
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Roof NE</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_27b2218c-d126-40fb-8af7-fedb396102c8">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512723.097 5403071.84 276.45
												512727.988 5403068.724 275.039
												512723.249 5403078.44 275.039
												512723.097 5403071.84 276.45
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Roof SE</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_1bf579e9-7e77-4a0e-b144-67266bdcffc0">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512707.828 5403056.337 275.047
												512717.607 5403061.107 275.047
												512719.61 5403070.139 276.45
												512707.828 5403056.337 275.047
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 NW Wing Roof NW</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_5cb786a2-7403-4616-9014-1277afc37d7a">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512711.27 5403098.553 275.039
												512666.816 5403076.871 275.039
												512673.54 5403074.65 276.45
												512689.188 5403082.282 276.45
												512708.979 5403091.935 276.45
												512711.27 5403098.553 275.039
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:RoofSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 SE Wing Roof SW</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_7f1a1df9-dfad-4a85-a0a9-d9d061d0e32a">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512692.341 5403024.446 275.039
												512694.753 5403031.157 276.45
												512688.176 5403032.984 275.039
												512692.341 5403024.446 275.039
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:RoofSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:WallSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Attic Wall SE</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_e7560edd-4258-4dcf-bd18-a59957942610">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512697.601 5403081.968 274.296
												512696.881 5403081.617 274.296
												512696.794 5403081.797 274.296
												512697.513 5403082.148 274.296
												512697.601 5403081.968 274.296
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:WallSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:WallSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Attic Wall NW</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_15b89229-8bd9-4a90-a371-08e5fe2a9f1c">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512705.13 5403073.756 274.296
												512705.13 5403073.756 272.696
												512705.222 5403073.579 272.696
												512705.222 5403073.579 274.296
												512705.13 5403073.756 274.296
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:WallSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:WallSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Wall NE</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_a20a2a75-6dbf-47cd-9f28-9502acae6c5d">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512735.345 5403053.687 257.0
												512734.491 5403053.27 257.0
												512734.491 5403053.27 271.607
												512735.345 5403053.687 271.607
												512735.345 5403053.687 257.0
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:WallSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:WallSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Attic Wall SE</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
								<gml:Polygon gml:id="GML_fd25603f-8126-4d2a-a652-ad19c252183e">
									<gml:exterior>
										<gml:LinearRing>
											<gml:posList srsDimension="3">
												512716.348 5403060.493 274.296
												512716.348 5403060.493 272.696
												512716.261 5403060.673 272.696
												512716.261 5403060.673 274.296
												512716.348 5403060.493 274.296
											</gml:posList>
										</gml:LinearRing>
									</gml:exterior>
								</gml:Polygon>
							</gml:surfaceMember>
						</gml:MultiSurface>
					</bldg:lod3MultiSurface>
				</bldg:WallSurface>
			</bldg:boundedBy>
			<bldg:boundedBy>
				<bldg:WallSurface>
					<gen:stringAttribute name="Description">
						<gen:value>Bau 01 Attic Wall SW</gen:value>
					</gen:stringAttribute>
					<bldg:lod3MultiSurface>
						<gml:MultiSurface>
							<gml:surfaceMember>
For faster browsing, not all history is shown. View entire blame