Grombühl_v4_case_study.gml 6.37 MB
Newer Older
Eric Duminil's avatar
Eric Duminil committed
61001
61002
61003
61004
61005
61006
61007
61008
61009
61010
61011
61012
61013
61014
61015
61016
61017
61018
61019
61020
61021
61022
61023
61024
61025
61026
61027
61028
61029
61030
61031
61032
61033
61034
61035
61036
61037
61038
61039
61040
61041
61042
61043
61044
61045
61046
61047
61048
61049
61050
61051
61052
61053
61054
61055
61056
61057
61058
61059
61060
61061
61062
61063
61064
61065
61066
61067
61068
61069
61070
61071
61072
61073
61074
61075
61076
61077
61078
61079
61080
61081
61082
61083
61084
61085
61086
61087
61088
61089
61090
61091
61092
61093
61094
61095
61096
61097
61098
61099
61100
61101
61102
61103
61104
61105
61106
61107
61108
61109
61110
61111
61112
61113
61114
61115
61116
61117
61118
61119
61120
61121
61122
61123
61124
61125
61126
61127
61128
61129
61130
61131
61132
61133
61134
61135
61136
61137
61138
61139
61140
61141
61142
61143
61144
61145
61146
61147
61148
61149
61150
61151
61152
61153
61154
61155
61156
61157
61158
61159
61160
61161
61162
61163
61164
61165
61166
61167
61168
61169
61170
61171
61172
61173
61174
61175
61176
61177
61178
61179
61180
61181
61182
61183
61184
61185
61186
61187
61188
61189
61190
61191
61192
61193
61194
61195
61196
61197
61198
61199
61200
61201
61202
61203
61204
61205
61206
61207
61208
61209
61210
61211
61212
61213
61214
61215
61216
61217
61218
61219
61220
61221
61222
61223
61224
61225
61226
61227
61228
61229
61230
61231
61232
61233
61234
61235
61236
61237
61238
61239
61240
61241
61242
61243
61244
61245
61246
61247
61248
61249
61250
61251
61252
61253
61254
61255
61256
61257
61258
61259
61260
61261
61262
61263
61264
61265
61266
61267
61268
61269
61270
61271
61272
61273
61274
61275
61276
61277
61278
61279
61280
61281
61282
61283
61284
61285
61286
61287
61288
61289
61290
61291
61292
61293
61294
61295
61296
61297
61298
61299
61300
61301
61302
61303
61304
61305
61306
61307
61308
61309
61310
61311
61312
61313
61314
61315
61316
61317
61318
61319
61320
61321
61322
61323
61324
61325
61326
61327
61328
61329
61330
61331
61332
61333
61334
61335
61336
61337
61338
61339
61340
61341
61342
61343
61344
61345
61346
61347
61348
61349
61350
61351
61352
61353
61354
61355
61356
61357
61358
61359
61360
61361
61362
61363
61364
61365
61366
61367
61368
61369
61370
61371
61372
61373
61374
61375
61376
61377
61378
61379
61380
61381
61382
61383
61384
61385
61386
61387
61388
61389
61390
61391
61392
61393
61394
61395
61396
61397
61398
61399
61400
61401
61402
61403
61404
61405
61406
61407
61408
61409
61410
61411
61412
61413
61414
61415
61416
61417
61418
61419
61420
61421
61422
61423
61424
61425
61426
61427
61428
61429
61430
61431
61432
61433
61434
61435
61436
61437
61438
61439
61440
61441
61442
61443
61444
61445
61446
61447
61448
61449
61450
61451
61452
61453
61454
61455
61456
61457
61458
61459
61460
61461
61462
61463
61464
61465
61466
61467
61468
61469
61470
61471
61472
61473
61474
61475
61476
61477
61478
61479
61480
61481
61482
61483
61484
61485
61486
61487
61488
61489
61490
61491
61492
61493
61494
61495
61496
61497
61498
61499
61500
61501
61502
61503
61504
61505
61506
61507
61508
61509
61510
61511
61512
61513
61514
61515
61516
61517
61518
61519
61520
61521
61522
61523
61524
61525
61526
61527
61528
61529
61530
61531
61532
61533
61534
61535
61536
61537
61538
61539
61540
61541
61542
61543
61544
61545
61546
61547
61548
61549
61550
61551
61552
61553
61554
61555
61556
61557
61558
61559
61560
61561
61562
61563
61564
61565
61566
61567
61568
61569
61570
61571
61572
61573
61574
61575
61576
61577
61578
61579
61580
61581
61582
61583
61584
61585
61586
61587
61588
61589
61590
61591
61592
61593
61594
61595
61596
61597
61598
61599
61600
61601
61602
61603
61604
61605
61606
61607
61608
61609
61610
61611
61612
61613
61614
61615
61616
61617
61618
61619
61620
61621
61622
61623
61624
61625
61626
61627
61628
61629
61630
61631
61632
61633
61634
61635
61636
61637
61638
61639
61640
61641
61642
61643
61644
61645
61646
61647
61648
61649
61650
61651
61652
61653
61654
61655
61656
61657
61658
61659
61660
61661
61662
61663
61664
61665
61666
61667
61668
61669
61670
61671
61672
61673
61674
61675
61676
61677
61678
61679
61680
61681
61682
61683
61684
61685
61686
61687
61688
61689
61690
61691
61692
61693
61694
61695
61696
61697
61698
61699
61700
61701
61702
61703
61704
61705
61706
61707
61708
61709
61710
61711
61712
61713
61714
61715
61716
61717
61718
61719
61720
61721
61722
61723
61724
61725
61726
61727
61728
61729
61730
61731
61732
61733
61734
61735
61736
61737
61738
61739
61740
61741
61742
61743
61744
61745
61746
61747
61748
61749
61750
61751
61752
61753
61754
61755
61756
61757
61758
61759
61760
61761
61762
61763
61764
61765
61766
61767
61768
61769
61770
61771
61772
61773
61774
61775
61776
61777
61778
61779
61780
61781
61782
61783
61784
61785
61786
61787
61788
61789
61790
61791
61792
61793
61794
61795
61796
61797
61798
61799
61800
61801
61802
61803
61804
61805
61806
61807
61808
61809
61810
61811
61812
61813
61814
61815
61816
61817
61818
61819
61820
61821
61822
61823
61824
61825
61826
61827
61828
61829
61830
61831
61832
61833
61834
61835
61836
61837
61838
61839
61840
61841
61842
61843
61844
61845
61846
61847
61848
61849
61850
61851
61852
61853
61854
61855
61856
61857
61858
61859
61860
61861
61862
61863
61864
61865
61866
61867
61868
61869
61870
61871
61872
61873
61874
61875
61876
61877
61878
61879
61880
61881
61882
61883
61884
61885
61886
61887
61888
61889
61890
61891
61892
61893
61894
61895
61896
61897
61898
61899
61900
61901
61902
61903
61904
61905
61906
61907
61908
61909
61910
61911
61912
61913
61914
61915
61916
61917
61918
61919
61920
61921
61922
61923
61924
61925
61926
61927
61928
61929
61930
61931
61932
61933
61934
61935
61936
61937
61938
61939
61940
61941
61942
61943
61944
61945
61946
61947
61948
61949
61950
61951
61952
61953
61954
61955
61956
61957
61958
61959
61960
61961
61962
61963
61964
61965
61966
61967
61968
61969
61970
61971
61972
61973
61974
61975
61976
61977
61978
61979
61980
61981
61982
61983
61984
61985
61986
61987
61988
61989
61990
61991
61992
61993
61994
61995
61996
61997
61998
61999
62000
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107600282_2d970467-4545-4e13-9caa-ea0772452a95_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107600282_67bed61c-aa70-4e5d-98b2-f84910e2a51c_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107600282_5e80931b-fb4f-4cd7-b625-4e545c136986_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107600282_51132296-f397-4049-94dc-e01745b8ebaf_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107600282_ba75079b-cab0-45fe-b9c2-9b172b9369bb_2_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_107600282_ba75079b-cab0-45fe-b9c2-9b172b9369bb_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_51b622e3-b91a-4504-8f1a-e021c797a48e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107600282_ba75079b-cab0-45fe-b9c2-9b172b9369bb_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107600282_ba75079b-cab0-45fe-b9c2-9b172b9369bb_2_poly_0_">
                      <gml:posList srsDimension="3">568392.87 5517046.55 0.0 568392.87 5517046.55 2.5600000000000023 568392.66 5517043.59 2.5600000000000023 568392.66 5517043.59 0.0 568392.87 5517046.55 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_107600282_2803980d-c2b3-417a-a72f-9c5c0dc9ebbd_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_59f462c3-e07e-4213-a94b-3fa9f27f8e15">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107600282_2803980d-c2b3-417a-a72f-9c5c0dc9ebbd_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107600282_2803980d-c2b3-417a-a72f-9c5c0dc9ebbd_2_poly_0_">
                      <gml:posList srsDimension="3">568392.66 5517043.59 2.5600000000000023 568392.87 5517046.55 2.5600000000000023 568387.51 5517046.98 2.5600000000000023 568387.3 5517043.98 2.5600000000000023 568392.66 5517043.59 2.5600000000000023</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_107600282_67bed61c-aa70-4e5d-98b2-f84910e2a51c_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_24e0b55a-681c-4403-90ec-d03fabc029a2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107600282_67bed61c-aa70-4e5d-98b2-f84910e2a51c_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107600282_67bed61c-aa70-4e5d-98b2-f84910e2a51c_2_poly_0_">
                      <gml:posList srsDimension="3">568387.51 5517046.98 0.0 568387.51 5517046.98 2.5600000000000023 568392.87 5517046.55 2.5600000000000023 568392.87 5517046.55 0.0 568387.51 5517046.98 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_107600282_2d970467-4545-4e13-9caa-ea0772452a95_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_12b3ff85-0103-4d11-bf7f-ac515192650d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107600282_2d970467-4545-4e13-9caa-ea0772452a95_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107600282_2d970467-4545-4e13-9caa-ea0772452a95_2_poly_0_">
                      <gml:posList srsDimension="3">568387.3 5517043.98 0.0 568387.51 5517046.98 0.0 568392.87 5517046.55 0.0 568392.66 5517043.59 0.0 568387.3 5517043.98 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_107600282_5e80931b-fb4f-4cd7-b625-4e545c136986_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ffe62097-7e94-4e01-8e10-9f6177e209b5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107600282_5e80931b-fb4f-4cd7-b625-4e545c136986_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107600282_5e80931b-fb4f-4cd7-b625-4e545c136986_2_poly_0_">
                      <gml:posList srsDimension="3">568392.66 5517043.59 0.0 568392.66 5517043.59 2.5600000000000023 568387.3 5517043.98 2.5600000000000023 568387.3 5517043.98 0.0 568392.66 5517043.59 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_107600282_51132296-f397-4049-94dc-e01745b8ebaf_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8aebd2ff-3f59-4e45-9532-71e87311c70c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107600282_51132296-f397-4049-94dc-e01745b8ebaf_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107600282_51132296-f397-4049-94dc-e01745b8ebaf_2_poly_0_">
                      <gml:posList srsDimension="3">568387.3 5517043.98 0.0 568387.3 5517043.98 2.5600000000000023 568387.51 5517046.98 2.5600000000000023 568387.51 5517046.98 0.0 568387.3 5517043.98 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_605089">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odYP</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>Josef-Schneider-Straße 5, 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>1000</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">17.49</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_7e69466c-3703-4546-aa28-d0455684f904">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_ee9b170d-40c0-45b3-9467-e37eeb3eb053">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605089_8ab7a2a6-047b-4b23-acfd-4c9c2091423e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605089_2eaf01f6-dd39-4a4b-a840-900177abe259_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605089_eccc59e3-d616-4e2e-864f-8da04e4fb855_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605089_a18c751b-f533-41b2-ac83-f801a22ee921_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605089_877e6b72-6a39-4fc9-b66d-bed80a1b6580_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605089_a1156c09-774b-44ad-a342-12123f791a85_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605089_d611b48c-a0cc-449a-ba02-59a9dc928820_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605089_65fd75f8-a160-4061-9d69-4f51181bb30d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605089_3a8b60e3-b8c9-44ac-a179-44a644ba981d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605089_b179b776-f3f8-4d06-9383-0acb118c07f7_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605089_4009eeaa-193f-4d8c-94ac-29c7120a1690_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605089_5bcb56b3-e072-4038-a26b-adebdb3d3800_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605089_238aaa5a-137e-4d21-93a8-4d722b2e1c53_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605089_bc36fc8c-17df-422c-af44-8bf3cbb46f8e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605089_dee099f3-d86b-4c35-b3ed-890a87407efc_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605089_d4392b40-c886-4dfc-a52f-692eaa7d47c9_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605089_cc01591b-d861-46dc-a42b-a8cc3f9093dc_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605089_231d53ef-519b-4b23-b78e-f940183b8b0e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605089_ed759a18-0192-4fc3-b8e2-ed6d67c2f4b3_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605089_d4392b40-c886-4dfc-a52f-692eaa7d47c9">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_996e5e70-7078-4931-8fa9-07431392a5f5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605089_d4392b40-c886-4dfc-a52f-692eaa7d47c9_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605089_d4392b40-c886-4dfc-a52f-692eaa7d47c9_poly_0_">
                      <gml:posList srsDimension="3">568600.474 5516968.466 0.0 568600.474 5516968.466 17.48999999999998 568600.948 5516967.846 17.48999999999998 568600.948 5516967.846 0.0 568600.474 5516968.466 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_605089_65fd75f8-a160-4061-9d69-4f51181bb30d">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_0c9deb4a-0134-4dd1-bcfb-4ee24ac404f8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605089_65fd75f8-a160-4061-9d69-4f51181bb30d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605089_65fd75f8-a160-4061-9d69-4f51181bb30d_poly_0_">
                      <gml:posList srsDimension="3">568594.758 5516960.183 0.0 568594.758 5516960.183 17.48999999999998 568593.333 5516961.555 17.48999999999998 568593.333 5516961.555 0.0 568594.758 5516960.183 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_605089_cc01591b-d861-46dc-a42b-a8cc3f9093dc">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6bd90328-eddc-4b9e-806a-c66b4e7d3ebf">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605089_cc01591b-d861-46dc-a42b-a8cc3f9093dc_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605089_cc01591b-d861-46dc-a42b-a8cc3f9093dc_poly_0_">
                      <gml:posList srsDimension="3">568601.684 5516968.384 14.817999999999984 568601.684 5516968.384 17.48999999999998 568609.291 5516958.666 17.48999999999998 568609.291 5516958.666 14.817999999999984 568601.684 5516968.384 14.817999999999984</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_605089_2eaf01f6-dd39-4a4b-a840-900177abe259">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a0b24c77-08ee-445e-9774-85a7fe472cbe">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605089_2eaf01f6-dd39-4a4b-a840-900177abe259_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605089_2eaf01f6-dd39-4a4b-a840-900177abe259_poly_0_">
                      <gml:posList srsDimension="3">568593.333 5516961.555 0.0 568593.333 5516961.555 17.48999999999998 568596.799 5516964.132 17.48999999999998 568596.799 5516964.132 0.0 568593.333 5516961.555 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_605089_3a8b60e3-b8c9-44ac-a179-44a644ba981d">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b39bc54c-f241-4866-8f36-b030ab6dface">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605089_3a8b60e3-b8c9-44ac-a179-44a644ba981d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605089_3a8b60e3-b8c9-44ac-a179-44a644ba981d_poly_0_">
                      <gml:posList srsDimension="3">568600.429 5516950.946 0.0 568600.429 5516950.946 17.48999999999998 568594.514 5516950.859 17.48999999999998 568594.514 5516950.859 0.0 568600.429 5516950.946 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_605089_8ab7a2a6-047b-4b23-acfd-4c9c2091423e">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_447fb59c-e379-4843-b071-8864f226f35f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605089_8ab7a2a6-047b-4b23-acfd-4c9c2091423e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605089_8ab7a2a6-047b-4b23-acfd-4c9c2091423e_poly_0_">
                      <gml:posList srsDimension="3">568600.406 5516952.015 0.0 568600.406 5516952.015 17.48999999999998 568600.429 5516950.946 17.48999999999998 568600.429 5516950.946 0.0 568600.406 5516952.015 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_605089_bc36fc8c-17df-422c-af44-8bf3cbb46f8e">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c91a1eeb-180d-4b30-bdea-7a568bb1f804">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605089_bc36fc8c-17df-422c-af44-8bf3cbb46f8e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605089_bc36fc8c-17df-422c-af44-8bf3cbb46f8e_poly_0_">
                      <gml:posList srsDimension="3">568604.706 5516970.594 0.0 568604.706 5516970.594 14.817999999999984 568609.173 5516964.907 14.817999999999984 568609.173 5516964.907 0.0 568604.706 5516970.594 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_605089_a1156c09-774b-44ad-a342-12123f791a85">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_0fb392d8-f910-4324-bdb3-d6000889da1b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605089_a1156c09-774b-44ad-a342-12123f791a85_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605089_a1156c09-774b-44ad-a342-12123f791a85_poly_0_">
                      <gml:posList srsDimension="3">568600.406 5516952.015 0.0 568609.291 5516958.666 0.0 568610.545 5516959.605 0.0 568610.545 5516959.605 14.817999999999984 568609.291 5516958.666 14.817999999999984 568609.291 5516958.666 17.48999999999998 568600.406 5516952.015 17.48999999999998 568600.406 5516952.015 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_605089_dee099f3-d86b-4c35-b3ed-890a87407efc">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fa1882b1-01e8-4919-9809-9c0bf59add94">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605089_dee099f3-d86b-4c35-b3ed-890a87407efc_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605089_dee099f3-d86b-4c35-b3ed-890a87407efc_poly_0_">
                      <gml:posList srsDimension="3">568596.799 5516964.132 0.0 568596.799 5516964.132 17.48999999999998 568596.049 5516965.121 17.48999999999998 568596.049 5516965.121 0.0 568596.799 5516964.132 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_605089_d611b48c-a0cc-449a-ba02-59a9dc928820">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_98465c91-fce5-4312-9e64-a92d712c8484">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605089_d611b48c-a0cc-449a-ba02-59a9dc928820_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605089_d611b48c-a0cc-449a-ba02-59a9dc928820_poly_0_">
                      <gml:posList srsDimension="3">568594.157 5516950.294 17.48999999999998 568594.188 5516950.803 17.48999999999998 568594.758 5516960.183 17.48999999999998 568594.758 5516960.183 0.0 568594.188 5516950.803 0.0 568594.157 5516950.294 0.0 568594.157 5516950.294 17.48999999999998</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_605089_5bcb56b3-e072-4038-a26b-adebdb3d3800">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_35cf7f3c-0ae7-4669-8a7c-ed7bad9e063d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605089_5bcb56b3-e072-4038-a26b-adebdb3d3800_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605089_5bcb56b3-e072-4038-a26b-adebdb3d3800_poly_0_">
                      <gml:posList srsDimension="3">568609.173 5516964.907 0.0 568609.173 5516964.907 14.817999999999984 568607.458 5516963.569 14.817999999999984 568607.458 5516963.569 0.0 568609.173 5516964.907 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_605089_238aaa5a-137e-4d21-93a8-4d722b2e1c53">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4b9dc329-8dfa-4eac-bd3e-9d5efd299dea">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605089_238aaa5a-137e-4d21-93a8-4d722b2e1c53_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605089_238aaa5a-137e-4d21-93a8-4d722b2e1c53_poly_0_">
                      <gml:posList srsDimension="3">568594.475 5516950.337 0.0 568594.475 5516950.337 17.48999999999998 568594.157 5516950.294 17.48999999999998 568594.157 5516950.294 0.0 568594.475 5516950.337 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_605089_877e6b72-6a39-4fc9-b66d-bed80a1b6580">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_80ac4484-becd-4d46-af21-72bbe3bc2634">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605089_877e6b72-6a39-4fc9-b66d-bed80a1b6580_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605089_877e6b72-6a39-4fc9-b66d-bed80a1b6580_poly_0_">
                      <gml:posList srsDimension="3">568594.475 5516950.337 0.0 568594.51 5516950.808 0.0 568594.514 5516950.859 0.0 568594.514 5516950.859 17.48999999999998 568594.51 5516950.808 17.48999999999998 568594.475 5516950.337 17.48999999999998 568594.475 5516950.337 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_605089_eccc59e3-d616-4e2e-864f-8da04e4fb855">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d613a395-0310-447d-b9ec-179ad7c30615">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605089_eccc59e3-d616-4e2e-864f-8da04e4fb855_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605089_eccc59e3-d616-4e2e-864f-8da04e4fb855_poly_0_">
                      <gml:posList srsDimension="3">568600.948 5516967.846 17.48999999999998 568601.684 5516968.384 17.48999999999998 568601.684 5516968.384 14.817999999999984 568604.706 5516970.594 14.817999999999984 568604.706 5516970.594 0.0 568601.684 5516968.384 0.0 568600.948 5516967.846 0.0 568600.948 5516967.846 17.48999999999998</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_605089_231d53ef-519b-4b23-b78e-f940183b8b0e">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4d8a123f-1430-43b0-96d5-31e3758fcfad">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605089_231d53ef-519b-4b23-b78e-f940183b8b0e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605089_231d53ef-519b-4b23-b78e-f940183b8b0e_poly_0_">
                      <gml:posList srsDimension="3">568609.291 5516958.666 0.0 568600.406 5516952.015 0.0 568600.429 5516950.946 0.0 568594.514 5516950.859 0.0 568594.51 5516950.808 0.0 568594.475 5516950.337 0.0 568594.157 5516950.294 0.0 568594.188 5516950.803 0.0 568594.758 5516960.183 0.0 568593.333 5516961.555 0.0 568596.799 5516964.132 0.0 568596.049 5516965.121 0.0 568600.474 5516968.466 0.0 568600.948 5516967.846 0.0 568601.684 5516968.384 0.0 568604.706 5516970.594 0.0 568609.173 5516964.907 0.0 568607.458 5516963.569 0.0 568610.545 5516959.605 0.0 568609.291 5516958.666 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_605089_b179b776-f3f8-4d06-9383-0acb118c07f7">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1571aa39-be6b-4918-a62d-491f1a6f54a5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605089_b179b776-f3f8-4d06-9383-0acb118c07f7_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605089_b179b776-f3f8-4d06-9383-0acb118c07f7_poly_0_">
                      <gml:posList srsDimension="3">568594.758 5516960.183 17.48999999999998 568594.188 5516950.803 17.48999999999998 568594.157 5516950.294 17.48999999999998 568594.475 5516950.337 17.48999999999998 568594.51 5516950.808 17.48999999999998 568594.514 5516950.859 17.48999999999998 568600.429 5516950.946 17.48999999999998 568600.406 5516952.015 17.48999999999998 568609.291 5516958.666 17.48999999999998 568601.684 5516968.384 17.48999999999998 568600.948 5516967.846 17.48999999999998 568600.474 5516968.466 17.48999999999998 568596.049 5516965.121 17.48999999999998 568596.799 5516964.132 17.48999999999998 568593.333 5516961.555 17.48999999999998 568594.758 5516960.183 17.48999999999998</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_605089_a18c751b-f533-41b2-ac83-f801a22ee921">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1b2dedd3-f189-4c66-bc64-a0df859b381a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605089_a18c751b-f533-41b2-ac83-f801a22ee921_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605089_a18c751b-f533-41b2-ac83-f801a22ee921_poly_0_">
                      <gml:posList srsDimension="3">568609.291 5516958.666 14.817999999999984 568610.545 5516959.605 14.817999999999984 568607.458 5516963.569 14.817999999999984 568609.173 5516964.907 14.817999999999984 568604.706 5516970.594 14.817999999999984 568601.684 5516968.384 14.817999999999984 568609.291 5516958.666 14.817999999999984</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_605089_ed759a18-0192-4fc3-b8e2-ed6d67c2f4b3">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c687cc92-d1ff-4468-a865-b210c7ccd32c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605089_ed759a18-0192-4fc3-b8e2-ed6d67c2f4b3_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605089_ed759a18-0192-4fc3-b8e2-ed6d67c2f4b3_poly_0_">
                      <gml:posList srsDimension="3">568607.458 5516963.569 0.0 568607.458 5516963.569 14.817999999999984 568610.545 5516959.605 14.817999999999984 568610.545 5516959.605 0.0 568607.458 5516963.569 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_605089_4009eeaa-193f-4d8c-94ac-29c7120a1690">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_32199e1f-7f35-4e97-8ebe-8b43b3dde319">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605089_4009eeaa-193f-4d8c-94ac-29c7120a1690_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605089_4009eeaa-193f-4d8c-94ac-29c7120a1690_poly_0_">
                      <gml:posList srsDimension="3">568596.049 5516965.121 0.0 568596.049 5516965.121 17.48999999999998 568600.474 5516968.466 17.48999999999998 568600.474 5516968.466 0.0 568596.049 5516965.121 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_605075">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9oeOP</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-24</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_9998</bldg:function>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">17.849</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_3f1b1d8c-6901-4992-8958-203b57461da0">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_adbcd815-4212-4f5c-b177-0ae207da4f6b">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605075_293d1625-2260-4239-a2f5-d6a824ff1edb_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605075_0f4c0382-122b-46fb-be81-5ca08cde93f9_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605075_6dace770-cee6-4f85-bcaa-9233e28e7b35_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605075_9ba6cc9d-ee06-4258-bdc3-2d0b6ee2be86_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605075_2ea4e98f-03a7-4d22-a7a5-3e40f681ab0a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605075_210ca6eb-1572-47ba-8ea9-55570b22de23_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605075_27118a1c-a53e-47b5-bfea-01fd1cbfb802_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605075_eac8af84-75f0-4c7a-8f75-4049bd1f0b16_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605075_86f2cc52-97ec-4ca3-aef3-7852b2405ef1_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605075_ad4876c3-27b2-4173-9fb6-e6937b462490_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605075_b32fff71-54aa-4510-a861-2a385bd1bd66_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605075_05bd8795-098d-484c-ad79-277331899cd8_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605075_41d55171-939a-420c-991f-212bf26e05ce_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605075_b56b1ade-610c-4789-8df2-53f9debfee83_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605075_58aacacf-a68a-49ec-a8fc-839abde92077_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605075_0941a9e2-9379-49e9-b363-c4509e934793_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605075_9ba6cc9d-ee06-4258-bdc3-2d0b6ee2be86">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b29535ea-4b79-4fdc-b6d2-75863871f153">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605075_9ba6cc9d-ee06-4258-bdc3-2d0b6ee2be86_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605075_9ba6cc9d-ee06-4258-bdc3-2d0b6ee2be86_poly_0_">
                      <gml:posList srsDimension="3">568511.627 5517021.218 14.150999999999982 568511.627 5517021.218 0.0 568511.999 5517027.324 0.0 568512.289 5517032.096 0.0 568512.289 5517032.096 14.958999999999975 568511.999 5517027.324 17.84899999999999 568511.627 5517021.218 14.150999999999982</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_605075_05bd8795-098d-484c-ad79-277331899cd8">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f6f827ce-82f4-40c7-9d5a-f9b6c300c812">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605075_05bd8795-098d-484c-ad79-277331899cd8_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605075_05bd8795-098d-484c-ad79-277331899cd8_poly_0_">
                      <gml:posList srsDimension="3">568505.04 5517027.748 17.84899999999999 568511.999 5517027.324 17.84899999999999 568512.289 5517032.096 14.958999999999975 568506.932 5517032.433 14.950999999999993 568507.115 5517033.131 14.524000000000001 568506.646 5517033.724 14.182999999999993 568506.609 5517033.771 14.152999999999992 568499.425 5517028.09 17.84899999999999 568505.04 5517027.748 17.84899999999999</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_605075_41d55171-939a-420c-991f-212bf26e05ce">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b3e90b04-1f33-4fe3-92aa-c180134e8cd7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605075_41d55171-939a-420c-991f-212bf26e05ce_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605075_41d55171-939a-420c-991f-212bf26e05ce_poly_0_">
                      <gml:posList srsDimension="3">568503.42 5517021.719 14.150999999999982 568511.627 5517021.218 14.150999999999982 568511.999 5517027.324 17.84899999999999 568505.04 5517027.748 17.84899999999999 568499.425 5517028.09 17.84899999999999 568493.166 5517023.139 14.631 568493.103 5517022.346 14.150999999999982 568503.42 5517021.719 14.150999999999982</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_605075_2ea4e98f-03a7-4d22-a7a5-3e40f681ab0a">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2374cdbd-1208-4f75-b921-733c7d43ab49">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605075_2ea4e98f-03a7-4d22-a7a5-3e40f681ab0a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605075_2ea4e98f-03a7-4d22-a7a5-3e40f681ab0a_poly_0_">
                      <gml:posList srsDimension="3">568506.932 5517032.433 0.0 568506.932 5517032.433 14.950999999999993 568512.289 5517032.096 14.958999999999975 568512.289 5517032.096 0.0 568506.932 5517032.433 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_605075_0f4c0382-122b-46fb-be81-5ca08cde93f9">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e2239c27-2201-4169-8ea3-a4ccc7544161">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605075_0f4c0382-122b-46fb-be81-5ca08cde93f9_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605075_0f4c0382-122b-46fb-be81-5ca08cde93f9_poly_0_">
                      <gml:posList srsDimension="3">568508.158 5517038.652 0.0 568508.158 5517038.652 13.996999999999986 568508.107 5517038.44 13.994 568508.107 5517038.44 0.0 568508.158 5517038.652 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_605075_ad4876c3-27b2-4173-9fb6-e6937b462490">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e416eba6-65c2-4877-a539-e4eaacf2d1d3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605075_ad4876c3-27b2-4173-9fb6-e6937b462490_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605075_ad4876c3-27b2-4173-9fb6-e6937b462490_poly_0_">
                      <gml:posList srsDimension="3">568507.927 5517038.49 0.0 568508.107 5517038.44 0.0 568508.107 5517038.44 13.994 568507.927 5517038.49 14.119999999999976 568507.884 5517038.501 14.149999999999977 568507.884 5517038.501 0.0 568507.927 5517038.49 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_605075_6dace770-cee6-4f85-bcaa-9233e28e7b35">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4243c358-3625-475c-b8eb-69833290ae04">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605075_6dace770-cee6-4f85-bcaa-9233e28e7b35_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605075_6dace770-cee6-4f85-bcaa-9233e28e7b35_poly_0_">
                      <gml:posList srsDimension="3">568493.472 5517026.99 14.153999999999996 568495.494 5517034.506 14.153999999999996 568497.372 5517041.483 14.153999999999996 568497.372 5517041.483 0.0 568495.494 5517034.506 0.0 568493.472 5517026.99 0.0 568493.472 5517026.99 14.153999999999996</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_605075_b32fff71-54aa-4510-a861-2a385bd1bd66">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c3243cde-e448-4d8c-a3a9-726512c95d50">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605075_b32fff71-54aa-4510-a861-2a385bd1bd66_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605075_b32fff71-54aa-4510-a861-2a385bd1bd66_poly_0_">
                      <gml:posList srsDimension="3">568493.103 5517022.346 14.150999999999982 568493.166 5517023.139 14.631 568493.472 5517026.99 14.153999999999996 568493.472 5517026.99 0.0 568493.166 5517023.139 0.0 568493.103 5517022.346 0.0 568493.103 5517022.346 14.150999999999982</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_605075_0941a9e2-9379-49e9-b363-c4509e934793">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2f0a8775-562d-4b60-978c-7b12466003b3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605075_0941a9e2-9379-49e9-b363-c4509e934793_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605075_0941a9e2-9379-49e9-b363-c4509e934793_poly_0_">
                      <gml:posList srsDimension="3">568499.425 5517028.09 17.84899999999999 568501.059 5517034.168 17.84899999999999 568502.653 5517040.097 17.84899999999999 568497.372 5517041.483 14.153999999999996 568495.494 5517034.506 14.153999999999996 568493.472 5517026.99 14.153999999999996 568493.166 5517023.139 14.631 568499.425 5517028.09 17.84899999999999</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_605075_eac8af84-75f0-4c7a-8f75-4049bd1f0b16">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6875b51c-68f7-4c50-9cce-d1f7b50b47e8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605075_eac8af84-75f0-4c7a-8f75-4049bd1f0b16_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605075_eac8af84-75f0-4c7a-8f75-4049bd1f0b16_poly_0_">
                      <gml:posList srsDimension="3">568507.115 5517033.131 0.0 568507.115 5517033.131 14.524000000000001 568506.932 5517032.433 14.950999999999993 568506.932 5517032.433 0.0 568507.115 5517033.131 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_605075_27118a1c-a53e-47b5-bfea-01fd1cbfb802">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b7eaed6c-1082-4c2c-b220-3ddb0d493d33">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605075_27118a1c-a53e-47b5-bfea-01fd1cbfb802_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605075_27118a1c-a53e-47b5-bfea-01fd1cbfb802_poly_0_">
                      <gml:posList srsDimension="3">568502.653 5517040.097 17.84899999999999 568507.982 5517038.698 14.119999999999976 568508.158 5517038.652 13.996999999999986 568508.158 5517038.652 0.0 568507.982 5517038.698 0.0 568502.653 5517040.097 0.0 568497.372 5517041.483 0.0 568497.372 5517041.483 14.153999999999996 568502.653 5517040.097 17.84899999999999</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_605075_293d1625-2260-4239-a2f5-d6a824ff1edb">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8c50bf4e-ba39-489f-9bfc-1054ef7e79db">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605075_293d1625-2260-4239-a2f5-d6a824ff1edb_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605075_293d1625-2260-4239-a2f5-d6a824ff1edb_poly_0_">
                      <gml:posList srsDimension="3">568511.999 5517027.324 0.0 568511.627 5517021.218 0.0 568503.42 5517021.719 0.0 568493.103 5517022.346 0.0 568493.166 5517023.139 0.0 568493.472 5517026.99 0.0 568495.494 5517034.506 0.0 568497.372 5517041.483 0.0 568502.653 5517040.097 0.0 568507.982 5517038.698 0.0 568508.158 5517038.652 0.0 568508.107 5517038.44 0.0 568507.927 5517038.49 0.0 568507.884 5517038.501 0.0 568506.625 5517033.829 0.0 568506.609 5517033.771 0.0 568506.646 5517033.724 0.0 568507.115 5517033.131 0.0 568506.932 5517032.433 0.0 568512.289 5517032.096 0.0 568511.999 5517027.324 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_605075_86f2cc52-97ec-4ca3-aef3-7852b2405ef1">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_890bc219-a613-412b-bfcb-c178b5ab3944">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605075_86f2cc52-97ec-4ca3-aef3-7852b2405ef1_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605075_86f2cc52-97ec-4ca3-aef3-7852b2405ef1_poly_0_">
                      <gml:posList srsDimension="3">568503.42 5517021.719 0.0 568511.627 5517021.218 0.0 568511.627 5517021.218 14.150999999999982 568503.42 5517021.719 14.150999999999982 568493.103 5517022.346 14.150999999999982 568493.103 5517022.346 0.0 568503.42 5517021.719 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_605075_b56b1ade-610c-4789-8df2-53f9debfee83">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ad9191a6-915a-410d-bf3c-83c7d35524a8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605075_b56b1ade-610c-4789-8df2-53f9debfee83_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605075_b56b1ade-610c-4789-8df2-53f9debfee83_poly_0_">
                      <gml:posList srsDimension="3">568506.609 5517033.771 0.0 568506.625 5517033.829 0.0 568507.884 5517038.501 0.0 568507.884 5517038.501 14.149999999999977 568506.625 5517033.829 14.152999999999992 568506.609 5517033.771 14.152999999999992 568506.609 5517033.771 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_605075_58aacacf-a68a-49ec-a8fc-839abde92077">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_93f7752a-db30-4944-89fb-e4b30b281151">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605075_58aacacf-a68a-49ec-a8fc-839abde92077_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605075_58aacacf-a68a-49ec-a8fc-839abde92077_poly_0_">
                      <gml:posList srsDimension="3">568506.646 5517033.724 14.182999999999993 568507.115 5517033.131 14.524000000000001 568507.115 5517033.131 0.0 568506.646 5517033.724 0.0 568506.609 5517033.771 0.0 568506.609 5517033.771 14.152999999999992 568506.646 5517033.724 14.182999999999993</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_605075_210ca6eb-1572-47ba-8ea9-55570b22de23">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a253f49e-1fab-4443-8d3f-1ad621f25f0d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605075_210ca6eb-1572-47ba-8ea9-55570b22de23_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605075_210ca6eb-1572-47ba-8ea9-55570b22de23_poly_0_">
                      <gml:posList srsDimension="3">568506.609 5517033.771 14.152999999999992 568506.625 5517033.829 14.152999999999992 568507.884 5517038.501 14.149999999999977 568507.927 5517038.49 14.119999999999976 568508.107 5517038.44 13.994 568508.158 5517038.652 13.996999999999986 568507.982 5517038.698 14.119999999999976 568502.653 5517040.097 17.84899999999999 568501.059 5517034.168 17.84899999999999 568499.425 5517028.09 17.84899999999999 568506.609 5517033.771 14.152999999999992</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
    </bldg:Building>
  </cityObjectMember><cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_605096">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odT1</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>Robert-Koch-Straße 32, 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>1953</bldg:yearOfConstruction>
      <bldg:roofType>3200</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">16.498</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_5d9a903a-94a0-4b5c-b5ee-9f28d4140c3e">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_821f4316-f8d0-4f8d-91c5-28d5fa964b77">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605096_87f67cff-a4ff-4286-9c94-895b831490eb_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605096_607a49d8-ff65-4813-bb99-5b428ad98c93_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605096_d57dd19d-6a90-4c7c-af64-cface0a3658b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605096_4a32579f-72cd-475c-be97-fa6739132f0a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605096_8e6c97b0-43b4-4177-ba5c-e9148f6bf43b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605096_57c0d1a0-f123-4857-b956-228cf2025dec_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605096_aa94cfe1-805d-43c9-965e-b67f67ad694e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605096_c77dcd57-8e71-4094-80bd-1cf553e3144e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605096_c071838f-2334-44b8-a107-6dc4bc8542b2_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605096_8e6c97b0-43b4-4177-ba5c-e9148f6bf43b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_82dcef4a-f230-44b1-9730-f76f10c8cbb2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605096_8e6c97b0-43b4-4177-ba5c-e9148f6bf43b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605096_8e6c97b0-43b4-4177-ba5c-e9148f6bf43b_poly_0_">
                      <gml:posList srsDimension="3">568631.87 5517050.711 0.0 568647.687 5517048.416 0.0 568647.687 5517048.416 11.331000000000017 568631.87 5517050.711 11.331000000000017 568631.852 5517050.714 11.313999999999993 568631.852 5517050.714 0.0 568631.87 5517050.711 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_605096_aa94cfe1-805d-43c9-965e-b67f67ad694e">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4071fff2-9786-482c-be44-dbad52498f5e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605096_aa94cfe1-805d-43c9-965e-b67f67ad694e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605096_aa94cfe1-805d-43c9-965e-b67f67ad694e_poly_0_">
                      <gml:posList srsDimension="3">568631.852 5517050.714 0.0 568631.852 5517050.714 11.313999999999993 568633.44 5517061.28 11.361999999999995 568633.44 5517061.28 0.0 568631.852 5517050.714 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_605096_87f67cff-a4ff-4286-9c94-895b831490eb">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_11b53bc8-0c7f-4e7b-9539-9c1e45e38c6e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605096_87f67cff-a4ff-4286-9c94-895b831490eb_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605096_87f67cff-a4ff-4286-9c94-895b831490eb_poly_0_">
                      <gml:posList srsDimension="3">568647.687 5517048.416 11.331000000000017 568643.163 5517054.483 16.49799999999999 568637.936 5517055.243 16.49799999999999 568631.87 5517050.711 11.331000000000017 568647.687 5517048.416 11.331000000000017</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_605096_57c0d1a0-f123-4857-b956-228cf2025dec">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e0275bd5-5b1f-4dd7-86da-37a3e39baf7f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605096_57c0d1a0-f123-4857-b956-228cf2025dec_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605096_57c0d1a0-f123-4857-b956-228cf2025dec_poly_0_">
                      <gml:posList srsDimension="3">568649.228 5517059.011 0.0 568647.687 5517048.416 0.0 568631.87 5517050.711 0.0 568631.852 5517050.714 0.0 568633.44 5517061.28 0.0 568649.232 5517059.04 0.0 568649.228 5517059.011 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_605096_d57dd19d-6a90-4c7c-af64-cface0a3658b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3a718fa6-21bd-4ab5-bc4b-56d8683af61d">
              <gml:surfaceMember>
For faster browsing, not all history is shown. View entire blame