Grombuehl_LoD2_mini.gml 1.28 MB
Newer Older
Ehlers's avatar
Ehlers 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'?>
<core:CityModel xmlns:xal="urn:oasis:names:tc:ciq:xsdschema:xAL:2.0" xmlns:bldg="http://www.opengis.net/citygml/building/1.0" xmlns:gml="http://www.opengis.net/gml" xmlns:core="http://www.opengis.net/citygml/1.0" xmlns:gen="http://www.opengis.net/citygml/generics/1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/citygml/building/1.0 http://repository.gdi-de.org/schemas/adv/citygml/building/1.0/buildingLoD2.xsd http://www.opengis.net/citygml/1.0 http://repository.gdi-de.org/schemas/adv/citygml/1.0/cityGMLBaseLoD2.xsd http://www.opengis.net/citygml/generics/1.0 http://repository.gdi-de.org/schemas/adv/citygml/generics/1.0/genericsLoD2.xsd">
  <gml:name>LoD2_566_5514_2_BY</gml:name>
  
  <gml:boundedBy>
  <gml:Envelope srsName="EPSG:25832" srsDimension="3">
    <gml:lowerCorner>568028.3444681731 5517089.298101126 0.0</gml:lowerCorner>
    <gml:upperCorner>568411.9661610412 5517216.880743829 0.0</gml:upperCorner>
  </gml:Envelope>
</gml:boundedBy>
<core:cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_604862">
      <gen:stringAttribute name="comment">
        <gen:value>Random year of construction, with probability from CGSC PPT Page 15.</gen:value>
      </gen:stringAttribute>
      <gml:name>DEBY_LOD2_604862</gml:name>
      <core:creationDate>2013-06-25</core:creationDate>
      <core:externalReference>
        <core:informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</core:informationSystem>
        <core:externalObject>
          <core:name>DEBYvAAAAAA9oJWK</core:name>
        </core:externalObject>
      </core:externalReference>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_1000</bldg:function>
      <bldg:roofType>3200</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">18.684</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_ee52b5d8-ce0b-42ec-b345-1c961ae25dc2">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_6fc432d6-4fa6-4817-952d-81a0a4874ecc">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604862_f5095b25-1106-45e7-a4c0-e18331546e11_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604862_f0e2267e-4098-4288-908d-fdd08aea0ac8_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604862_d7b271ba-3046-461e-b38c-b1f7a32f7d23_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604862_be926bc9-2fd5-4f6b-8eea-fbc21c300406_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604862_97f222dc-e4bb-486c-accb-618f3a6eb575_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604862_64e91f49-a2e6-4a83-ac84-b426c07f3fe3_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604862_59bbd2cd-8e19-4cb5-a416-13570c712eab_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604862_0efee1aa-eeb4-402a-8f63-607219fcc778_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_604862_d7b271ba-3046-461e-b38c-b1f7a32f7d23">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a11658b1-0d53-4726-ab2a-aca69211a871">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604862_d7b271ba-3046-461e-b38c-b1f7a32f7d23_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604862_d7b271ba-3046-461e-b38c-b1f7a32f7d23_poly_0_">
                      <gml:posList srsDimension="3">568118.768 5517126.626 208.007 568118.768 5517126.641 208.027 568114.044 5517131.656 214.334 568109.107 5517127.003 208.166 568109.106 5517126.915 208.053 568118.768 5517126.626 208.007</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_604862_f5095b25-1106-45e7-a4c0-e18331546e11">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_512edc7a-64a4-4a7d-b766-d7e09c8f17d6">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604862_f5095b25-1106-45e7-a4c0-e18331546e11_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604862_f5095b25-1106-45e7-a4c0-e18331546e11_poly_0_">
                      <gml:posList srsDimension="3">568118.768 5517126.626 208.007 568118.768 5517126.626 195.650 568118.768 5517126.641 195.650 568119.356 5517144.254 195.650 568119.356 5517144.254 208.027 568118.768 5517126.641 208.027 568118.768 5517126.626 208.007</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_604862_be926bc9-2fd5-4f6b-8eea-fbc21c300406">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_30f48efa-829d-426b-8d14-d4c7fec1ccf2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604862_be926bc9-2fd5-4f6b-8eea-fbc21c300406_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604862_be926bc9-2fd5-4f6b-8eea-fbc21c300406_poly_0_">
                      <gml:posList srsDimension="3">568109.106 5517126.915 208.053 568109.107 5517127.003 208.166 568109.358 5517139.231 207.962 568109.466 5517144.514 207.874 568109.466 5517144.514 195.650 568109.358 5517139.231 195.650 568109.107 5517127.003 195.650 568109.106 5517126.915 195.650 568109.106 5517126.915 208.053</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_604862_64e91f49-a2e6-4a83-ac84-b426c07f3fe3">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b1b1d3cc-a4b6-46a3-9896-c82340ecf074">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604862_64e91f49-a2e6-4a83-ac84-b426c07f3fe3_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604862_64e91f49-a2e6-4a83-ac84-b426c07f3fe3_poly_0_">
                      <gml:posList srsDimension="3">568109.534 5517144.511 207.962 568114.470 5517144.382 214.334 568119.356 5517144.254 208.027 568119.356 5517144.254 195.650 568114.470 5517144.382 195.650 568109.534 5517144.511 195.650 568109.466 5517144.514 195.650 568109.466 5517144.514 207.874 568109.534 5517144.511 207.962</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_604862_97f222dc-e4bb-486c-accb-618f3a6eb575">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_177433e3-8cd0-4233-b721-102e1ff0ba30">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604862_97f222dc-e4bb-486c-accb-618f3a6eb575_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604862_97f222dc-e4bb-486c-accb-618f3a6eb575_poly_0_">
                      <gml:posList srsDimension="3">568118.768 5517126.641 195.650 568118.768 5517126.626 195.650 568109.106 5517126.915 195.650 568109.107 5517127.003 195.650 568109.358 5517139.231 195.650 568109.466 5517144.514 195.650 568109.534 5517144.511 195.650 568114.470 5517144.382 195.650 568119.356 5517144.254 195.650 568118.768 5517126.641 195.650</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_604862_59bbd2cd-8e19-4cb5-a416-13570c712eab">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3be7fde1-7c01-4eaa-9367-98be5fbc6492">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604862_59bbd2cd-8e19-4cb5-a416-13570c712eab_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604862_59bbd2cd-8e19-4cb5-a416-13570c712eab_poly_0_">
                      <gml:posList srsDimension="3">568118.768 5517126.641 208.027 568119.356 5517144.254 208.027 568114.470 5517144.382 214.334 568114.044 5517131.656 214.334 568118.768 5517126.641 208.027</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_604862_f0e2267e-4098-4288-908d-fdd08aea0ac8">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9ee1be9e-5423-41d0-b7fa-9a1bdcd48c2c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604862_f0e2267e-4098-4288-908d-fdd08aea0ac8_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604862_f0e2267e-4098-4288-908d-fdd08aea0ac8_poly_0_">
                      <gml:posList srsDimension="3">568114.044 5517131.656 214.334 568114.470 5517144.382 214.334 568109.534 5517144.511 207.962 568109.466 5517144.514 207.874 568109.358 5517139.231 207.962 568109.107 5517127.003 208.166 568114.044 5517131.656 214.334</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_604862_0efee1aa-eeb4-402a-8f63-607219fcc778">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c7375d37-671e-45c6-a500-1d476431055c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604862_0efee1aa-eeb4-402a-8f63-607219fcc778_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604862_0efee1aa-eeb4-402a-8f63-607219fcc778_poly_0_">
                      <gml:posList srsDimension="3">568118.768 5517126.626 195.650 568118.768 5517126.626 208.007 568109.106 5517126.915 208.053 568109.106 5517126.915 195.650 568118.768 5517126.626 195.650</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1970</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember><core:cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_604863">
      <gen:stringAttribute name="comment">
        <gen:value>Random year of construction, with probability from CGSC PPT Page 15.</gen:value>
      </gen:stringAttribute>
      <gml:name>DEBY_LOD2_604863</gml:name>
      <core:creationDate>2013-06-25</core:creationDate>
      <core:externalReference>
        <core:informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</core:informationSystem>
        <core:externalObject>
          <core:name>DEBYvAAAAAA9oJT7</core:name>
        </core:externalObject>
      </core:externalReference>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_1000</bldg:function>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">17.820</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_8ab2032b-1fb8-4dc2-aa64-d23db323d462">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_5d34572d-c32b-4763-80de-7352952692b6">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604863_f208b424-0853-450b-8ba8-8724e6348f54_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604863_ed368937-acbc-467c-99bf-3c3d88adb16f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604863_e6003fae-2b10-4d91-84e7-a75be7cdfe1e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604863_c0eebdb9-18ba-4cf4-8bbf-ea560e54c479_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604863_bb03152e-ddfb-44fd-b658-aafcc939cab6_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604863_b2ed762c-b6ce-4ed0-90db-db2c20cfc4b2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604863_adee52c5-1c21-4355-877a-9defdf099196_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604863_9fc3a05e-4993-402a-a485-b97dd6dac206_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604863_64be50f8-9f38-4cb1-88e9-9058ee9cf77e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604863_55444baa-4530-44f5-8545-ca0be8b97951_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604863_3e8e6c05-8502-4985-9b16-10e4bcc2573c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604863_1b58a2d1-65a7-4807-92b4-54c82035b442_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604863_1a2da23c-c963-40f0-b71b-8d0349c50edd_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604863_11a670f8-6c2c-45e4-8b07-74ce14478ebd_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_604863_64be50f8-9f38-4cb1-88e9-9058ee9cf77e">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7c84a67d-5575-42ad-abe9-29067800a9d1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604863_64be50f8-9f38-4cb1-88e9-9058ee9cf77e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604863_64be50f8-9f38-4cb1-88e9-9058ee9cf77e_poly_0_">
                      <gml:posList srsDimension="3">568127.918 5517150.293 208.126 568127.918 5517150.293 196.480 568127.939 5517155.151 196.480 568127.960 5517160.009 196.480 568127.960 5517160.009 208.125 568127.939 5517155.151 214.299 568127.918 5517150.293 208.126</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_604863_ed368937-acbc-467c-99bf-3c3d88adb16f">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_02087200-6075-4a35-88e0-86bda938778e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604863_ed368937-acbc-467c-99bf-3c3d88adb16f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604863_ed368937-acbc-467c-99bf-3c3d88adb16f_poly_0_">
                      <gml:posList srsDimension="3">568109.593 5517150.390 196.480 568109.593 5517150.390 208.291 568109.813 5517150.389 208.558 568109.813 5517150.389 196.480 568109.593 5517150.390 196.480</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_604863_adee52c5-1c21-4355-877a-9defdf099196">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b5b67780-0012-4d15-87e0-efbc3530e9c4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604863_adee52c5-1c21-4355-877a-9defdf099196_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604863_adee52c5-1c21-4355-877a-9defdf099196_poly_0_">
                      <gml:posList srsDimension="3">568119.639 5517150.314 208.124 568119.692 5517150.314 208.124 568127.918 5517150.293 208.126 568127.939 5517155.151 214.299 568119.680 5517155.171 214.300 568114.535 5517155.184 214.300 568119.639 5517150.314 208.124</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_604863_f208b424-0853-450b-8ba8-8724e6348f54">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_76255a61-8788-427b-aacd-2e2be897fc6b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604863_f208b424-0853-450b-8ba8-8724e6348f54_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604863_f208b424-0853-450b-8ba8-8724e6348f54_poly_0_">
                      <gml:posList srsDimension="3">568119.639 5517150.314 196.480 568119.692 5517150.314 196.480 568127.918 5517150.293 196.480 568127.918 5517150.293 208.126 568119.692 5517150.314 208.124 568119.639 5517150.314 208.124 568119.566 5517150.314 208.213 568119.566 5517150.314 196.480 568119.639 5517150.314 196.480</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_604863_c0eebdb9-18ba-4cf4-8bbf-ea560e54c479">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d25f2782-b37f-4dd3-ab40-a3f7b7969f7e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604863_c0eebdb9-18ba-4cf4-8bbf-ea560e54c479_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604863_c0eebdb9-18ba-4cf4-8bbf-ea560e54c479_poly_0_">
                      <gml:posList srsDimension="3">568114.561 5517144.379 214.299 568114.547 5517150.277 214.299 568114.535 5517155.184 214.300 568109.808 5517150.678 208.553 568109.813 5517150.389 208.558 568109.593 5517150.390 208.291 568109.591 5517150.290 208.290 568109.466 5517144.514 208.123 568114.561 5517144.379 214.299</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_604863_bb03152e-ddfb-44fd-b658-aafcc939cab6">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b7666571-4eb2-45fd-b304-b0821700932d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604863_bb03152e-ddfb-44fd-b658-aafcc939cab6_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604863_bb03152e-ddfb-44fd-b658-aafcc939cab6_poly_0_">
                      <gml:posList srsDimension="3">568114.535 5517155.184 214.300 568109.731 5517155.196 214.300 568109.808 5517150.678 208.553 568114.535 5517155.184 214.300</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_604863_55444baa-4530-44f5-8545-ca0be8b97951">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e5c70cff-9307-42da-92d1-f58cdb705d3d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604863_55444baa-4530-44f5-8545-ca0be8b97951_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604863_55444baa-4530-44f5-8545-ca0be8b97951_poly_0_">
                      <gml:posList srsDimension="3">568119.356 5517144.254 196.480 568119.564 5517150.264 196.480 568119.566 5517150.314 196.480 568119.566 5517150.314 208.213 568119.564 5517150.264 208.216 568119.356 5517144.254 208.486 568119.356 5517144.254 196.480</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_604863_9fc3a05e-4993-402a-a485-b97dd6dac206">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4be9d138-c0e6-4a8f-a20e-8a0f5a5af5cc">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604863_9fc3a05e-4993-402a-a485-b97dd6dac206_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604863_9fc3a05e-4993-402a-a485-b97dd6dac206_poly_0_">
                      <gml:posList srsDimension="3">568119.616 5517160.028 208.124 568119.668 5517160.028 208.124 568127.960 5517160.009 208.125 568127.960 5517160.009 196.480 568119.668 5517160.028 196.480 568119.616 5517160.028 196.480 568109.649 5517160.054 196.480 568109.649 5517160.054 208.124 568119.616 5517160.028 208.124</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_604863_e6003fae-2b10-4d91-84e7-a75be7cdfe1e">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_349a70f1-b505-4701-8657-d54362c49423">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604863_e6003fae-2b10-4d91-84e7-a75be7cdfe1e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604863_e6003fae-2b10-4d91-84e7-a75be7cdfe1e_poly_0_">
                      <gml:posList srsDimension="3">568119.356 5517144.254 208.486 568119.564 5517150.264 208.216 568119.566 5517150.314 208.213 568119.639 5517150.314 208.124 568114.535 5517155.184 214.300 568114.547 5517150.277 214.299 568114.561 5517144.379 214.299 568119.356 5517144.254 208.486</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_604863_b2ed762c-b6ce-4ed0-90db-db2c20cfc4b2">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ed846eaa-9d3e-4cf7-a854-d42d856544af">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604863_b2ed762c-b6ce-4ed0-90db-db2c20cfc4b2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604863_b2ed762c-b6ce-4ed0-90db-db2c20cfc4b2_poly_0_">
                      <gml:posList srsDimension="3">568109.813 5517150.389 208.558 568109.808 5517150.678 208.553 568109.731 5517155.196 214.300 568109.653 5517159.843 208.391 568109.649 5517160.054 208.124 568109.649 5517160.054 196.480 568109.653 5517159.843 196.480 568109.731 5517155.196 196.480 568109.808 5517150.678 196.480 568109.813 5517150.389 196.480 568109.813 5517150.389 208.558</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_604863_11a670f8-6c2c-45e4-8b07-74ce14478ebd">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a4385dea-0bb3-4a92-a457-4a8ee461c63a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604863_11a670f8-6c2c-45e4-8b07-74ce14478ebd_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604863_11a670f8-6c2c-45e4-8b07-74ce14478ebd_poly_0_">
                      <gml:posList srsDimension="3">568114.561 5517144.379 196.480 568119.356 5517144.254 196.480 568119.356 5517144.254 208.486 568114.561 5517144.379 214.299 568109.466 5517144.514 208.123 568109.466 5517144.514 196.480 568114.561 5517144.379 196.480</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_604863_1a2da23c-c963-40f0-b71b-8d0349c50edd">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b5b2aa0b-a522-4c77-ade5-4792133c4388">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604863_1a2da23c-c963-40f0-b71b-8d0349c50edd_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604863_1a2da23c-c963-40f0-b71b-8d0349c50edd_poly_0_">
                      <gml:posList srsDimension="3">568109.466 5517144.514 208.123 568109.591 5517150.290 208.290 568109.593 5517150.390 208.291 568109.593 5517150.390 196.480 568109.591 5517150.290 196.480 568109.466 5517144.514 196.480 568109.466 5517144.514 208.123</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_604863_3e8e6c05-8502-4985-9b16-10e4bcc2573c">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1a0f72bf-add4-43b1-9608-a4f8f5e5911f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604863_3e8e6c05-8502-4985-9b16-10e4bcc2573c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604863_3e8e6c05-8502-4985-9b16-10e4bcc2573c_poly_0_">
                      <gml:posList srsDimension="3">568127.939 5517155.151 196.480 568127.918 5517150.293 196.480 568119.692 5517150.314 196.480 568119.639 5517150.314 196.480 568119.566 5517150.314 196.480 568119.564 5517150.264 196.480 568119.356 5517144.254 196.480 568114.561 5517144.379 196.480 568109.466 5517144.514 196.480 568109.591 5517150.290 196.480 568109.593 5517150.390 196.480 568109.813 5517150.389 196.480 568109.808 5517150.678 196.480 568109.731 5517155.196 196.480 568109.653 5517159.843 196.480 568109.649 5517160.054 196.480 568119.616 5517160.028 196.480 568119.668 5517160.028 196.480 568127.960 5517160.009 196.480 568127.939 5517155.151 196.480</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_604863_1b58a2d1-65a7-4807-92b4-54c82035b442">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fdac8e0d-0eb6-4225-9d05-5c2e3697be6f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604863_1b58a2d1-65a7-4807-92b4-54c82035b442_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604863_1b58a2d1-65a7-4807-92b4-54c82035b442_poly_0_">
                      <gml:posList srsDimension="3">568114.535 5517155.184 214.300 568119.680 5517155.171 214.300 568127.939 5517155.151 214.299 568127.960 5517160.009 208.125 568119.668 5517160.028 208.124 568119.616 5517160.028 208.124 568109.649 5517160.054 208.124 568109.653 5517159.843 208.391 568109.731 5517155.196 214.300 568114.535 5517155.184 214.300</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1975</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember><core:cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_604864">
      <gen:stringAttribute name="comment">
        <gen:value>Random year of construction, with probability from CGSC PPT Page 15.</gen:value>
      </gen:stringAttribute>
      <gml:name>DEBY_LOD2_604864</gml:name>
      <core:creationDate>2013-06-25</core:creationDate>
      <core:externalReference>
        <core:informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</core:informationSystem>
        <core:externalObject>
          <core:name>DEBYvAAAAAA9oJWs</core:name>
        </core:externalObject>
      </core:externalReference>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_1000</bldg:function>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">16.494</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_7595ce43-45d5-49b0-a6c9-050b3b70b1ff">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_8f41f095-fd62-4b6b-9f15-e821fe4858e2">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604864_b95ed315-0ca5-41fe-a840-d2d5328e25e4_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604864_b04bf797-b8c2-4f8b-a56d-fbe62b5f02a5_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604864_ad0e7ab2-86da-4eb8-bb8e-0bbe55d9a2d1_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604864_9d3f8ddf-831e-4e77-82e8-0b69c2d72643_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604864_83e7e830-0a55-4433-975b-b9c06dc37108_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604864_79b82285-92bc-4f90-b388-cecf6b0d8c3d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604864_762f46ad-6439-4cd8-93e2-125e08ef099e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604864_59f91a96-a6b5-45e9-8eac-72031d6f40c0_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604864_3714105c-03e7-4aa6-8186-bdd269332c21_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604864_268976b6-e1fc-48f0-93f4-b49dccfe83e1_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604864_14667c97-0ad5-4cbd-b238-444b58333354_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604864_0e8e55d3-6e7a-4a81-97da-34f331cff5e9_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604864_07fce186-5889-4cc8-b374-89701d843c3d_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_604864_3714105c-03e7-4aa6-8186-bdd269332c21">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4ec9bb1a-d2e5-4b34-870c-bf6e96fecbac">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604864_3714105c-03e7-4aa6-8186-bdd269332c21_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604864_3714105c-03e7-4aa6-8186-bdd269332c21_poly_0_">
                      <gml:posList srsDimension="3">568143.502 5517150.295 208.634 568143.502 5517150.295 197.760 568143.542 5517154.904 197.760 568143.585 5517159.964 197.760 568143.585 5517159.964 208.085 568143.542 5517154.904 214.254 568143.502 5517150.295 208.634</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_604864_ad0e7ab2-86da-4eb8-bb8e-0bbe55d9a2d1">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_75fe2ae1-3466-499f-b092-1600f1b69024">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604864_ad0e7ab2-86da-4eb8-bb8e-0bbe55d9a2d1_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604864_ad0e7ab2-86da-4eb8-bb8e-0bbe55d9a2d1_poly_0_">
                      <gml:posList srsDimension="3">568139.471 5517150.272 208.591 568139.477 5517149.873 208.103 568141.698 5517149.872 208.111 568142.648 5517149.891 208.137 568142.652 5517150.281 208.613 568143.502 5517150.295 208.634 568143.542 5517154.904 214.254 568127.938 5517154.950 214.254 568127.918 5517150.293 208.575 568139.471 5517150.272 208.591</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_604864_9d3f8ddf-831e-4e77-82e8-0b69c2d72643">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7e90bd21-404f-415a-af78-e959490b15fb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604864_9d3f8ddf-831e-4e77-82e8-0b69c2d72643_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604864_9d3f8ddf-831e-4e77-82e8-0b69c2d72643_poly_0_">
                      <gml:posList srsDimension="3">568143.542 5517154.904 197.760 568143.502 5517150.295 197.760 568142.652 5517150.281 197.760 568142.648 5517149.891 197.760 568141.698 5517149.872 197.760 568139.477 5517149.873 197.760 568139.471 5517150.272 197.760 568127.918 5517150.293 197.760 568127.938 5517154.950 197.760 568127.960 5517160.009 197.760 568141.755 5517159.960 197.760 568143.585 5517159.964 197.760 568143.542 5517154.904 197.760</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_604864_b04bf797-b8c2-4f8b-a56d-fbe62b5f02a5">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3214361b-7d16-483b-873a-1d8036782d30">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604864_b04bf797-b8c2-4f8b-a56d-fbe62b5f02a5_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604864_b04bf797-b8c2-4f8b-a56d-fbe62b5f02a5_poly_0_">
                      <gml:posList srsDimension="3">568139.477 5517149.873 197.760 568139.477 5517149.873 208.103 568139.471 5517150.272 208.591 568139.471 5517150.272 197.760 568139.477 5517149.873 197.760</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_604864_59f91a96-a6b5-45e9-8eac-72031d6f40c0">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d8fd57d9-8e9d-461f-b1db-78effc703a6e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604864_59f91a96-a6b5-45e9-8eac-72031d6f40c0_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604864_59f91a96-a6b5-45e9-8eac-72031d6f40c0_poly_0_">
                      <gml:posList srsDimension="3">568143.542 5517154.904 214.254 568143.585 5517159.964 208.085 568141.755 5517159.960 208.097 568127.960 5517160.009 208.085 568127.938 5517154.950 214.254 568143.542 5517154.904 214.254</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_604864_0e8e55d3-6e7a-4a81-97da-34f331cff5e9">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_625b641c-e196-4191-a4d9-909542ab699d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604864_0e8e55d3-6e7a-4a81-97da-34f331cff5e9_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604864_0e8e55d3-6e7a-4a81-97da-34f331cff5e9_poly_0_">
                      <gml:posList srsDimension="3">568142.652 5517150.281 197.760 568142.652 5517150.281 208.613 568142.648 5517149.891 208.137 568142.648 5517149.891 197.760 568142.652 5517150.281 197.760</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_604864_07fce186-5889-4cc8-b374-89701d843c3d">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fa700d74-6eed-446c-bad4-6d828eb5ccdf">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604864_07fce186-5889-4cc8-b374-89701d843c3d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604864_07fce186-5889-4cc8-b374-89701d843c3d_poly_0_">
                      <gml:posList srsDimension="3">568127.960 5517160.009 197.760 568127.960 5517160.009 208.085 568141.755 5517159.960 208.097 568141.755 5517159.960 197.760 568127.960 5517160.009 197.760</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_604864_14667c97-0ad5-4cbd-b238-444b58333354">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_850efe3d-2d5b-45a4-a00f-0854164e9cdf">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604864_14667c97-0ad5-4cbd-b238-444b58333354_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604864_14667c97-0ad5-4cbd-b238-444b58333354_poly_0_">
                      <gml:posList srsDimension="3">568143.502 5517150.295 197.760 568143.502 5517150.295 208.634 568142.652 5517150.281 208.613 568142.652 5517150.281 197.760 568143.502 5517150.295 197.760</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_604864_762f46ad-6439-4cd8-93e2-125e08ef099e">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_bc5556e5-9929-44da-a9c3-4b6e12222df3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604864_762f46ad-6439-4cd8-93e2-125e08ef099e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604864_762f46ad-6439-4cd8-93e2-125e08ef099e_poly_0_">
                      <gml:posList srsDimension="3">568142.648 5517149.891 197.760 568142.648 5517149.891 208.137 568141.698 5517149.872 208.111 568141.698 5517149.872 197.760 568142.648 5517149.891 197.760</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_604864_268976b6-e1fc-48f0-93f4-b49dccfe83e1">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4c48604a-a666-4db2-960e-d33777c3f31b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604864_268976b6-e1fc-48f0-93f4-b49dccfe83e1_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604864_268976b6-e1fc-48f0-93f4-b49dccfe83e1_poly_0_">
                      <gml:posList srsDimension="3">568139.471 5517150.272 197.760 568139.471 5517150.272 208.591 568127.918 5517150.293 208.575 568127.918 5517150.293 197.760 568139.471 5517150.272 197.760</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_604864_b95ed315-0ca5-41fe-a840-d2d5328e25e4">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2794745a-be26-4072-a093-b7da3e401b9d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604864_b95ed315-0ca5-41fe-a840-d2d5328e25e4_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604864_b95ed315-0ca5-41fe-a840-d2d5328e25e4_poly_0_">
                      <gml:posList srsDimension="3">568127.918 5517150.293 208.575 568127.938 5517154.950 214.254 568127.960 5517160.009 208.085 568127.960 5517160.009 197.760 568127.938 5517154.950 197.760 568127.918 5517150.293 197.760 568127.918 5517150.293 208.575</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_604864_79b82285-92bc-4f90-b388-cecf6b0d8c3d">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4b01a486-aa47-417f-a5f5-ae1637f52264">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604864_79b82285-92bc-4f90-b388-cecf6b0d8c3d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604864_79b82285-92bc-4f90-b388-cecf6b0d8c3d_poly_0_">
                      <gml:posList srsDimension="3">568141.698 5517149.872 197.760 568141.698 5517149.872 208.111 568139.477 5517149.873 208.103 568139.477 5517149.873 197.760 568141.698 5517149.872 197.760</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_604864_83e7e830-0a55-4433-975b-b9c06dc37108">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4bc22ae2-483b-4eea-abf2-aab14b6dbdec">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604864_83e7e830-0a55-4433-975b-b9c06dc37108_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604864_83e7e830-0a55-4433-975b-b9c06dc37108_poly_0_">
                      <gml:posList srsDimension="3">568141.755 5517159.960 197.760 568141.755 5517159.960 208.097 568143.585 5517159.964 208.085 568143.585 5517159.964 197.760 568141.755 5517159.960 197.760</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1915</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember><core:cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_604865">
      <gen:stringAttribute name="comment">
        <gen:value>Random year of construction, with probability from CGSC PPT Page 15.</gen:value>
      </gen:stringAttribute>
      <gml:name>DEBY_LOD2_604865</gml:name>
      <core:creationDate>2013-06-25</core:creationDate>
      <core:externalReference>
        <core:informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</core:informationSystem>
        <core:externalObject>
          <core:name>DEBYvAAAAAA9oJSd</core:name>
        </core:externalObject>
      </core:externalReference>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_9998</bldg:function>
      <bldg:roofType>3600</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">49.250</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_44da740b-a5cd-4dfa-adfb-e49e3688d322">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_fd046326-10af-4cc8-ada9-c5eb8f0f3930">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604865_fd2b2136-b942-4277-bb92-65a05f174c9e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604865_f08bd756-c06b-4f5d-9cac-f376f7396af4_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604865_ce138745-6618-4e09-af8a-03fe7b87a765_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604865_ccd375ae-913d-480d-9fdf-bcaad6674b34_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604865_b92474aa-bef5-4f56-8ed7-ec326c7bd6f6_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604865_b06ca4e0-cb99-4d8c-aa79-da5594faa37f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604865_acd41ac4-a192-4da2-bba6-f59c9fb20f2a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604865_a273a887-42ea-46ca-9b5d-98645d8898af_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604865_93e8e84c-3c1e-4c61-a088-ee5a43e491c9_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604865_90f7b7f8-246d-4684-8d97-b713c8056cb8_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604865_626936ce-d2f7-4458-b5f4-c8ff4df873b5_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604865_41ef1573-92d6-4da1-8141-e99eb57787c4_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604865_14d9ea02-0831-4533-bfe9-86c8c09b2407_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_604865_fd2b2136-b942-4277-bb92-65a05f174c9e">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2f6b11f1-9394-48b3-885a-093a462fdd15">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604865_fd2b2136-b942-4277-bb92-65a05f174c9e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604865_fd2b2136-b942-4277-bb92-65a05f174c9e_poly_0_">
                      <gml:posList srsDimension="3">568153.899 5517152.308 247.100 568150.288 5517155.981 235.574 568150.268 5517155.981 235.509 568150.230 5517148.676 235.602 568153.899 5517152.308 247.100</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_604865_ce138745-6618-4e09-af8a-03fe7b87a765">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1833e656-fa32-4086-8d18-a605b3fea2fa">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604865_ce138745-6618-4e09-af8a-03fe7b87a765_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604865_ce138745-6618-4e09-af8a-03fe7b87a765_poly_0_">
                      <gml:posList srsDimension="3">568157.566 5517154.094 197.850 568157.566 5517154.094 235.555 568157.515 5517148.629 235.558 568157.515 5517148.629 197.850 568157.566 5517154.094 197.850</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_604865_93e8e84c-3c1e-4c61-a088-ee5a43e491c9">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_bb628519-5dcb-452c-9fa2-9a4589c9829d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604865_93e8e84c-3c1e-4c61-a088-ee5a43e491c9_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604865_93e8e84c-3c1e-4c61-a088-ee5a43e491c9_poly_0_">
                      <gml:posList srsDimension="3">568153.899 5517152.308 247.100 568157.582 5517155.946 235.558 568157.582 5517155.946 235.540 568153.899 5517152.308 247.100</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_604865_f08bd756-c06b-4f5d-9cac-f376f7396af4">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fb2b1258-7101-4274-868b-96ea9f0fcc19">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604865_f08bd756-c06b-4f5d-9cac-f376f7396af4_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604865_f08bd756-c06b-4f5d-9cac-f376f7396af4_poly_0_">
                      <gml:posList srsDimension="3">568153.899 5517152.308 247.100 568150.230 5517148.676 235.602 568150.230 5517148.676 235.560 568153.899 5517152.308 247.100</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_604865_14d9ea02-0831-4533-bfe9-86c8c09b2407">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_afec18b5-39a3-4b95-80c7-3643c4d66e73">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604865_14d9ea02-0831-4533-bfe9-86c8c09b2407_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604865_14d9ea02-0831-4533-bfe9-86c8c09b2407_poly_0_">
                      <gml:posList srsDimension="3">568153.032 5517148.659 235.561 568157.515 5517148.629 235.558 568153.899 5517152.308 247.100 568150.230 5517148.676 235.560 568153.032 5517148.659 235.561</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_604865_626936ce-d2f7-4458-b5f4-c8ff4df873b5">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_cf3bc370-18b2-4c01-876c-a24b42745601">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604865_626936ce-d2f7-4458-b5f4-c8ff4df873b5_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604865_626936ce-d2f7-4458-b5f4-c8ff4df873b5_poly_0_">
                      <gml:posList srsDimension="3">568153.032 5517148.659 197.850 568153.032 5517148.659 235.561 568150.230 5517148.676 235.560 568150.230 5517148.676 197.850 568153.032 5517148.659 197.850</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_604865_ccd375ae-913d-480d-9fdf-bcaad6674b34">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_48a9679e-a12f-44b5-b07f-7e979bdd53f5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604865_ccd375ae-913d-480d-9fdf-bcaad6674b34_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604865_ccd375ae-913d-480d-9fdf-bcaad6674b34_poly_0_">
                      <gml:posList srsDimension="3">568157.515 5517148.629 235.558 568157.566 5517154.094 235.555 568157.582 5517155.946 235.558 568153.899 5517152.308 247.100 568157.515 5517148.629 235.558</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_604865_90f7b7f8-246d-4684-8d97-b713c8056cb8">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ff2581d4-0193-4bab-b3f4-ba4d29708502">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604865_90f7b7f8-246d-4684-8d97-b713c8056cb8_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604865_90f7b7f8-246d-4684-8d97-b713c8056cb8_poly_0_">
                      <gml:posList srsDimension="3">568157.515 5517148.629 197.850 568157.515 5517148.629 235.558 568153.032 5517148.659 235.561 568153.032 5517148.659 197.850 568157.515 5517148.629 197.850</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_604865_41ef1573-92d6-4da1-8141-e99eb57787c4">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_031f8239-73e7-4e25-8806-d3f848ada62d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604865_41ef1573-92d6-4da1-8141-e99eb57787c4_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604865_41ef1573-92d6-4da1-8141-e99eb57787c4_poly_0_">
                      <gml:posList srsDimension="3">568150.230 5517148.676 197.850 568150.230 5517148.676 235.560 568150.230 5517148.676 235.602 568150.268 5517155.981 235.509 568150.268 5517155.981 197.850 568150.230 5517148.676 197.850</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
For faster browsing, not all history is shown. View entire blame