Grombühl_v4_case_study.gml 6.37 MB
Newer Older
Eric Duminil's avatar
Eric Duminil committed
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2019-09-24</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_1000</bldg:function>
      <bldg:yearOfConstruction>1955</bldg:yearOfConstruction>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">18.96</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_4fbc9b30-ca60-435b-9735-41e33f79b69f">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_fc3939ef-deb3-4802-a186-ce6c965e936e">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605080_684e1e35-ba2c-4149-a62e-0dade30d595c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605080_0e7ae721-09dd-4b48-b9a5-28551de46d34_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605080_96088e4f-6c80-4389-b832-2981ee3064da_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605080_6d90ca18-0ed2-4d52-bb6e-13bcc105f447_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605080_947673e0-9cda-467a-9f07-bbf8c6cce721_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605080_23c8e22e-a87e-4ac0-b530-43d5bf4225e6_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605080_35f67f14-c85e-4a7c-87c6-38a2abeffd27_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605080_0e7ae721-09dd-4b48-b9a5-28551de46d34">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1c0120e4-812c-4015-b945-62809e545df4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605080_0e7ae721-09dd-4b48-b9a5-28551de46d34_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605080_0e7ae721-09dd-4b48-b9a5-28551de46d34_poly_0_">
                      <gml:posList srsDimension="3">568538.369 5516986.452 0.0 568538.369 5516986.452 14.98999999999998 568521.852 5516987.464 15.001999999999981 568521.852 5516987.464 0.0 568538.369 5516986.452 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_605080_23c8e22e-a87e-4ac0-b530-43d5bf4225e6">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_38ebb69b-a420-4b49-a956-3e9ebd47a657">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605080_23c8e22e-a87e-4ac0-b530-43d5bf4225e6_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605080_23c8e22e-a87e-4ac0-b530-43d5bf4225e6_poly_0_">
                      <gml:posList srsDimension="3">568521.852 5516987.464 15.001999999999981 568522.17 5516993.022 18.95999999999998 568522.488 5516998.588 14.995999999999981 568522.488 5516998.588 0.0 568522.17 5516993.022 0.0 568521.852 5516987.464 0.0 568521.852 5516987.464 15.001999999999981</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_605080_35f67f14-c85e-4a7c-87c6-38a2abeffd27">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2d10bf0c-dc35-4815-9a33-bc57be8fb3b8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605080_35f67f14-c85e-4a7c-87c6-38a2abeffd27_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605080_35f67f14-c85e-4a7c-87c6-38a2abeffd27_poly_0_">
                      <gml:posList srsDimension="3">568522.488 5516998.588 0.0 568522.488 5516998.588 14.995999999999981 568539.078 5516997.589 14.995999999999981 568539.078 5516997.589 0.0 568522.488 5516998.588 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_605080_96088e4f-6c80-4389-b832-2981ee3064da">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_66d430a6-b370-44a6-b22f-a15225a3292e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605080_96088e4f-6c80-4389-b832-2981ee3064da_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605080_96088e4f-6c80-4389-b832-2981ee3064da_poly_0_">
                      <gml:posList srsDimension="3">568538.369 5516986.452 14.98999999999998 568538.369 5516986.452 0.0 568538.724 5516992.024 0.0 568539.078 5516997.589 0.0 568539.078 5516997.589 14.995999999999981 568538.724 5516992.024 18.95999999999998 568538.369 5516986.452 14.98999999999998</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_605080_6d90ca18-0ed2-4d52-bb6e-13bcc105f447">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_36ce5fee-c503-4f59-b7a8-7ce371dfbc8c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605080_6d90ca18-0ed2-4d52-bb6e-13bcc105f447_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605080_6d90ca18-0ed2-4d52-bb6e-13bcc105f447_poly_0_">
                      <gml:posList srsDimension="3">568538.369 5516986.452 14.98999999999998 568538.724 5516992.024 18.95999999999998 568522.17 5516993.022 18.95999999999998 568521.852 5516987.464 15.001999999999981 568538.369 5516986.452 14.98999999999998</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_605080_684e1e35-ba2c-4149-a62e-0dade30d595c">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_448567bc-ee15-4504-b51b-8fac3e8e53a6">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605080_684e1e35-ba2c-4149-a62e-0dade30d595c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605080_684e1e35-ba2c-4149-a62e-0dade30d595c_poly_0_">
                      <gml:posList srsDimension="3">568538.724 5516992.024 18.95999999999998 568539.078 5516997.589 14.995999999999981 568522.488 5516998.588 14.995999999999981 568522.17 5516993.022 18.95999999999998 568538.724 5516992.024 18.95999999999998</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_605080_947673e0-9cda-467a-9f07-bbf8c6cce721">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_50c8097b-6b91-4f53-9e0f-2b2d2c4244fe">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605080_947673e0-9cda-467a-9f07-bbf8c6cce721_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605080_947673e0-9cda-467a-9f07-bbf8c6cce721_poly_0_">
                      <gml:posList srsDimension="3">568538.724 5516992.024 0.0 568538.369 5516986.452 0.0 568521.852 5516987.464 0.0 568522.17 5516993.022 0.0 568522.488 5516998.588 0.0 568539.078 5516997.589 0.0 568538.724 5516992.024 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
    </bldg:Building>
  </cityObjectMember><cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_605700">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9ofPZ</name>
        </externalObject>
      </externalReference>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2019-09-25</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_2000</bldg:function>
      <bldg:roofType>1000</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">2.0</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_0fdbe03b-5807-41b6-8c66-8a8142deacf7">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_41c702ef-31a1-499c-998b-7df6e65cd152">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605700_732d52a0-2e21-49c2-979a-5e9ea21ea8f4_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605700_b4c81810-93c6-40fa-a616-aca8dbec60cb_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605700_e4aa8c20-d5c7-416e-a947-cf47694f86db_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605700_61f4c113-9c3f-4fd0-b815-0ad0a6a5ffcd_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605700_8e928f76-95b1-4445-8525-af01053e7714_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605700_ff14d477-71a4-41ce-b6ea-aa1206b804af_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605700_aafa8cae-efaa-43af-b94e-1aca4aa158fa_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605700_aafa8cae-efaa-43af-b94e-1aca4aa158fa">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_cd681fe8-6a03-44a8-b4ba-347760fe14bc">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605700_aafa8cae-efaa-43af-b94e-1aca4aa158fa_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605700_aafa8cae-efaa-43af-b94e-1aca4aa158fa_poly_0_">
                      <gml:posList srsDimension="3">568258.451 5517139.768 0.0 568258.44 5517141.468 0.0 568258.417 5517145.109 0.0 568258.417 5517145.109 2.0 568258.44 5517141.468 2.0 568258.451 5517139.768 2.0 568258.451 5517139.768 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_605700_b4c81810-93c6-40fa-a616-aca8dbec60cb">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_0155e4af-4314-4dac-aa23-1b013fe91aab">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605700_b4c81810-93c6-40fa-a616-aca8dbec60cb_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605700_b4c81810-93c6-40fa-a616-aca8dbec60cb_poly_0_">
                      <gml:posList srsDimension="3">568257.866 5517139.635 2.0 568258.367 5517139.749 2.0 568258.451 5517139.768 2.0 568258.44 5517141.468 2.0 568258.417 5517145.109 2.0 568254.742 5517145.193 2.0 568254.511 5517139.711 2.0 568257.866 5517139.635 2.0</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_605700_61f4c113-9c3f-4fd0-b815-0ad0a6a5ffcd">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d8298724-61c6-440d-a436-30358a57db32">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605700_61f4c113-9c3f-4fd0-b815-0ad0a6a5ffcd_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605700_61f4c113-9c3f-4fd0-b815-0ad0a6a5ffcd_poly_0_">
                      <gml:posList srsDimension="3">568257.866 5517139.635 0.0 568258.367 5517139.749 0.0 568258.451 5517139.768 0.0 568258.451 5517139.768 2.0 568258.367 5517139.749 2.0 568257.866 5517139.635 2.0 568257.866 5517139.635 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_605700_e4aa8c20-d5c7-416e-a947-cf47694f86db">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fdfde589-b853-4e19-856c-aa594c10a836">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605700_e4aa8c20-d5c7-416e-a947-cf47694f86db_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605700_e4aa8c20-d5c7-416e-a947-cf47694f86db_poly_0_">
                      <gml:posList srsDimension="3">568254.742 5517145.193 0.0 568254.742 5517145.193 2.0 568258.417 5517145.109 2.0 568258.417 5517145.109 0.0 568254.742 5517145.193 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_605700_8e928f76-95b1-4445-8525-af01053e7714">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_490125dc-58d3-45bf-99f7-6fadbc454f7c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605700_8e928f76-95b1-4445-8525-af01053e7714_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605700_8e928f76-95b1-4445-8525-af01053e7714_poly_0_">
                      <gml:posList srsDimension="3">568257.866 5517139.635 0.0 568257.866 5517139.635 2.0 568254.511 5517139.711 2.0 568254.511 5517139.711 0.0 568257.866 5517139.635 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_605700_ff14d477-71a4-41ce-b6ea-aa1206b804af">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2a3673a1-33d9-4bb3-9bbf-cb722dc974c5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605700_ff14d477-71a4-41ce-b6ea-aa1206b804af_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605700_ff14d477-71a4-41ce-b6ea-aa1206b804af_poly_0_">
                      <gml:posList srsDimension="3">568258.44 5517141.468 0.0 568258.451 5517139.768 0.0 568258.367 5517139.749 0.0 568257.866 5517139.635 0.0 568254.511 5517139.711 0.0 568254.742 5517145.193 0.0 568258.417 5517145.109 0.0 568258.44 5517141.468 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_605700_732d52a0-2e21-49c2-979a-5e9ea21ea8f4">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2167cf97-5a1b-45c9-9bf7-0c202813a027">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605700_732d52a0-2e21-49c2-979a-5e9ea21ea8f4_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605700_732d52a0-2e21-49c2-979a-5e9ea21ea8f4_poly_0_">
                      <gml:posList srsDimension="3">568254.511 5517139.711 0.0 568254.511 5517139.711 2.0 568254.742 5517145.193 2.0 568254.742 5517145.193 0.0 568254.511 5517139.711 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_605126">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odjM</name>
        </externalObject>
      </externalReference>
      <gen:stringAttribute name="comment">
        <gen:value>CityGML from BKG LoD2_32_56[68]_5516_2_BY.xml, with yearOfConstruction from Stadt_Würzburg_Wohngebäude_Baujahr_Untersuchungsgebiet.xlsx, 2023-02-22</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="address">
        <gen:value>Gutenbergstraße 6, 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>1962</bldg:yearOfConstruction>
      <bldg:roofType>3200</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">16.329</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_9bd56098-dc3d-4fd2-9e7a-1f9d26d80688">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_616aaf94-b2e8-4606-bd46-069a4638f22a">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605126_d3995a9f-16df-47b0-aba1-321a5eef927b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605126_05d50490-e905-4606-8518-0d45667e70b0_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605126_55ff33ec-b069-49ae-953b-fecc2e005545_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605126_65d2d685-5cee-4bbf-89c8-d4aaad0601c9_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605126_e994195a-48aa-425e-a21c-b269184499e8_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605126_2e3c0754-81fe-4efe-892b-48a22e74ac2d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605126_7b91f39e-79ac-4681-8d77-e24583dfe980_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605126_f5b47a4d-d819-46ca-96c2-947628a3bd69_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605126_b22b24fb-32ae-459e-bde5-f101e0e75534_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605126_0a12d981-bb52-4738-b033-308ca1bc95a7_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605126_33604c3a-d0db-40ad-8ce9-0edc50a48992_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605126_bd1989c8-014c-4e47-ab36-9b0eb8c07d1f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605126_80286948-5749-4bcb-af4e-6ba226d9ca00_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605126_33604c3a-d0db-40ad-8ce9-0edc50a48992">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b0372ee5-812b-4700-bce3-0e3cd8a644d0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605126_33604c3a-d0db-40ad-8ce9-0edc50a48992_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605126_33604c3a-d0db-40ad-8ce9-0edc50a48992_poly_0_">
                      <gml:posList srsDimension="3">568320.005 5516973.889 16.329000000000008 568325.932 5516978.766 12.949000000000012 568325.954 5516979.016 12.794000000000011 568325.958 5516979.062 12.765999999999991 568322.933 5516979.342 12.794000000000011 568314.912 5516980.082 12.870000000000005 568320.005 5516973.889 16.329000000000008</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_605126_55ff33ec-b069-49ae-953b-fecc2e005545">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_0476c677-15aa-434d-91c2-c6ad47a0b4f9">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605126_55ff33ec-b069-49ae-953b-fecc2e005545_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605126_55ff33ec-b069-49ae-953b-fecc2e005545_poly_0_">
                      <gml:posList srsDimension="3">568324.946 5516967.447 0.0 568324.946 5516967.447 12.948000000000008 568324.484 5516967.498 13.235000000000014 568324.484 5516967.498 0.0 568324.946 5516967.447 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_605126_bd1989c8-014c-4e47-ab36-9b0eb8c07d1f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_772e4cb5-eb7a-43ba-8f6d-dd4b10dbc3f6">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605126_bd1989c8-014c-4e47-ab36-9b0eb8c07d1f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605126_bd1989c8-014c-4e47-ab36-9b0eb8c07d1f_poly_0_">
                      <gml:posList srsDimension="3">568319.494 5516968.035 16.329000000000008 568320.005 5516973.889 16.329000000000008 568314.912 5516980.082 12.870000000000005 568314.846 5516980.088 12.829000000000008 568313.837 5516968.641 12.822000000000003 568319.494 5516968.035 16.329000000000008</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_605126_65d2d685-5cee-4bbf-89c8-d4aaad0601c9">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_dd468228-69fb-4a9a-8e75-0a314b982d1e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605126_65d2d685-5cee-4bbf-89c8-d4aaad0601c9_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605126_65d2d685-5cee-4bbf-89c8-d4aaad0601c9_poly_0_">
                      <gml:posList srsDimension="3">568325.445 5516973.189 0.0 568325.445 5516973.189 12.949999999999989 568325.645 5516973.167 12.824999999999989 568325.645 5516973.167 0.0 568325.445 5516973.189 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_605126_05d50490-e905-4606-8518-0d45667e70b0">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_bf294319-ac44-4740-9668-ccd3c64009fc">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605126_05d50490-e905-4606-8518-0d45667e70b0_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605126_05d50490-e905-4606-8518-0d45667e70b0_poly_0_">
                      <gml:posList srsDimension="3">568325.645 5516973.167 0.0 568325.645 5516973.167 12.824999999999989 568325.406 5516970.427 12.824999999999989 568325.406 5516970.427 0.0 568325.645 5516973.167 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_605126_b22b24fb-32ae-459e-bde5-f101e0e75534">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_24d3a02d-3012-4c6e-8a1e-048571340ebb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605126_b22b24fb-32ae-459e-bde5-f101e0e75534_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605126_b22b24fb-32ae-459e-bde5-f101e0e75534_poly_0_">
                      <gml:posList srsDimension="3">568319.494 5516968.035 0.0 568324.484 5516967.498 0.0 568324.484 5516967.498 13.235000000000014 568319.494 5516968.035 16.329000000000008 568313.837 5516968.641 12.822000000000003 568313.837 5516968.641 0.0 568319.494 5516968.035 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_605126_0a12d981-bb52-4738-b033-308ca1bc95a7">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_176a1ae4-8e46-4a1b-8dcc-e62bbe8e6859">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605126_0a12d981-bb52-4738-b033-308ca1bc95a7_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605126_0a12d981-bb52-4738-b033-308ca1bc95a7_poly_0_">
                      <gml:posList srsDimension="3">568325.406 5516970.427 0.0 568325.406 5516970.427 12.824999999999989 568325.205 5516970.439 12.949000000000012 568325.205 5516970.439 0.0 568325.406 5516970.427 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_605126_7b91f39e-79ac-4681-8d77-e24583dfe980">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3e868f73-72d9-4eeb-8c65-fb184eae3339">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605126_7b91f39e-79ac-4681-8d77-e24583dfe980_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605126_7b91f39e-79ac-4681-8d77-e24583dfe980_poly_0_">
                      <gml:posList srsDimension="3">568313.837 5516968.641 0.0 568313.837 5516968.641 12.822000000000003 568314.846 5516980.088 12.829000000000008 568314.846 5516980.088 0.0 568313.837 5516968.641 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_605126_d3995a9f-16df-47b0-aba1-321a5eef927b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b455cf37-d168-474a-8ec2-759822df8baa">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605126_d3995a9f-16df-47b0-aba1-321a5eef927b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605126_d3995a9f-16df-47b0-aba1-321a5eef927b_poly_0_">
                      <gml:posList srsDimension="3">568324.484 5516967.498 13.235000000000014 568324.946 5516967.447 12.948000000000008 568325.205 5516970.439 12.949000000000012 568325.406 5516970.427 12.824999999999989 568325.645 5516973.167 12.824999999999989 568325.445 5516973.189 12.949999999999989 568325.932 5516978.766 12.949000000000012 568320.005 5516973.889 16.329000000000008 568319.494 5516968.035 16.329000000000008 568324.484 5516967.498 13.235000000000014</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_605126_f5b47a4d-d819-46ca-96c2-947628a3bd69">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a7cfa620-4e79-4ed5-8ff6-805d7d6a563e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605126_f5b47a4d-d819-46ca-96c2-947628a3bd69_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605126_f5b47a4d-d819-46ca-96c2-947628a3bd69_poly_0_">
                      <gml:posList srsDimension="3">568325.954 5516979.016 0.0 568325.932 5516978.766 0.0 568325.445 5516973.189 0.0 568325.645 5516973.167 0.0 568325.406 5516970.427 0.0 568325.205 5516970.439 0.0 568324.946 5516967.447 0.0 568324.484 5516967.498 0.0 568319.494 5516968.035 0.0 568313.837 5516968.641 0.0 568314.846 5516980.088 0.0 568314.912 5516980.082 0.0 568322.933 5516979.342 0.0 568325.958 5516979.062 0.0 568325.954 5516979.016 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_605126_80286948-5749-4bcb-af4e-6ba226d9ca00">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_95909243-43f5-45e1-9200-8cd02ff4ee9a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605126_80286948-5749-4bcb-af4e-6ba226d9ca00_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605126_80286948-5749-4bcb-af4e-6ba226d9ca00_poly_0_">
                      <gml:posList srsDimension="3">568314.912 5516980.082 12.870000000000005 568322.933 5516979.342 12.794000000000011 568325.958 5516979.062 12.765999999999991 568325.958 5516979.062 0.0 568322.933 5516979.342 0.0 568314.912 5516980.082 0.0 568314.846 5516980.088 0.0 568314.846 5516980.088 12.829000000000008 568314.912 5516980.082 12.870000000000005</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_605126_e994195a-48aa-425e-a21c-b269184499e8">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_0b0b79fe-e889-4059-a926-fbe825aecc66">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605126_e994195a-48aa-425e-a21c-b269184499e8_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605126_e994195a-48aa-425e-a21c-b269184499e8_poly_0_">
                      <gml:posList srsDimension="3">568325.445 5516973.189 0.0 568325.932 5516978.766 0.0 568325.954 5516979.016 0.0 568325.958 5516979.062 0.0 568325.958 5516979.062 12.765999999999991 568325.954 5516979.016 12.794000000000011 568325.932 5516978.766 12.949000000000012 568325.445 5516973.189 12.949999999999989 568325.445 5516973.189 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_605126_2e3c0754-81fe-4efe-892b-48a22e74ac2d">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d0929d9f-9905-4257-92fc-57b8abebad1e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605126_2e3c0754-81fe-4efe-892b-48a22e74ac2d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605126_2e3c0754-81fe-4efe-892b-48a22e74ac2d_poly_0_">
                      <gml:posList srsDimension="3">568325.205 5516970.439 0.0 568325.205 5516970.439 12.949000000000012 568324.946 5516967.447 12.948000000000008 568324.946 5516967.447 0.0 568325.205 5516970.439 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_605086">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9oebM</name>
        </externalObject>
      </externalReference>
      <gen:stringAttribute name="comment">
        <gen:value>CityGML from BKG LoD2_32_56[68]_5516_2_BY.xml, with yearOfConstruction from Stadt_Würzburg_Wohngebäude_Baujahr_Untersuchungsgebiet.xlsx, 2023-02-22</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="address">
        <gen:value>Petrinistraße 37, 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>1930</bldg:yearOfConstruction>
      <bldg:roofType>3400</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">16.88</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_b306976f-ff12-48e3-bdb6-da0a87f45dd4">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_5a643275-b73b-44a2-95e4-8def3985514c">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605086_ae720697-2d89-458d-bbd8-a4a38b53f015_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605086_2993e82c-3d39-463d-874a-ab3e8770c11f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605086_6e36cc30-7f5d-49fe-a051-3dfc0ad6bd88_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605086_1a936059-0b9b-4c6f-b9ec-fb5accfccea3_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605086_d4c0f8f4-3825-4e33-b784-ca34648f104d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605086_48503779-c272-4f97-8465-b5354b7ac898_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605086_394770fa-2973-467b-a68c-e2d9c29ff160_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605086_915c114d-feba-4cdb-a409-db459aae7070_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605086_d922c84d-eeb8-4cf4-85d5-5fe71653023a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605086_33691786-303d-4ec4-be10-4c5b77de4926_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605086_b8cfeb37-9428-475c-9271-6be884fe0eb0_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605086_ece7fc94-5122-4840-bb7b-b63ac3ffc914_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605086_227154c9-162b-40cd-a5b9-0f16fbc9821b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605086_8c15ae21-ec28-4def-8c9f-2924f350e516_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605086_9945226b-8b07-404b-b1ff-d5f9f14f633a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605086_5db56960-ec02-49f3-aab9-b9bea047a85d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605086_83771a2a-5cca-4d38-af18-ba279fc31891_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605086_45ad01f7-e4ec-40f5-a3e4-1867529500a9_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605086_83771a2a-5cca-4d38-af18-ba279fc31891">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_272ddd1c-3ecd-47dd-b4b7-574fa5a191db">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605086_83771a2a-5cca-4d38-af18-ba279fc31891_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605086_83771a2a-5cca-4d38-af18-ba279fc31891_poly_0_">
                      <gml:posList srsDimension="3">568544.819 5517029.318 0.0 568544.819 5517029.318 10.783999999999992 568544.821 5517029.258 10.935000000000002 568544.821 5517029.258 0.0 568544.819 5517029.318 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_605086_d922c84d-eeb8-4cf4-85d5-5fe71653023a">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f1fc012e-8311-4013-bdac-1ed81b17e882">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605086_d922c84d-eeb8-4cf4-85d5-5fe71653023a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605086_d922c84d-eeb8-4cf4-85d5-5fe71653023a_poly_0_">
                      <gml:posList srsDimension="3">568544.821 5517029.258 0.0 568544.821 5517029.258 10.935000000000002 568549.925 5517028.952 10.918999999999983 568549.925 5517028.952 0.0 568544.821 5517029.258 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_605086_45ad01f7-e4ec-40f5-a3e4-1867529500a9">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a301440b-ab91-4604-9de7-5d8453899589">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605086_45ad01f7-e4ec-40f5-a3e4-1867529500a9_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605086_45ad01f7-e4ec-40f5-a3e4-1867529500a9_poly_0_">
                      <gml:posList srsDimension="3">568545.921 5517019.01 0.0 568545.921 5517019.01 10.670999999999992 568545.891 5517018.509 9.400000000000006 568545.891 5517018.509 0.0 568545.921 5517019.01 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_605086_6e36cc30-7f5d-49fe-a051-3dfc0ad6bd88">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fb0cf2a6-a11d-46f0-ba3c-44384eaed6ab">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605086_6e36cc30-7f5d-49fe-a051-3dfc0ad6bd88_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605086_6e36cc30-7f5d-49fe-a051-3dfc0ad6bd88_poly_0_">
                      <gml:posList srsDimension="3">568539.924 5517018.871 0.0 568539.924 5517018.871 9.390999999999991 568539.964 5517019.373 10.664999999999992 568539.964 5517019.373 0.0 568539.924 5517018.871 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_605086_2993e82c-3d39-463d-874a-ab3e8770c11f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_18dca48d-1507-4f0e-b9e7-eda0864f6489">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605086_2993e82c-3d39-463d-874a-ab3e8770c11f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605086_2993e82c-3d39-463d-874a-ab3e8770c11f_poly_0_">
                      <gml:posList srsDimension="3">568534.19 5517029.916 0.0 568534.19 5517029.916 10.921999999999997 568541.873 5517029.441 10.930000000000007 568541.873 5517029.441 0.0 568534.19 5517029.916 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_605086_33691786-303d-4ec4-be10-4c5b77de4926">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_037c9deb-5448-4d3f-99ba-1ad3a670a9a4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605086_33691786-303d-4ec4-be10-4c5b77de4926_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605086_33691786-303d-4ec4-be10-4c5b77de4926_poly_0_">
                      <gml:posList srsDimension="3">568545.891 5517018.509 0.0 568545.891 5517018.509 9.400000000000006 568539.924 5517018.871 9.390999999999991 568539.924 5517018.871 0.0 568545.891 5517018.509 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_605086_394770fa-2973-467b-a68c-e2d9c29ff160">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b184623a-1ab4-4c8d-901f-43273b75d90a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605086_394770fa-2973-467b-a68c-e2d9c29ff160_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605086_394770fa-2973-467b-a68c-e2d9c29ff160_poly_0_">
                      <gml:posList srsDimension="3">568539.964 5517019.373 0.0 568539.964 5517019.373 10.664999999999992 568533.574 5517019.759 10.650000000000006 568533.574 5517019.759 0.0 568539.964 5517019.373 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_605086_9945226b-8b07-404b-b1ff-d5f9f14f633a">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a43c6db6-a37c-4a3a-bdcc-3ad278d48020">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605086_9945226b-8b07-404b-b1ff-d5f9f14f633a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605086_9945226b-8b07-404b-b1ff-d5f9f14f633a_poly_0_">
                      <gml:posList srsDimension="3">568549.29 5517018.804 0.0 568549.29 5517018.804 10.673000000000002 568545.921 5517019.01 10.670999999999992 568545.921 5517019.01 0.0 568549.29 5517018.804 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_605086_5db56960-ec02-49f3-aab9-b9bea047a85d">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4cd68f13-b542-43f0-9432-636a2cbd55d5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605086_5db56960-ec02-49f3-aab9-b9bea047a85d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605086_5db56960-ec02-49f3-aab9-b9bea047a85d_poly_0_">
                      <gml:posList srsDimension="3">568533.574 5517019.759 10.650000000000006 568533.635 5517020.757 13.180000000000007 568533.637 5517020.797 13.216000000000008 568534.134 5517028.985 13.216000000000008 568534.136 5517029.025 13.180000000000007 568534.19 5517029.916 10.921999999999997 568534.19 5517029.916 0.0 568534.136 5517029.025 0.0 568534.134 5517028.985 0.0 568533.637 5517020.797 0.0 568533.635 5517020.757 0.0 568533.574 5517019.759 0.0 568533.574 5517019.759 10.650000000000006</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_605086_ae720697-2d89-458d-bbd8-a4a38b53f015">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_069ae01b-dfd9-46f4-a679-540838402d09">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605086_ae720697-2d89-458d-bbd8-a4a38b53f015_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605086_ae720697-2d89-458d-bbd8-a4a38b53f015_poly_0_">
                      <gml:posList srsDimension="3">568549.87 5517028.06 13.180000000000007 568549.925 5517028.952 10.918999999999983 568544.821 5517029.258 10.935000000000002 568544.819 5517029.318 10.783999999999992 568541.88 5517029.501 10.776999999999987 568541.873 5517029.441 10.930000000000007 568534.19 5517029.916 10.921999999999997 568534.136 5517029.025 13.180000000000007 568549.87 5517028.06 13.180000000000007</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_605086_915c114d-feba-4cdb-a409-db459aae7070">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a6c4bf6c-100f-4aaa-874c-0e9660070e7a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605086_915c114d-feba-4cdb-a409-db459aae7070_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605086_915c114d-feba-4cdb-a409-db459aae7070_poly_0_">
                      <gml:posList srsDimension="3">568538.968 5517024.58 16.879999999999995 568549.611 5517023.927 16.879999999999995 568549.87 5517028.06 13.180000000000007 568534.136 5517029.025 13.180000000000007 568534.134 5517028.985 13.216000000000008 568538.968 5517024.58 16.879999999999995</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_605086_227154c9-162b-40cd-a5b9-0f16fbc9821b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fa04125e-100b-44d1-89e4-f1cb745fafd2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605086_227154c9-162b-40cd-a5b9-0f16fbc9821b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605086_227154c9-162b-40cd-a5b9-0f16fbc9821b_poly_0_">
                      <gml:posList srsDimension="3">568539.964 5517019.373 10.664999999999992 568539.924 5517018.871 9.390999999999991 568545.891 5517018.509 9.400000000000006 568545.921 5517019.01 10.670999999999992 568549.29 5517018.804 10.673000000000002 568549.352 5517019.793 13.180000000000007 568533.635 5517020.757 13.180000000000007 568533.574 5517019.759 10.650000000000006 568539.964 5517019.373 10.664999999999992</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_605086_d4c0f8f4-3825-4e33-b784-ca34648f104d">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b660ccd4-8a32-4ce6-b92f-f71aa116f85b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605086_d4c0f8f4-3825-4e33-b784-ca34648f104d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605086_d4c0f8f4-3825-4e33-b784-ca34648f104d_poly_0_">
                      <gml:posList srsDimension="3">568541.873 5517029.441 0.0 568541.873 5517029.441 10.930000000000007 568541.88 5517029.501 10.776999999999987 568541.88 5517029.501 0.0 568541.873 5517029.441 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_605086_8c15ae21-ec28-4def-8c9f-2924f350e516">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_47bd8e85-4880-449b-84d8-160c0cdccb43">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605086_8c15ae21-ec28-4def-8c9f-2924f350e516_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605086_8c15ae21-ec28-4def-8c9f-2924f350e516_poly_0_">
                      <gml:posList srsDimension="3">568549.87 5517028.06 0.0 568549.611 5517023.927 0.0 568549.352 5517019.793 0.0 568549.29 5517018.804 0.0 568545.921 5517019.01 0.0 568545.891 5517018.509 0.0 568539.924 5517018.871 0.0 568539.964 5517019.373 0.0 568533.574 5517019.759 0.0 568533.635 5517020.757 0.0 568533.637 5517020.797 0.0 568534.134 5517028.985 0.0 568534.136 5517029.025 0.0 568534.19 5517029.916 0.0 568541.873 5517029.441 0.0 568541.88 5517029.501 0.0 568544.819 5517029.318 0.0 568544.821 5517029.258 0.0 568549.925 5517028.952 0.0 568549.87 5517028.06 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_605086_48503779-c272-4f97-8465-b5354b7ac898">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_55f4bfe0-74ee-4ed4-bdb9-cd3c5495a774">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605086_48503779-c272-4f97-8465-b5354b7ac898_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605086_48503779-c272-4f97-8465-b5354b7ac898_poly_0_">
                      <gml:posList srsDimension="3">568541.88 5517029.501 0.0 568541.88 5517029.501 10.776999999999987 568544.819 5517029.318 10.783999999999992 568544.819 5517029.318 0.0 568541.88 5517029.501 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_605086_b8cfeb37-9428-475c-9271-6be884fe0eb0">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c143cb68-a443-4572-b63b-d6f32dcd978c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605086_b8cfeb37-9428-475c-9271-6be884fe0eb0_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605086_b8cfeb37-9428-475c-9271-6be884fe0eb0_poly_0_">
                      <gml:posList srsDimension="3">568538.968 5517024.58 16.879999999999995 568534.134 5517028.985 13.216000000000008 568533.637 5517020.797 13.216000000000008 568538.968 5517024.58 16.879999999999995</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_605086_1a936059-0b9b-4c6f-b9ec-fb5accfccea3">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2278c5af-2a5f-4363-8c31-60ac82b8b6eb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605086_1a936059-0b9b-4c6f-b9ec-fb5accfccea3_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605086_1a936059-0b9b-4c6f-b9ec-fb5accfccea3_poly_0_">
                      <gml:posList srsDimension="3">568549.352 5517019.793 13.180000000000007 568549.29 5517018.804 10.673000000000002 568549.29 5517018.804 0.0 568549.352 5517019.793 0.0 568549.611 5517023.927 0.0 568549.87 5517028.06 0.0 568549.925 5517028.952 0.0 568549.925 5517028.952 10.918999999999983 568549.87 5517028.06 13.180000000000007 568549.611 5517023.927 16.879999999999995 568549.352 5517019.793 13.180000000000007</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_605086_ece7fc94-5122-4840-bb7b-b63ac3ffc914">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
For faster browsing, not all history is shown. View entire blame