Grombühl_v4_case_study.gml 6.37 MB
Newer Older
Eric Duminil's avatar
Eric Duminil 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" standalone="yes"?>
<CityModel xmlns:xAL="urn:oasis:names:tc:ciq:xsdschema:xAL:2.0" xmlns:gml="http://www.opengis.net/gml" xmlns:wtr="http://www.opengis.net/citygml/waterbody/2.0" xmlns:app="http://www.opengis.net/citygml/appearance/2.0" xmlns="http://www.opengis.net/citygml/2.0" xmlns:veg="http://www.opengis.net/citygml/vegetation/2.0" xmlns:dem="http://www.opengis.net/citygml/relief/2.0" xmlns:tran="http://www.opengis.net/citygml/transportation/2.0" xmlns:bldg="http://www.opengis.net/citygml/building/2.0" xmlns:grp="http://www.opengis.net/citygml/cityobjectgroup/2.0" xmlns:tun="http://www.opengis.net/citygml/tunnel/2.0" xmlns:frn="http://www.opengis.net/citygml/cityfurniture/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:brid="http://www.opengis.net/citygml/bridge/2.0" xmlns:gen="http://www.opengis.net/citygml/generics/2.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:luse="http://www.opengis.net/citygml/landuse/2.0" xsi:schemaLocation="http://www.opengis.net/citygml/building/2.0 http://schemas.opengis.net/citygml/building/2.0/building.xsd http://www.opengis.net/citygml/cityobjectgroup/2.0 http://schemas.opengis.net/citygml/cityobjectgroup/2.0/cityObjectGroup.xsd http://www.opengis.net/citygml/tunnel/2.0 http://schemas.opengis.net/citygml/tunnel/2.0/tunnel.xsd http://www.opengis.net/citygml/waterbody/2.0 http://schemas.opengis.net/citygml/waterbody/2.0/waterBody.xsd http://www.opengis.net/citygml/appearance/2.0 http://schemas.opengis.net/citygml/appearance/2.0/appearance.xsd http://www.opengis.net/citygml/cityfurniture/2.0 http://schemas.opengis.net/citygml/cityfurniture/2.0/cityFurniture.xsd http://www.opengis.net/citygml/bridge/2.0 http://schemas.opengis.net/citygml/bridge/2.0/bridge.xsd http://www.opengis.net/citygml/generics/2.0 http://schemas.opengis.net/citygml/generics/2.0/generics.xsd http://www.opengis.net/citygml/vegetation/2.0 http://schemas.opengis.net/citygml/vegetation/2.0/vegetation.xsd http://www.opengis.net/citygml/relief/2.0 http://schemas.opengis.net/citygml/relief/2.0/relief.xsd http://www.opengis.net/citygml/transportation/2.0 http://schemas.opengis.net/citygml/transportation/2.0/transportation.xsd http://www.opengis.net/citygml/landuse/2.0 http://schemas.opengis.net/citygml/landuse/2.0/landUse.xsd">
  <gml:name>LoD2_32_566_5516_2_BY</gml:name>
  
  <gml:boundedBy>
  <gml:Envelope srsName="EPSG:25832" srsDimension="3">
    <gml:lowerCorner>568146.5503584074 5516921.734414723 165.89</gml:lowerCorner>
    <gml:upperCorner>568728.6789587425 5517167.404928993 315.68</gml:upperCorner>
  </gml:Envelope>
</gml:boundedBy>
<cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_605083">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9oea1</name>
        </externalObject>
      </externalReference>
      <gen:stringAttribute name="comment">
        <gen:value>CityGML from BKG LoD2_32_56[68]_5516_2_BY.xml, with yearOfConstruction from Stadt_Würzburg_Wohngebäude_Baujahr_Untersuchungsgebiet.xlsx, 2023-02-22</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="address">
        <gen:value>Petrinistraße 36, 97080, Würzburg</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="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2019-09-24</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_1000</bldg:function>
      <bldg:yearOfConstruction>1955</bldg:yearOfConstruction>
      <bldg:roofType>3200</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">18.34</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_4515e4b6-f2b6-48d6-bfd4-4b967050d49d">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_803fcbd7-a004-4c8b-8383-9fe9a00e1e9e">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605083_348670bc-aade-43bf-bb61-2d10df0871b2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605083_d0418a1b-1989-4c46-b4d7-a02c23b3ca62_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605083_5e624afb-0fea-468d-8caa-cdcc9fca2349_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605083_c6bcd868-0af7-4efc-b868-0459031caaf7_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605083_ec0d1a30-b56a-4505-afae-da703756d581_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605083_f76c57ca-ec71-441d-93d9-e40dbc619baa_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605083_1f63f75f-d7cd-4653-a674-e15f5bf6f56f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605083_05f64aa7-6205-42b8-9dac-23323ada1654_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605083_348670bc-aade-43bf-bb61-2d10df0871b2">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f75458a8-baea-425e-a64f-c7718d537002">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605083_348670bc-aade-43bf-bb61-2d10df0871b2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605083_348670bc-aade-43bf-bb61-2d10df0871b2_poly_0_">
                      <gml:posList srsDimension="3">568556.696 5516996.54 0.0 568556.696 5516996.54 14.217000000000013 568573.613 5516995.523 14.217000000000013 568573.613 5516995.523 0.0 568556.696 5516996.54 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605083_ec0d1a30-b56a-4505-afae-da703756d581">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_30cc2038-4064-4a47-b228-5bd1a32c0a35">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605083_ec0d1a30-b56a-4505-afae-da703756d581_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605083_ec0d1a30-b56a-4505-afae-da703756d581_poly_0_">
                      <gml:posList srsDimension="3">568572.976 5516984.34 14.210000000000008 568573.613 5516995.523 14.217000000000013 568567.708 5516990.272 18.340000000000003 568572.976 5516984.34 14.210000000000008</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605083_05f64aa7-6205-42b8-9dac-23323ada1654">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_49a6330b-9625-4ba0-9b17-bffde8426af0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605083_05f64aa7-6205-42b8-9dac-23323ada1654_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605083_05f64aa7-6205-42b8-9dac-23323ada1654_poly_0_">
                      <gml:posList srsDimension="3">568572.976 5516984.34 14.210000000000008 568567.708 5516990.272 18.340000000000003 568556.383 5516990.953 18.340000000000003 568556.068 5516985.377 14.225000000000023 568572.976 5516984.34 14.210000000000008</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605083_d0418a1b-1989-4c46-b4d7-a02c23b3ca62">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_0a7a0424-39b0-4080-a24b-d4d2ad381d5a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605083_d0418a1b-1989-4c46-b4d7-a02c23b3ca62_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605083_d0418a1b-1989-4c46-b4d7-a02c23b3ca62_poly_0_">
                      <gml:posList srsDimension="3">568572.976 5516984.34 0.0 568572.976 5516984.34 14.210000000000008 568556.068 5516985.377 14.225000000000023 568556.068 5516985.377 0.0 568572.976 5516984.34 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="DEBY_LOD2_605083_1f63f75f-d7cd-4653-a674-e15f5bf6f56f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_57c001d0-3f6a-442d-8003-8e165893eebd">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605083_1f63f75f-d7cd-4653-a674-e15f5bf6f56f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605083_1f63f75f-d7cd-4653-a674-e15f5bf6f56f_poly_0_">
                      <gml:posList srsDimension="3">568572.976 5516984.34 0.0 568556.068 5516985.377 0.0 568556.383 5516990.953 0.0 568556.696 5516996.54 0.0 568573.613 5516995.523 0.0 568572.976 5516984.34 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605083_5e624afb-0fea-468d-8caa-cdcc9fca2349">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e9c5e580-4c36-4c7f-a87e-2cbcb8d3e7d7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605083_5e624afb-0fea-468d-8caa-cdcc9fca2349_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605083_5e624afb-0fea-468d-8caa-cdcc9fca2349_poly_0_">
                      <gml:posList srsDimension="3">568556.068 5516985.377 14.225000000000023 568556.383 5516990.953 18.340000000000003 568556.696 5516996.54 14.217000000000013 568556.696 5516996.54 0.0 568556.383 5516990.953 0.0 568556.068 5516985.377 0.0 568556.068 5516985.377 14.225000000000023</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605083_f76c57ca-ec71-441d-93d9-e40dbc619baa">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4a171fc4-1a85-4df8-beeb-33bc05ff385b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605083_f76c57ca-ec71-441d-93d9-e40dbc619baa_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605083_f76c57ca-ec71-441d-93d9-e40dbc619baa_poly_0_">
                      <gml:posList srsDimension="3">568567.708 5516990.272 18.340000000000003 568573.613 5516995.523 14.217000000000013 568556.696 5516996.54 14.217000000000013 568556.383 5516990.953 18.340000000000003 568567.708 5516990.272 18.340000000000003</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605083_c6bcd868-0af7-4efc-b868-0459031caaf7">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3eb32b79-0390-4265-9013-43a58fcb7822">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605083_c6bcd868-0af7-4efc-b868-0459031caaf7_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605083_c6bcd868-0af7-4efc-b868-0459031caaf7_poly_0_">
                      <gml:posList srsDimension="3">568573.613 5516995.523 0.0 568573.613 5516995.523 14.217000000000013 568572.976 5516984.34 14.210000000000008 568572.976 5516984.34 0.0 568573.613 5516995.523 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
    </bldg:Building>
  </cityObjectMember><cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_605046">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odJt</name>
        </externalObject>
      </externalReference>
      <gen:stringAttribute name="comment">
        <gen:value>CityGML from BKG LoD2_32_56[68]_5516_2_BY.xml, with yearOfConstruction from Stadt_Würzburg_Wohngebäude_Baujahr_Untersuchungsgebiet.xlsx, 2023-02-22</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="address">
        <gen:value>Gutenbergstraße 10, 97080, Würzburg</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="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2019-09-24</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_1000</bldg:function>
      <bldg:yearOfConstruction>1956</bldg:yearOfConstruction>
      <bldg:roofType>3200</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">16.531</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_bd4145e8-9e8b-4793-8cd2-ffb9d11c8bde">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_eb3748a5-d4ed-45b9-99cf-b23e5e81e8da">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605046_8c261bd1-fd9d-4970-9c15-182aafd3b8df_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605046_e6f95f53-f822-4c61-a868-12bf9772b9fb_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605046_b678f3a2-69e9-409d-93fb-5c8e007e2d14_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605046_08fdab35-ede6-476c-92a5-a6ce06da9ac5_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605046_2539769e-317b-4572-b520-2fbe1727e60d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605046_845109dd-7148-41be-b7c7-47b0811f4df2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605046_eef8d3de-58a4-448b-8c12-1dfed4c5adec_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605046_fd39212c-6953-43e1-9c11-fd7dd251b44e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605046_c732070b-05d1-448a-9f73-7d04890fb303_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605046_af809487-47dc-483f-95a8-b46ebf10adba_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605046_057cd206-4a52-4fc9-9164-43f9d6569689_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605046_af809487-47dc-483f-95a8-b46ebf10adba">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_69708ac1-80ae-4d62-a8a7-09df0cfae922">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605046_af809487-47dc-483f-95a8-b46ebf10adba_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605046_af809487-47dc-483f-95a8-b46ebf10adba_poly_0_">
                      <gml:posList srsDimension="3">568330.204 5517039.105 13.146999999999991 568330.246 5517039.557 13.147999999999996 568331.533 5517053.021 13.146999999999991 568326.229 5517048.839 16.530999999999977 568325.365 5517039.786 16.530999999999977 568330.204 5517039.105 13.146999999999991</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605046_8c261bd1-fd9d-4970-9c15-182aafd3b8df">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e9db8303-01c3-4e8c-bcca-312f08bbcd1c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605046_8c261bd1-fd9d-4970-9c15-182aafd3b8df_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605046_8c261bd1-fd9d-4970-9c15-182aafd3b8df_poly_0_">
                      <gml:posList srsDimension="3">568325.365 5517039.786 16.530999999999977 568326.229 5517048.839 16.530999999999977 568322.064 5517054.117 13.310000000000002 568320.758 5517040.659 13.294999999999987 568320.537 5517040.68 13.140999999999991 568320.515 5517040.469 13.139999999999986 568325.365 5517039.786 16.530999999999977</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605046_2539769e-317b-4572-b520-2fbe1727e60d">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_832f1fa6-256e-4c13-aee5-dd2066f8a0d1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605046_2539769e-317b-4572-b520-2fbe1727e60d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605046_2539769e-317b-4572-b520-2fbe1727e60d_poly_0_">
                      <gml:posList srsDimension="3">568325.365 5517039.786 0.0 568330.204 5517039.105 0.0 568330.204 5517039.105 13.146999999999991 568325.365 5517039.786 16.530999999999977 568320.515 5517040.469 13.139999999999986 568320.515 5517040.469 0.0 568325.365 5517039.786 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="DEBY_LOD2_605046_057cd206-4a52-4fc9-9164-43f9d6569689">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2c1048a9-ae21-4f50-b48e-d0d9f8644458">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605046_057cd206-4a52-4fc9-9164-43f9d6569689_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605046_057cd206-4a52-4fc9-9164-43f9d6569689_poly_0_">
                      <gml:posList srsDimension="3">568331.537 5517053.07 0.0 568331.533 5517053.021 0.0 568330.246 5517039.557 0.0 568330.204 5517039.105 0.0 568325.365 5517039.786 0.0 568320.515 5517040.469 0.0 568320.537 5517040.68 0.0 568320.758 5517040.659 0.0 568322.064 5517054.117 0.0 568322.073 5517054.204 0.0 568326.997 5517053.709 0.0 568331.555 5517053.252 0.0 568331.537 5517053.07 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605046_e6f95f53-f822-4c61-a868-12bf9772b9fb">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_85867596-93c0-4dea-81da-e7e0c84482dd">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605046_e6f95f53-f822-4c61-a868-12bf9772b9fb_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605046_e6f95f53-f822-4c61-a868-12bf9772b9fb_poly_0_">
                      <gml:posList srsDimension="3">568326.229 5517048.839 16.530999999999977 568331.533 5517053.021 13.146999999999991 568331.537 5517053.07 13.111999999999995 568331.555 5517053.252 12.98599999999999 568326.997 5517053.709 13.111999999999995 568322.073 5517054.204 13.248999999999995 568322.064 5517054.117 13.310000000000002 568326.229 5517048.839 16.530999999999977</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605046_845109dd-7148-41be-b7c7-47b0811f4df2">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c9274ce0-34a8-42d6-9328-94f9759ff26c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605046_845109dd-7148-41be-b7c7-47b0811f4df2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605046_845109dd-7148-41be-b7c7-47b0811f4df2_poly_0_">
                      <gml:posList srsDimension="3">568320.758 5517040.659 13.294999999999987 568322.064 5517054.117 13.310000000000002 568322.073 5517054.204 13.248999999999995 568322.073 5517054.204 0.0 568322.064 5517054.117 0.0 568320.758 5517040.659 0.0 568320.758 5517040.659 13.294999999999987</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605046_fd39212c-6953-43e1-9c11-fd7dd251b44e">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_321626ee-b114-4af3-a72f-ad11f8c81416">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605046_fd39212c-6953-43e1-9c11-fd7dd251b44e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605046_fd39212c-6953-43e1-9c11-fd7dd251b44e_poly_0_">
                      <gml:posList srsDimension="3">568330.246 5517039.557 0.0 568331.533 5517053.021 0.0 568331.537 5517053.07 0.0 568331.555 5517053.252 0.0 568331.555 5517053.252 12.98599999999999 568331.537 5517053.07 13.111999999999995 568331.533 5517053.021 13.146999999999991 568330.246 5517039.557 13.147999999999996 568330.246 5517039.557 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605046_b678f3a2-69e9-409d-93fb-5c8e007e2d14">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f81958b8-4303-4cd3-a15a-3c8544d1654a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605046_b678f3a2-69e9-409d-93fb-5c8e007e2d14_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605046_b678f3a2-69e9-409d-93fb-5c8e007e2d14_poly_0_">
                      <gml:posList srsDimension="3">568320.515 5517040.469 0.0 568320.515 5517040.469 13.139999999999986 568320.537 5517040.68 13.140999999999991 568320.537 5517040.68 0.0 568320.515 5517040.469 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605046_eef8d3de-58a4-448b-8c12-1dfed4c5adec">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_84efefcb-392d-4094-903c-55f711063b72">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605046_eef8d3de-58a4-448b-8c12-1dfed4c5adec_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605046_eef8d3de-58a4-448b-8c12-1dfed4c5adec_poly_0_">
                      <gml:posList srsDimension="3">568320.537 5517040.68 0.0 568320.537 5517040.68 13.140999999999991 568320.758 5517040.659 13.294999999999987 568320.758 5517040.659 0.0 568320.537 5517040.68 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605046_c732070b-05d1-448a-9f73-7d04890fb303">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_91efe661-c5e3-4278-813c-7787ebba9d9a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605046_c732070b-05d1-448a-9f73-7d04890fb303_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605046_c732070b-05d1-448a-9f73-7d04890fb303_poly_0_">
                      <gml:posList srsDimension="3">568326.997 5517053.709 13.111999999999995 568331.555 5517053.252 12.98599999999999 568331.555 5517053.252 0.0 568326.997 5517053.709 0.0 568322.073 5517054.204 0.0 568322.073 5517054.204 13.248999999999995 568326.997 5517053.709 13.111999999999995</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605046_08fdab35-ede6-476c-92a5-a6ce06da9ac5">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_52208b8b-360c-498e-aa0b-682c45bd2c4a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605046_08fdab35-ede6-476c-92a5-a6ce06da9ac5_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605046_08fdab35-ede6-476c-92a5-a6ce06da9ac5_poly_0_">
                      <gml:posList srsDimension="3">568330.246 5517039.557 0.0 568330.246 5517039.557 13.147999999999996 568330.204 5517039.105 13.146999999999991 568330.204 5517039.105 0.0 568330.246 5517039.557 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
    </bldg:Building>
  </cityObjectMember><cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_605833">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9pI4F</name>
        </externalObject>
      </externalReference>
      <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="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2019-09-25</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_2000</bldg:function>
      <bldg:roofType>1000</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">3.071</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_0d464b75-3733-4fc5-bba4-24bb8bc43ee9">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_a32cd5f4-826e-478b-9f6a-845b20a593e3">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605833_a042d087-c610-410c-aaad-7bd67ab68fac_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605833_6ce27595-5174-408d-b65e-3c644d7880b8_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605833_98b1c4c6-6d38-4547-8629-b382f59486a9_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605833_db17d3ec-6bfc-42e4-b114-d1f98ba1cba1_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605833_c10ab495-0cc0-46d0-9a7b-29681c2453ce_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605833_b8e3d4c5-2c2e-4adf-a117-35b6eb0ee885_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605833_6ec279b7-5b3d-4532-ac18-b245731c38e6_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605833_203748d3-47a9-439a-897b-a9b2485a74d6_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605833_db17d3ec-6bfc-42e4-b114-d1f98ba1cba1">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8fb01a26-b42b-468a-ac15-7b02b99fa9ff">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605833_db17d3ec-6bfc-42e4-b114-d1f98ba1cba1_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605833_db17d3ec-6bfc-42e4-b114-d1f98ba1cba1_poly_0_">
                      <gml:posList srsDimension="3">568196.086 5516979.155 0.0 568196.086 5516979.155 3.070999999999998 568201.579 5516978.894 3.070999999999998 568201.579 5516978.894 0.0 568196.086 5516979.155 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605833_b8e3d4c5-2c2e-4adf-a117-35b6eb0ee885">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_0e8b8cf1-1d38-43c6-a4a2-4b842008d5f9">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605833_b8e3d4c5-2c2e-4adf-a117-35b6eb0ee885_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605833_b8e3d4c5-2c2e-4adf-a117-35b6eb0ee885_poly_0_">
                      <gml:posList srsDimension="3">568201.966 5516969.458 0.0 568201.966 5516969.458 3.070999999999998 568196.992 5516969.269 3.070999999999998 568196.992 5516969.269 0.0 568201.966 5516969.458 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605833_a042d087-c610-410c-aaad-7bd67ab68fac">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5c9815ff-3a76-419b-b8fa-5ecbf282a61a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605833_a042d087-c610-410c-aaad-7bd67ab68fac_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605833_a042d087-c610-410c-aaad-7bd67ab68fac_poly_0_">
                      <gml:posList srsDimension="3">568196.992 5516969.269 0.0 568196.992 5516969.269 3.070999999999998 568196.502 5516969.25 3.070999999999998 568196.502 5516969.25 0.0 568196.992 5516969.269 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605833_c10ab495-0cc0-46d0-9a7b-29681c2453ce">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c9700ed0-7bbc-45da-9775-b8ef33d4f76c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605833_c10ab495-0cc0-46d0-9a7b-29681c2453ce_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605833_c10ab495-0cc0-46d0-9a7b-29681c2453ce_poly_0_">
                      <gml:posList srsDimension="3">568196.502 5516969.25 3.070999999999998 568196.992 5516969.269 3.070999999999998 568201.966 5516969.458 3.070999999999998 568201.962 5516969.568 3.070999999999998 568201.579 5516978.894 3.070999999999998 568196.086 5516979.155 3.070999999999998 568196.502 5516969.25 3.070999999999998</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605833_6ce27595-5174-408d-b65e-3c644d7880b8">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8ae4b30c-77fb-4942-a3bb-8a71634fe6db">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605833_6ce27595-5174-408d-b65e-3c644d7880b8_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605833_6ce27595-5174-408d-b65e-3c644d7880b8_poly_0_">
                      <gml:posList srsDimension="3">568201.579 5516978.894 0.0 568201.579 5516978.894 3.070999999999998 568201.962 5516969.568 3.070999999999998 568201.962 5516969.568 0.0 568201.579 5516978.894 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605833_6ec279b7-5b3d-4532-ac18-b245731c38e6">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_50db74a9-475f-4233-986c-1f614eed2fe0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605833_6ec279b7-5b3d-4532-ac18-b245731c38e6_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605833_6ec279b7-5b3d-4532-ac18-b245731c38e6_poly_0_">
                      <gml:posList srsDimension="3">568201.962 5516969.568 0.0 568201.962 5516969.568 3.070999999999998 568201.966 5516969.458 3.070999999999998 568201.966 5516969.458 0.0 568201.962 5516969.568 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="DEBY_LOD2_605833_203748d3-47a9-439a-897b-a9b2485a74d6">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_27f76bb6-c434-4170-b002-96d8441e772f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605833_203748d3-47a9-439a-897b-a9b2485a74d6_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605833_203748d3-47a9-439a-897b-a9b2485a74d6_poly_0_">
                      <gml:posList srsDimension="3">568196.086 5516979.155 0.0 568201.579 5516978.894 0.0 568201.962 5516969.568 0.0 568201.966 5516969.458 0.0 568196.992 5516969.269 0.0 568196.502 5516969.25 0.0 568196.086 5516979.155 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605833_98b1c4c6-6d38-4547-8629-b382f59486a9">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_30fd8e70-6221-4b05-b818-5e645d6b855b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605833_98b1c4c6-6d38-4547-8629-b382f59486a9_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605833_98b1c4c6-6d38-4547-8629-b382f59486a9_poly_0_">
                      <gml:posList srsDimension="3">568196.502 5516969.25 0.0 568196.502 5516969.25 3.070999999999998 568196.086 5516979.155 3.070999999999998 568196.086 5516979.155 0.0 568196.502 5516969.25 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
    </bldg:Building>
  </cityObjectMember><cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_605164">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9pI1F</name>
        </externalObject>
      </externalReference>
      <gen:stringAttribute name="comment">
        <gen:value>CityGML from BKG LoD2_32_56[68]_5516_2_BY.xml, with yearOfConstruction from Stadt_Würzburg_Wohngebäude_Baujahr_Untersuchungsgebiet.xlsx, 2023-02-22</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="address">
        <gen:value>Grombühlstraße 43b, 97080, Würzburg</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="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2019-09-24</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_1000</bldg:function>
      <bldg:yearOfConstruction>1956</bldg:yearOfConstruction>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">18.791</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_a9a94f6e-c713-4db0-8994-f5670e6ceeec">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_4024fcdf-3155-4713-a349-afb4d1e700bc">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605164_636378a0-3a0c-4ac9-8ad6-a4cc2e2dcc73_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605164_92943df5-9e1a-4e88-a97b-d3ac9927039a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605164_cb1ba4a3-d53f-42fe-9c7c-3aad5aaaa5b5_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605164_8048d930-9227-4d67-8770-dead2a40fe93_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605164_15095b1d-f35a-477a-a056-ad5b3e06fc87_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605164_5acc906e-720f-4ca0-a71b-3cac76bf563d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605164_95c9973e-a277-47bf-9e04-dbe13b94a62f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605164_d55ce601-fe67-4ea1-b893-5767954e76ac_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605164_c223818c-d6a7-458f-87df-616b93773906_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605164_836f66af-d970-43ec-bef8-5981b68d3a7b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605164_4a3de782-6977-4ec3-9218-3c26049d5d13_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605164_ac0f7125-4c86-4978-a535-3ef6d2d8ba49_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605164_136d0b07-1cc2-4c47-ab7f-eb74cdafd56a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605164_6020e5ff-3aa2-41cd-94b3-1fe9578520d7_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605164_49793f6f-4894-42d6-b65c-fc472a2370a0_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605164_aa1b3695-e1cd-4ddd-b115-f77541317777_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605164_c023b2a9-2a89-4fd9-ab96-248d4b675bcb_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605164_2c8b3767-efd0-46d1-870f-a426bcd60f0d_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605164_6020e5ff-3aa2-41cd-94b3-1fe9578520d7">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7575d3d8-5fe1-49a1-99b2-afae1f6e5a8c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605164_6020e5ff-3aa2-41cd-94b3-1fe9578520d7_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605164_6020e5ff-3aa2-41cd-94b3-1fe9578520d7_poly_0_">
                      <gml:posList srsDimension="3">568217.004 5516923.041 0.0 568223.079 5516921.995 0.0 568223.29 5516921.959 0.0 568223.332 5516921.952 0.0 568223.332 5516921.952 14.955000000000013 568223.29 5516921.959 14.979000000000013 568223.079 5516921.995 15.099000000000018 568217.004 5516923.041 15.105000000000018 568214.479 5516923.477 15.108000000000004 568214.479 5516923.477 0.0 568217.004 5516923.041 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605164_5acc906e-720f-4ca0-a71b-3cac76bf563d">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7b22a7fb-8040-4feb-8f0d-a09661c32c72">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605164_5acc906e-720f-4ca0-a71b-3cac76bf563d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605164_5acc906e-720f-4ca0-a71b-3cac76bf563d_poly_0_">
                      <gml:posList srsDimension="3">568214.454 5516923.376 15.027000000000015 568214.479 5516923.477 15.108000000000004 568217.004 5516923.041 15.105000000000018 568223.079 5516921.995 15.099000000000018 568221.483 5516927.088 18.790999999999997 568217.095 5516927.837 18.790999999999997 568211.005 5516928.88 18.790999999999997 568210.223 5516924.087 15.018 568214.454 5516923.376 15.027000000000015</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605164_136d0b07-1cc2-4c47-ab7f-eb74cdafd56a">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_749be4e6-e934-499a-8455-102d83999ee0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605164_136d0b07-1cc2-4c47-ab7f-eb74cdafd56a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605164_136d0b07-1cc2-4c47-ab7f-eb74cdafd56a_poly_0_">
                      <gml:posList srsDimension="3">568221.483 5516927.088 18.790999999999997 568221.576 5516932.049 18.790999999999997 568221.596 5516933.066 18.790999999999997 568217.358 5516937.484 15.049000000000007 568217.251 5516932.787 15.033000000000015 568217.25 5516932.739 15.033000000000015 568217.231 5516932.743 15.01600000000002 568221.483 5516927.088 18.790999999999997</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605164_49793f6f-4894-42d6-b65c-fc472a2370a0">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fc07d941-bce4-4992-8274-adf409aaed00">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605164_49793f6f-4894-42d6-b65c-fc472a2370a0_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605164_49793f6f-4894-42d6-b65c-fc472a2370a0_poly_0_">
                      <gml:posList srsDimension="3">568217.095 5516927.837 18.790999999999997 568221.483 5516927.088 18.790999999999997 568217.231 5516932.743 15.01600000000002 568217.189 5516932.75 15.01600000000002 568211.79 5516933.692 15.00200000000001 568211.005 5516928.88 18.790999999999997 568217.095 5516927.837 18.790999999999997</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605164_95c9973e-a277-47bf-9e04-dbe13b94a62f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a22906d6-a147-4c45-8305-6be2718ffe1a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605164_95c9973e-a277-47bf-9e04-dbe13b94a62f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605164_95c9973e-a277-47bf-9e04-dbe13b94a62f_poly_0_">
                      <gml:posList srsDimension="3">568221.596 5516933.066 18.790999999999997 568225.854 5516937.176 15.170000000000016 568225.856 5516937.347 15.02200000000002 568217.359 5516937.515 15.02200000000002 568217.358 5516937.484 15.049000000000007 568221.596 5516933.066 18.790999999999997</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605164_4a3de782-6977-4ec3-9218-3c26049d5d13">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_17a95cdd-cc6e-4fbd-8283-7977f56b3ae4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605164_4a3de782-6977-4ec3-9218-3c26049d5d13_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605164_4a3de782-6977-4ec3-9218-3c26049d5d13_poly_0_">
                      <gml:posList srsDimension="3">568217.189 5516932.75 15.01600000000002 568217.231 5516932.743 15.01600000000002 568217.25 5516932.739 15.033000000000015 568217.25 5516932.739 0.0 568217.231 5516932.743 0.0 568217.189 5516932.75 0.0 568211.79 5516933.692 0.0 568211.79 5516933.692 15.00200000000001 568217.189 5516932.75 15.01600000000002</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605164_cb1ba4a3-d53f-42fe-9c7c-3aad5aaaa5b5">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_80d9a32b-fb08-4b53-b3ec-59ba1c423378">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605164_cb1ba4a3-d53f-42fe-9c7c-3aad5aaaa5b5_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605164_cb1ba4a3-d53f-42fe-9c7c-3aad5aaaa5b5_poly_0_">
                      <gml:posList srsDimension="3">568214.454 5516923.376 0.0 568214.454 5516923.376 15.027000000000015 568210.223 5516924.087 15.018 568210.223 5516924.087 0.0 568214.454 5516923.376 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605164_15095b1d-f35a-477a-a056-ad5b3e06fc87">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7972e75c-b7a0-4dd5-9440-bdda0bad4702">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605164_15095b1d-f35a-477a-a056-ad5b3e06fc87_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605164_15095b1d-f35a-477a-a056-ad5b3e06fc87_poly_0_">
                      <gml:posList srsDimension="3">568210.223 5516924.087 15.018 568211.005 5516928.88 18.790999999999997 568211.79 5516933.692 15.00200000000001 568211.79 5516933.692 0.0 568211.005 5516928.88 0.0 568210.223 5516924.087 0.0 568210.223 5516924.087 15.018</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605164_ac0f7125-4c86-4978-a535-3ef6d2d8ba49">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5abfc081-9d03-4782-b0a2-8adbbd78d689">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605164_ac0f7125-4c86-4978-a535-3ef6d2d8ba49_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605164_ac0f7125-4c86-4978-a535-3ef6d2d8ba49_poly_0_">
                      <gml:posList srsDimension="3">568217.25 5516932.739 15.033000000000015 568217.251 5516932.787 15.033000000000015 568217.358 5516937.484 15.049000000000007 568217.359 5516937.515 15.02200000000002 568217.359 5516937.515 0.0 568217.358 5516937.484 0.0 568217.251 5516932.787 0.0 568217.25 5516932.739 0.0 568217.25 5516932.739 15.033000000000015</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605164_8048d930-9227-4d67-8770-dead2a40fe93">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ce5f7215-db20-4dda-9a6e-0b7a1bac3727">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605164_8048d930-9227-4d67-8770-dead2a40fe93_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605164_8048d930-9227-4d67-8770-dead2a40fe93_poly_0_">
                      <gml:posList srsDimension="3">568217.359 5516937.515 0.0 568217.359 5516937.515 15.02200000000002 568225.856 5516937.347 15.02200000000002 568225.856 5516937.347 0.0 568217.359 5516937.515 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605164_c223818c-d6a7-458f-87df-616b93773906">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3035f91c-adf0-4467-87d9-dbee91ee528e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605164_c223818c-d6a7-458f-87df-616b93773906_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605164_c223818c-d6a7-458f-87df-616b93773906_poly_0_">
                      <gml:posList srsDimension="3">568225.726 5516928.33 0.0 568225.769 5516931.333 0.0 568225.854 5516937.176 0.0 568225.856 5516937.347 0.0 568225.856 5516937.347 15.02200000000002 568225.854 5516937.176 15.170000000000016 568225.769 5516931.333 15.14700000000002 568225.726 5516928.33 15.13500000000002 568225.726 5516928.33 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605164_836f66af-d970-43ec-bef8-5981b68d3a7b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_aba5250c-0c37-4fb2-b86c-d5904c5010f3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605164_836f66af-d970-43ec-bef8-5981b68d3a7b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605164_836f66af-d970-43ec-bef8-5981b68d3a7b_poly_0_">
                      <gml:posList srsDimension="3">568225.726 5516928.33 0.0 568225.726 5516928.33 15.13500000000002 568225.857 5516928.325 15.02200000000002 568225.857 5516928.325 0.0 568225.726 5516928.33 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605164_92943df5-9e1a-4e88-a97b-d3ac9927039a">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a5ad5f04-6800-4149-977c-639dee174348">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605164_92943df5-9e1a-4e88-a97b-d3ac9927039a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605164_92943df5-9e1a-4e88-a97b-d3ac9927039a_poly_0_">
                      <gml:posList srsDimension="3">568214.479 5516923.477 0.0 568214.479 5516923.477 15.108000000000004 568214.454 5516923.376 15.027000000000015 568214.454 5516923.376 0.0 568214.479 5516923.477 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605164_aa1b3695-e1cd-4ddd-b115-f77541317777">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d30e7887-f93c-4399-bd7f-e624e1d29000">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605164_aa1b3695-e1cd-4ddd-b115-f77541317777_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605164_aa1b3695-e1cd-4ddd-b115-f77541317777_poly_0_">
                      <gml:posList srsDimension="3">568223.079 5516921.995 15.099000000000018 568223.29 5516921.959 14.979000000000013 568223.332 5516921.952 14.955000000000013 568225.732 5516923.939 14.979000000000013 568225.737 5516924.077 15.057000000000016 568221.483 5516927.088 18.790999999999997 568223.079 5516921.995 15.099000000000018</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="DEBY_LOD2_605164_636378a0-3a0c-4ac9-8ad6-a4cc2e2dcc73">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b5e434cf-e6e5-46e3-a65d-dd5058b7d705">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605164_636378a0-3a0c-4ac9-8ad6-a4cc2e2dcc73_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605164_636378a0-3a0c-4ac9-8ad6-a4cc2e2dcc73_poly_0_">
                      <gml:posList srsDimension="3">568225.854 5516937.176 0.0 568225.769 5516931.333 0.0 568225.726 5516928.33 0.0 568225.857 5516928.325 0.0 568225.737 5516924.077 0.0 568225.732 5516923.939 0.0 568223.332 5516921.952 0.0 568223.29 5516921.959 0.0 568223.079 5516921.995 0.0 568217.004 5516923.041 0.0 568214.479 5516923.477 0.0 568214.454 5516923.376 0.0 568210.223 5516924.087 0.0 568211.005 5516928.88 0.0 568211.79 5516933.692 0.0 568217.189 5516932.75 0.0 568217.231 5516932.743 0.0 568217.25 5516932.739 0.0 568217.251 5516932.787 0.0 568217.358 5516937.484 0.0 568217.359 5516937.515 0.0 568225.856 5516937.347 0.0 568225.854 5516937.176 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605164_2c8b3767-efd0-46d1-870f-a426bcd60f0d">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2273a4ff-39ba-42ab-9352-7412e898e902">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605164_2c8b3767-efd0-46d1-870f-a426bcd60f0d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605164_2c8b3767-efd0-46d1-870f-a426bcd60f0d_poly_0_">
                      <gml:posList srsDimension="3">568225.737 5516924.077 15.057000000000016 568225.857 5516928.325 15.02200000000002 568225.726 5516928.33 15.13500000000002 568225.769 5516931.333 15.14700000000002 568225.854 5516937.176 15.170000000000016 568221.596 5516933.066 18.790999999999997 568221.576 5516932.049 18.790999999999997 568221.483 5516927.088 18.790999999999997 568225.737 5516924.077 15.057000000000016</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
For faster browsing, not all history is shown. View entire blame