Grombühl_v4_case_study.gml 6.37 MB
Newer Older
Eric Duminil's avatar
Eric Duminil committed
59001
59002
59003
59004
59005
59006
59007
59008
59009
59010
59011
59012
59013
59014
59015
59016
59017
59018
59019
59020
59021
59022
59023
59024
59025
59026
59027
59028
59029
59030
59031
59032
59033
59034
59035
59036
59037
59038
59039
59040
59041
59042
59043
59044
59045
59046
59047
59048
59049
59050
59051
59052
59053
59054
59055
59056
59057
59058
59059
59060
59061
59062
59063
59064
59065
59066
59067
59068
59069
59070
59071
59072
59073
59074
59075
59076
59077
59078
59079
59080
59081
59082
59083
59084
59085
59086
59087
59088
59089
59090
59091
59092
59093
59094
59095
59096
59097
59098
59099
59100
59101
59102
59103
59104
59105
59106
59107
59108
59109
59110
59111
59112
59113
59114
59115
59116
59117
59118
59119
59120
59121
59122
59123
59124
59125
59126
59127
59128
59129
59130
59131
59132
59133
59134
59135
59136
59137
59138
59139
59140
59141
59142
59143
59144
59145
59146
59147
59148
59149
59150
59151
59152
59153
59154
59155
59156
59157
59158
59159
59160
59161
59162
59163
59164
59165
59166
59167
59168
59169
59170
59171
59172
59173
59174
59175
59176
59177
59178
59179
59180
59181
59182
59183
59184
59185
59186
59187
59188
59189
59190
59191
59192
59193
59194
59195
59196
59197
59198
59199
59200
59201
59202
59203
59204
59205
59206
59207
59208
59209
59210
59211
59212
59213
59214
59215
59216
59217
59218
59219
59220
59221
59222
59223
59224
59225
59226
59227
59228
59229
59230
59231
59232
59233
59234
59235
59236
59237
59238
59239
59240
59241
59242
59243
59244
59245
59246
59247
59248
59249
59250
59251
59252
59253
59254
59255
59256
59257
59258
59259
59260
59261
59262
59263
59264
59265
59266
59267
59268
59269
59270
59271
59272
59273
59274
59275
59276
59277
59278
59279
59280
59281
59282
59283
59284
59285
59286
59287
59288
59289
59290
59291
59292
59293
59294
59295
59296
59297
59298
59299
59300
59301
59302
59303
59304
59305
59306
59307
59308
59309
59310
59311
59312
59313
59314
59315
59316
59317
59318
59319
59320
59321
59322
59323
59324
59325
59326
59327
59328
59329
59330
59331
59332
59333
59334
59335
59336
59337
59338
59339
59340
59341
59342
59343
59344
59345
59346
59347
59348
59349
59350
59351
59352
59353
59354
59355
59356
59357
59358
59359
59360
59361
59362
59363
59364
59365
59366
59367
59368
59369
59370
59371
59372
59373
59374
59375
59376
59377
59378
59379
59380
59381
59382
59383
59384
59385
59386
59387
59388
59389
59390
59391
59392
59393
59394
59395
59396
59397
59398
59399
59400
59401
59402
59403
59404
59405
59406
59407
59408
59409
59410
59411
59412
59413
59414
59415
59416
59417
59418
59419
59420
59421
59422
59423
59424
59425
59426
59427
59428
59429
59430
59431
59432
59433
59434
59435
59436
59437
59438
59439
59440
59441
59442
59443
59444
59445
59446
59447
59448
59449
59450
59451
59452
59453
59454
59455
59456
59457
59458
59459
59460
59461
59462
59463
59464
59465
59466
59467
59468
59469
59470
59471
59472
59473
59474
59475
59476
59477
59478
59479
59480
59481
59482
59483
59484
59485
59486
59487
59488
59489
59490
59491
59492
59493
59494
59495
59496
59497
59498
59499
59500
59501
59502
59503
59504
59505
59506
59507
59508
59509
59510
59511
59512
59513
59514
59515
59516
59517
59518
59519
59520
59521
59522
59523
59524
59525
59526
59527
59528
59529
59530
59531
59532
59533
59534
59535
59536
59537
59538
59539
59540
59541
59542
59543
59544
59545
59546
59547
59548
59549
59550
59551
59552
59553
59554
59555
59556
59557
59558
59559
59560
59561
59562
59563
59564
59565
59566
59567
59568
59569
59570
59571
59572
59573
59574
59575
59576
59577
59578
59579
59580
59581
59582
59583
59584
59585
59586
59587
59588
59589
59590
59591
59592
59593
59594
59595
59596
59597
59598
59599
59600
59601
59602
59603
59604
59605
59606
59607
59608
59609
59610
59611
59612
59613
59614
59615
59616
59617
59618
59619
59620
59621
59622
59623
59624
59625
59626
59627
59628
59629
59630
59631
59632
59633
59634
59635
59636
59637
59638
59639
59640
59641
59642
59643
59644
59645
59646
59647
59648
59649
59650
59651
59652
59653
59654
59655
59656
59657
59658
59659
59660
59661
59662
59663
59664
59665
59666
59667
59668
59669
59670
59671
59672
59673
59674
59675
59676
59677
59678
59679
59680
59681
59682
59683
59684
59685
59686
59687
59688
59689
59690
59691
59692
59693
59694
59695
59696
59697
59698
59699
59700
59701
59702
59703
59704
59705
59706
59707
59708
59709
59710
59711
59712
59713
59714
59715
59716
59717
59718
59719
59720
59721
59722
59723
59724
59725
59726
59727
59728
59729
59730
59731
59732
59733
59734
59735
59736
59737
59738
59739
59740
59741
59742
59743
59744
59745
59746
59747
59748
59749
59750
59751
59752
59753
59754
59755
59756
59757
59758
59759
59760
59761
59762
59763
59764
59765
59766
59767
59768
59769
59770
59771
59772
59773
59774
59775
59776
59777
59778
59779
59780
59781
59782
59783
59784
59785
59786
59787
59788
59789
59790
59791
59792
59793
59794
59795
59796
59797
59798
59799
59800
59801
59802
59803
59804
59805
59806
59807
59808
59809
59810
59811
59812
59813
59814
59815
59816
59817
59818
59819
59820
59821
59822
59823
59824
59825
59826
59827
59828
59829
59830
59831
59832
59833
59834
59835
59836
59837
59838
59839
59840
59841
59842
59843
59844
59845
59846
59847
59848
59849
59850
59851
59852
59853
59854
59855
59856
59857
59858
59859
59860
59861
59862
59863
59864
59865
59866
59867
59868
59869
59870
59871
59872
59873
59874
59875
59876
59877
59878
59879
59880
59881
59882
59883
59884
59885
59886
59887
59888
59889
59890
59891
59892
59893
59894
59895
59896
59897
59898
59899
59900
59901
59902
59903
59904
59905
59906
59907
59908
59909
59910
59911
59912
59913
59914
59915
59916
59917
59918
59919
59920
59921
59922
59923
59924
59925
59926
59927
59928
59929
59930
59931
59932
59933
59934
59935
59936
59937
59938
59939
59940
59941
59942
59943
59944
59945
59946
59947
59948
59949
59950
59951
59952
59953
59954
59955
59956
59957
59958
59959
59960
59961
59962
59963
59964
59965
59966
59967
59968
59969
59970
59971
59972
59973
59974
59975
59976
59977
59978
59979
59980
59981
59982
59983
59984
59985
59986
59987
59988
59989
59990
59991
59992
59993
59994
59995
59996
59997
59998
59999
60000
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605139_bbeb6add-2c44-4f4c-ad69-81821decca2e">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_55269b09-d776-4ca8-933c-2bd2257158d2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605139_bbeb6add-2c44-4f4c-ad69-81821decca2e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605139_bbeb6add-2c44-4f4c-ad69-81821decca2e_poly_0_">
                      <gml:posList srsDimension="3">568308.185 5517077.427 15.10299999999998 568313.044 5517081.418 10.317999999999984 568313.046 5517081.438 10.295999999999992 568304.186 5517082.311 10.338999999999999 568308.185 5517077.427 15.10299999999998</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_605139_21d8f395-21ee-4674-9aa9-11ee824bb923">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_64557a90-a917-402e-90b1-e928b5d716aa">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605139_21d8f395-21ee-4674-9aa9-11ee824bb923_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605139_21d8f395-21ee-4674-9aa9-11ee824bb923_poly_0_">
                      <gml:posList srsDimension="3">568313.044 5517081.418 0.0 568312.05 5517070.916 0.0 568307.613 5517071.371 0.0 568303.159 5517071.827 0.0 568304.186 5517082.311 0.0 568313.046 5517081.438 0.0 568313.044 5517081.418 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_605139_a70f2744-a229-4909-bb27-f3fc9281ca9b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5377aebc-93c5-43ff-955a-037f4fbe55e2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605139_a70f2744-a229-4909-bb27-f3fc9281ca9b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605139_a70f2744-a229-4909-bb27-f3fc9281ca9b_poly_0_">
                      <gml:posList srsDimension="3">568312.05 5517070.916 10.317999999999984 568313.044 5517081.418 10.317999999999984 568308.185 5517077.427 15.10299999999998 568307.613 5517071.371 15.10299999999998 568312.05 5517070.916 10.317999999999984</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_605139_2973f147-f856-4acc-97fa-0879becb43a0">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7fb1eeae-b67a-4a2a-8fed-8be2500d10f6">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605139_2973f147-f856-4acc-97fa-0879becb43a0_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605139_2973f147-f856-4acc-97fa-0879becb43a0_poly_0_">
                      <gml:posList srsDimension="3">568307.613 5517071.371 15.10299999999998 568308.185 5517077.427 15.10299999999998 568304.186 5517082.311 10.338999999999999 568303.159 5517071.827 10.300999999999988 568307.613 5517071.371 15.10299999999998</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_605139_bd8d27be-fcfa-4531-84b8-5b344754c44c">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d7be948b-6a15-4d9e-b9a6-70f2eddd55bb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605139_bd8d27be-fcfa-4531-84b8-5b344754c44c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605139_bd8d27be-fcfa-4531-84b8-5b344754c44c_poly_0_">
                      <gml:posList srsDimension="3">568312.05 5517070.916 0.0 568313.044 5517081.418 0.0 568313.046 5517081.438 0.0 568313.046 5517081.438 10.295999999999992 568313.044 5517081.418 10.317999999999984 568312.05 5517070.916 10.317999999999984 568312.05 5517070.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_605139_ea3a83f5-03a7-4ade-be60-5a81c74d6573">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_cd925f38-9a92-4350-b94f-6363ece80871">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605139_ea3a83f5-03a7-4ade-be60-5a81c74d6573_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605139_ea3a83f5-03a7-4ade-be60-5a81c74d6573_poly_0_">
                      <gml:posList srsDimension="3">568303.159 5517071.827 0.0 568303.159 5517071.827 10.300999999999988 568304.186 5517082.311 10.338999999999999 568304.186 5517082.311 0.0 568303.159 5517071.827 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_605799">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odX3</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.434</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_564d2d07-5861-49d2-b07e-1b0d4ebd539f">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_b6c82a67-c842-4515-8e93-7215681cb8f6">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605799_80f2e52a-607a-4764-9a8e-8d57941b2ebb_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605799_f1e92228-80e4-4277-89a7-e949ab25b469_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605799_fdad90db-372c-4ec8-8b27-4c7ca359e348_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605799_a0990e86-1f5a-4fcf-a750-1e86e6456332_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605799_940cfb88-cbda-4b73-9c14-310184d02e5c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605799_eac9f680-0470-44b9-af76-1eaa2fe9a833_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605799_1208f039-6795-47fb-a22d-3055fd87717e_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605799_a0990e86-1f5a-4fcf-a750-1e86e6456332">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6fe2722c-fcbd-46f1-a82f-1281717156e1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605799_a0990e86-1f5a-4fcf-a750-1e86e6456332_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605799_a0990e86-1f5a-4fcf-a750-1e86e6456332_poly_0_">
                      <gml:posList srsDimension="3">568622.804 5517029.916 0.0 568622.927 5517029.904 0.0 568622.927 5517029.904 2.4339999999999975 568622.804 5517029.916 2.4339999999999975 568605.278 5517031.637 2.4339999999999975 568605.278 5517031.637 0.0 568622.804 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:RoofSurface gml:id="DEBY_LOD2_605799_940cfb88-cbda-4b73-9c14-310184d02e5c">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_77aae44f-bd77-41e8-a5a5-b3e53b99f173">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605799_940cfb88-cbda-4b73-9c14-310184d02e5c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605799_940cfb88-cbda-4b73-9c14-310184d02e5c_poly_0_">
                      <gml:posList srsDimension="3">568622.804 5517029.916 2.4339999999999975 568622.927 5517029.904 2.4339999999999975 568623.121 5517032.888 2.4339999999999975 568623.313 5517035.829 2.4339999999999975 568605.912 5517037.583 2.4339999999999975 568605.468 5517033.395 2.4339999999999975 568605.278 5517031.637 2.4339999999999975 568622.804 5517029.916 2.4339999999999975</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_605799_80f2e52a-607a-4764-9a8e-8d57941b2ebb">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_89ba3c02-913b-4b16-b2c0-8caa963fff8e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605799_80f2e52a-607a-4764-9a8e-8d57941b2ebb_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605799_80f2e52a-607a-4764-9a8e-8d57941b2ebb_poly_0_">
                      <gml:posList srsDimension="3">568605.912 5517037.583 0.0 568605.912 5517037.583 2.4339999999999975 568623.313 5517035.829 2.4339999999999975 568623.313 5517035.829 0.0 568605.912 5517037.583 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_605799_f1e92228-80e4-4277-89a7-e949ab25b469">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_dfa0c571-c66a-46e4-923c-86896d4b22a2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605799_f1e92228-80e4-4277-89a7-e949ab25b469_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605799_f1e92228-80e4-4277-89a7-e949ab25b469_poly_0_">
                      <gml:posList srsDimension="3">568622.927 5517029.904 0.0 568623.121 5517032.888 0.0 568623.313 5517035.829 0.0 568623.313 5517035.829 2.4339999999999975 568623.121 5517032.888 2.4339999999999975 568622.927 5517029.904 2.4339999999999975 568622.927 5517029.904 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_605799_eac9f680-0470-44b9-af76-1eaa2fe9a833">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9e32683e-251f-416c-8931-f1d18405d61e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605799_eac9f680-0470-44b9-af76-1eaa2fe9a833_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605799_eac9f680-0470-44b9-af76-1eaa2fe9a833_poly_0_">
                      <gml:posList srsDimension="3">568605.278 5517031.637 0.0 568605.278 5517031.637 2.4339999999999975 568605.468 5517033.395 2.4339999999999975 568605.468 5517033.395 0.0 568605.278 5517031.637 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_605799_1208f039-6795-47fb-a22d-3055fd87717e">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6c525b2e-541a-4f21-8fc4-1e50435e6732">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605799_1208f039-6795-47fb-a22d-3055fd87717e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605799_1208f039-6795-47fb-a22d-3055fd87717e_poly_0_">
                      <gml:posList srsDimension="3">568605.468 5517033.395 0.0 568605.468 5517033.395 2.4339999999999975 568605.912 5517037.583 2.4339999999999975 568605.912 5517037.583 0.0 568605.468 5517033.395 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_605799_fdad90db-372c-4ec8-8b27-4c7ca359e348">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8b2b892a-d773-45a6-b97b-2aaf2a6460be">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605799_fdad90db-372c-4ec8-8b27-4c7ca359e348_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605799_fdad90db-372c-4ec8-8b27-4c7ca359e348_poly_0_">
                      <gml:posList srsDimension="3">568623.121 5517032.888 0.0 568622.927 5517029.904 0.0 568622.804 5517029.916 0.0 568605.278 5517031.637 0.0 568605.468 5517033.395 0.0 568605.912 5517037.583 0.0 568623.313 5517035.829 0.0 568623.121 5517032.888 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_8142237">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9pJlL</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.658</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_0f5de0c7-bb4a-4d20-b06e-67157154a105">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_91e693ec-3ae9-4dc5-8c27-2af785086a75">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8142237_4b1bf1b3-0d80-4358-9ca4-6f267dd83510_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8142237_7c6e6fe4-7612-4029-99bb-816cafd0c374_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8142237_d811a362-de2c-48f5-ab76-678227e9b15e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8142237_31cdf94b-77bb-44f9-b9f1-98cb71b001a8_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8142237_3fc0916b-079d-4240-bb4d-12f717d67540_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8142237_0ea647ab-1c45-43a5-99e9-625ed471f6cd_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_8142237_3fc0916b-079d-4240-bb4d-12f717d67540">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_71605ce7-2916-4fe2-b99d-7bd3e01b8285">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_8142237_3fc0916b-079d-4240-bb4d-12f717d67540_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_8142237_3fc0916b-079d-4240-bb4d-12f717d67540_poly_0_">
                      <gml:posList srsDimension="3">568207.758 5517007.816 2.6580000000000155 568213.399 5517007.761 2.6580000000000155 568213.432 5517010.924 2.6580000000000155 568207.928 5517010.965 2.6580000000000155 568207.763 5517008.267 2.6580000000000155 568207.735 5517007.816 2.6580000000000155 568207.758 5517007.816 2.6580000000000155</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_8142237_0ea647ab-1c45-43a5-99e9-625ed471f6cd">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d31e3bc9-1b0b-405e-9838-2e39158f8e0f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_8142237_0ea647ab-1c45-43a5-99e9-625ed471f6cd_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_8142237_0ea647ab-1c45-43a5-99e9-625ed471f6cd_poly_0_">
                      <gml:posList srsDimension="3">568207.928 5517010.965 0.0 568207.928 5517010.965 2.6580000000000155 568213.432 5517010.924 2.6580000000000155 568213.432 5517010.924 0.0 568207.928 5517010.965 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_8142237_7c6e6fe4-7612-4029-99bb-816cafd0c374">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_22f5380e-5e13-4706-853c-80968a7cc50f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_8142237_7c6e6fe4-7612-4029-99bb-816cafd0c374_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_8142237_7c6e6fe4-7612-4029-99bb-816cafd0c374_poly_0_">
                      <gml:posList srsDimension="3">568207.735 5517007.816 2.6580000000000155 568207.763 5517008.267 2.6580000000000155 568207.928 5517010.965 2.6580000000000155 568207.928 5517010.965 0.0 568207.763 5517008.267 0.0 568207.735 5517007.816 0.0 568207.735 5517007.816 2.6580000000000155</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_8142237_4b1bf1b3-0d80-4358-9ca4-6f267dd83510">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c56b3f85-1e40-4cb3-9a86-4e6e35403d0c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_8142237_4b1bf1b3-0d80-4358-9ca4-6f267dd83510_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_8142237_4b1bf1b3-0d80-4358-9ca4-6f267dd83510_poly_0_">
                      <gml:posList srsDimension="3">568207.758 5517007.816 0.0 568213.399 5517007.761 0.0 568213.399 5517007.761 2.6580000000000155 568207.758 5517007.816 2.6580000000000155 568207.735 5517007.816 2.6580000000000155 568207.735 5517007.816 0.0 568207.758 5517007.816 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_8142237_31cdf94b-77bb-44f9-b9f1-98cb71b001a8">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1e060b15-5a20-4d1c-a6ab-fdd23cd1733f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_8142237_31cdf94b-77bb-44f9-b9f1-98cb71b001a8_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_8142237_31cdf94b-77bb-44f9-b9f1-98cb71b001a8_poly_0_">
                      <gml:posList srsDimension="3">568213.432 5517010.924 0.0 568213.432 5517010.924 2.6580000000000155 568213.399 5517007.761 2.6580000000000155 568213.399 5517007.761 0.0 568213.432 5517010.924 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_8142237_d811a362-de2c-48f5-ab76-678227e9b15e">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b605ef01-6bad-4eba-b292-20b5918226ae">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_8142237_d811a362-de2c-48f5-ab76-678227e9b15e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_8142237_d811a362-de2c-48f5-ab76-678227e9b15e_poly_0_">
                      <gml:posList srsDimension="3">568213.399 5517007.761 0.0 568207.758 5517007.816 0.0 568207.735 5517007.816 0.0 568207.763 5517008.267 0.0 568207.928 5517010.965 0.0 568213.432 5517010.924 0.0 568213.399 5517007.761 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_605701">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9ofO7</name>
        </externalObject>
      </externalReference>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2019-09-25</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_2000</bldg:function>
      <bldg:roofType>1000</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">3.02</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_cb3d87e3-15c1-4754-adaa-5591af227ab8">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_4d250a09-3b33-4d3d-957b-8d60e70498fc">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605701_082e20b1-7e41-4a34-b291-f44265c0f8d7_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605701_45b354b6-51a0-475e-ad22-9f86885d1375_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605701_23fb068b-b740-49b2-90b6-34de6c1b580f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605701_bf7cb99f-43c3-454f-ae0d-3bce7622f60b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605701_07e2779a-742e-4303-989d-d6ccff5ede0e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605701_429a241b-75de-4f31-aa05-f9b2a6b207a7_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="DEBY_LOD2_605701_45b354b6-51a0-475e-ad22-9f86885d1375">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_26488f12-10b7-483d-a088-991f2cab5ae8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605701_45b354b6-51a0-475e-ad22-9f86885d1375_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605701_45b354b6-51a0-475e-ad22-9f86885d1375_poly_0_">
                      <gml:posList srsDimension="3">568254.889 5517148.541 0.0 568254.97 5517154.257 0.0 568257.823 5517154.21 0.0 568257.751 5517148.504 0.0 568254.889 5517148.541 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_605701_bf7cb99f-43c3-454f-ae0d-3bce7622f60b">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7195eb12-82a4-4178-88eb-b32cb598493c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605701_bf7cb99f-43c3-454f-ae0d-3bce7622f60b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605701_bf7cb99f-43c3-454f-ae0d-3bce7622f60b_poly_0_">
                      <gml:posList srsDimension="3">568257.751 5517148.504 3.0200000000000102 568257.823 5517154.21 3.0200000000000102 568254.97 5517154.257 3.0200000000000102 568254.889 5517148.541 3.0200000000000102 568257.751 5517148.504 3.0200000000000102</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_605701_23fb068b-b740-49b2-90b6-34de6c1b580f">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_657b5055-5aed-49f6-bebe-a80b2a24ad59">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605701_23fb068b-b740-49b2-90b6-34de6c1b580f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605701_23fb068b-b740-49b2-90b6-34de6c1b580f_poly_0_">
                      <gml:posList srsDimension="3">568254.889 5517148.541 0.0 568254.889 5517148.541 3.0200000000000102 568254.97 5517154.257 3.0200000000000102 568254.97 5517154.257 0.0 568254.889 5517148.541 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_605701_07e2779a-742e-4303-989d-d6ccff5ede0e">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_57a548c0-f57f-4b99-b128-80ee25dad508">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605701_07e2779a-742e-4303-989d-d6ccff5ede0e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605701_07e2779a-742e-4303-989d-d6ccff5ede0e_poly_0_">
                      <gml:posList srsDimension="3">568257.823 5517154.21 0.0 568257.823 5517154.21 3.0200000000000102 568257.751 5517148.504 3.0200000000000102 568257.751 5517148.504 0.0 568257.823 5517154.21 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_605701_082e20b1-7e41-4a34-b291-f44265c0f8d7">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4b14ee8d-e487-41ee-867e-b854dc3a365d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605701_082e20b1-7e41-4a34-b291-f44265c0f8d7_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605701_082e20b1-7e41-4a34-b291-f44265c0f8d7_poly_0_">
                      <gml:posList srsDimension="3">568257.751 5517148.504 0.0 568257.751 5517148.504 3.0200000000000102 568254.889 5517148.541 3.0200000000000102 568254.889 5517148.541 0.0 568257.751 5517148.504 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_605701_429a241b-75de-4f31-aa05-f9b2a6b207a7">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_10910288-9bd2-4323-b244-f7663bc62474">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605701_429a241b-75de-4f31-aa05-f9b2a6b207a7_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605701_429a241b-75de-4f31-aa05-f9b2a6b207a7_poly_0_">
                      <gml:posList srsDimension="3">568254.97 5517154.257 0.0 568254.97 5517154.257 3.0200000000000102 568257.823 5517154.21 3.0200000000000102 568257.823 5517154.21 0.0 568254.97 5517154.257 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_605063">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odrh</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 18, 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>1949</bldg:yearOfConstruction>
      <bldg:roofType>3200</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">16.132</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_369ead58-9149-4cd5-a25d-ce5ad7dbda0f">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_44d615e6-fca0-4e95-b0f6-2f4682d6a52a">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605063_606e0818-276e-4706-a200-013cdebebe0f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605063_5924dbef-a2e8-4daa-8548-f5d3977750d5_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605063_91dd8b86-fb3c-46cb-99ff-2b1c38635622_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605063_32e3f5de-8e72-4926-b4b6-160b37c297ef_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605063_ce8f87aa-9b4d-475f-a06e-47ca84133254_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605063_ff5a8f0d-332a-4516-a87a-a72e5259c28d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605063_9a89c969-6134-4c1b-ad24-c9095c6e69c5_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605063_900a08e9-c5e3-4707-8234-b9a7149b2487_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605063_32e3f5de-8e72-4926-b4b6-160b37c297ef">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9662a7fc-e8f1-4a62-b9d3-2d8c966659fb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605063_32e3f5de-8e72-4926-b4b6-160b37c297ef_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605063_32e3f5de-8e72-4926-b4b6-160b37c297ef_poly_0_">
                      <gml:posList srsDimension="3">568480.116 5517078.828 16.132000000000005 568485.56 5517082.89 12.126000000000005 568473.026 5517084.652 12.126000000000005 568472.359 5517079.917 16.132000000000005 568480.116 5517078.828 16.132000000000005</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_605063_900a08e9-c5e3-4707-8234-b9a7149b2487">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_69913040-dfe0-48c8-bd15-ac0e42e979c3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605063_900a08e9-c5e3-4707-8234-b9a7149b2487_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605063_900a08e9-c5e3-4707-8234-b9a7149b2487_poly_0_">
                      <gml:posList srsDimension="3">568484.146 5517073.422 0.0 568471.692 5517075.197 0.0 568472.359 5517079.917 0.0 568473.026 5517084.652 0.0 568485.56 5517082.89 0.0 568484.146 5517073.422 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_605063_606e0818-276e-4706-a200-013cdebebe0f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_09a5ce69-6807-4c1c-ae54-a3bf2d9332a9">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605063_606e0818-276e-4706-a200-013cdebebe0f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605063_606e0818-276e-4706-a200-013cdebebe0f_poly_0_">
                      <gml:posList srsDimension="3">568484.146 5517073.422 12.117999999999995 568480.116 5517078.828 16.132000000000005 568472.359 5517079.917 16.132000000000005 568471.692 5517075.197 12.138000000000005 568484.146 5517073.422 12.117999999999995</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_605063_ce8f87aa-9b4d-475f-a06e-47ca84133254">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2df9f16a-73ef-48aa-ac04-8810251cc8cd">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605063_ce8f87aa-9b4d-475f-a06e-47ca84133254_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605063_ce8f87aa-9b4d-475f-a06e-47ca84133254_poly_0_">
                      <gml:posList srsDimension="3">568485.56 5517082.89 0.0 568485.56 5517082.89 12.126000000000005 568484.146 5517073.422 12.117999999999995 568484.146 5517073.422 0.0 568485.56 5517082.89 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_605063_ff5a8f0d-332a-4516-a87a-a72e5259c28d">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3f6d3aee-d7d1-43dc-946e-1f12463566b8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605063_ff5a8f0d-332a-4516-a87a-a72e5259c28d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605063_ff5a8f0d-332a-4516-a87a-a72e5259c28d_poly_0_">
                      <gml:posList srsDimension="3">568484.146 5517073.422 0.0 568484.146 5517073.422 12.117999999999995 568471.692 5517075.197 12.138000000000005 568471.692 5517075.197 0.0 568484.146 5517073.422 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_605063_5924dbef-a2e8-4daa-8548-f5d3977750d5">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e402f95e-d776-4b77-8ff4-7aae13140ec9">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605063_5924dbef-a2e8-4daa-8548-f5d3977750d5_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605063_5924dbef-a2e8-4daa-8548-f5d3977750d5_poly_0_">
                      <gml:posList srsDimension="3">568471.692 5517075.197 12.138000000000005 568472.359 5517079.917 16.132000000000005 568473.026 5517084.652 12.126000000000005 568473.026 5517084.652 0.0 568472.359 5517079.917 0.0 568471.692 5517075.197 0.0 568471.692 5517075.197 12.138000000000005</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_605063_9a89c969-6134-4c1b-ad24-c9095c6e69c5">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fec7cdc5-4632-4446-ab1c-50b2939cb39c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605063_9a89c969-6134-4c1b-ad24-c9095c6e69c5_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605063_9a89c969-6134-4c1b-ad24-c9095c6e69c5_poly_0_">
                      <gml:posList srsDimension="3">568484.146 5517073.422 12.117999999999995 568485.56 5517082.89 12.126000000000005 568480.116 5517078.828 16.132000000000005 568484.146 5517073.422 12.117999999999995</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_605063_91dd8b86-fb3c-46cb-99ff-2b1c38635622">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_de028662-0905-471b-8726-9beda9e21d9c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605063_91dd8b86-fb3c-46cb-99ff-2b1c38635622_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605063_91dd8b86-fb3c-46cb-99ff-2b1c38635622_poly_0_">
                      <gml:posList srsDimension="3">568473.026 5517084.652 0.0 568473.026 5517084.652 12.126000000000005 568485.56 5517082.89 12.126000000000005 568485.56 5517082.89 0.0 568473.026 5517084.652 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_107599308">
      <creationDate>2020-05-14</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odxX</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 9, 97080, Würzburg</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>5000</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_1000</bldg:function>
      <bldg:yearOfConstruction>1973</bldg:yearOfConstruction>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">11.08</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_f7cf26ce-0e70-4039-af32-b5419a2b2353">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_e67b3fe1-bc8a-46bc-be1c-a60409580cc4">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599308_d0b873ef-1b9f-4db7-878e-757139f472b8_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599308_e838374f-b588-4d04-a1e7-ef91988aab09_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599308_2dd1ab2f-b269-445a-9aab-ef16a2c118ab_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599308_63f55aa3-4ba6-4201-a613-4decfdd06a08_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599308_c1236273-9e59-4ad8-8003-dc25eb9deb83_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599308_d4944e55-b816-48eb-acd5-7e67f825890d_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599308_b7003130-fe5a-42e8-ba8f-d6324973c639_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599308_69f85846-93a6-4108-8f11-96c312d885d2_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599308_dd2d45aa-8d77-4aa6-9727-aa05558757c4_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599308_56388a89-0672-4efa-9c5d-471738036ae9_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599308_0980860d-e579-48f8-8374-f5e4917a1e2a_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599308_1e81ef89-4e39-429f-93e7-067855bce6ad_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599308_de36ab29-67e7-4d4d-b66d-e0c69d364865_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599308_977bb374-acbf-4c25-b70b-5e626cdb5605_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599308_139375c5-e1e0-4a2e-b420-6dd06d8604c1_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599308_0df30bd4-8f6f-4826-995a-8bd5299a189c_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599308_33792532-15fc-4f67-9934-6c74791c3386_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599308_2494b244-1974-4ea7-96e9-f72e91c7d7ac_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599308_ba852178-bb60-4036-927c-ab349b13c03c_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599308_440a1967-fac0-4e8d-be97-db621afaa0a9_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599308_ee396363-ecfd-4f61-96c3-6059be8a1a26_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599308_7d9f68c2-1b05-4726-9de7-c64749dcfc9f_2_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_107599308_ba852178-bb60-4036-927c-ab349b13c03c_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_632f68c7-8607-404b-9615-f8a8dc55e9f0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599308_ba852178-bb60-4036-927c-ab349b13c03c_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599308_ba852178-bb60-4036-927c-ab349b13c03c_2_poly_0_">
                      <gml:posList srsDimension="3">568692.49 5517076.62 0.0 568692.49 5517076.62 7.775000000000006 568686.84 5517077.61 7.780000000000001 568686.84 5517077.61 0.0 568692.49 5517076.62 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_107599308_69f85846-93a6-4108-8f11-96c312d885d2_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_04831962-0e64-4c60-b805-69b5685af1a2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599308_69f85846-93a6-4108-8f11-96c312d885d2_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599308_69f85846-93a6-4108-8f11-96c312d885d2_2_poly_0_">
                      <gml:posList srsDimension="3">568707.54 5517072.66 0.0 568707.76 5517073.97 0.0 568707.76 5517073.97 7.7760000000000105 568707.749 5517073.905 7.740000000000009 568707.749 5517073.905 4.930000000000007 568707.54 5517072.66 4.930000000000007 568707.54 5517072.66 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_107599308_56388a89-0672-4efa-9c5d-471738036ae9_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ca399101-27ca-408c-9806-6f71b977cac5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599308_56388a89-0672-4efa-9c5d-471738036ae9_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599308_56388a89-0672-4efa-9c5d-471738036ae9_2_poly_0_">
                      <gml:posList srsDimension="3">568692.49 5517076.62 0.0 568691.48 5517070.6 0.0 568691.48 5517070.6 4.930000000000007 568692.479 5517076.557 4.930000000000007 568692.479 5517076.557 7.740000000000009 568692.49 5517076.62 7.775000000000006 568692.49 5517076.62 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_107599308_440a1967-fac0-4e8d-be97-db621afaa0a9_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4c4b36e4-bf5b-4392-9610-acf72b4a7f41">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599308_440a1967-fac0-4e8d-be97-db621afaa0a9_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599308_440a1967-fac0-4e8d-be97-db621afaa0a9_2_poly_0_">
                      <gml:posList srsDimension="3">568690.02 5517088.87 0.0 568690.02 5517088.87 7.983000000000004 568696.38 5517087.77 7.9809999999999945 568696.38 5517087.77 0.0 568690.02 5517088.87 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_107599308_dd2d45aa-8d77-4aa6-9727-aa05558757c4_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_86142592-044f-4cfa-8a25-ee2da4290f89">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599308_dd2d45aa-8d77-4aa6-9727-aa05558757c4_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599308_dd2d45aa-8d77-4aa6-9727-aa05558757c4_2_poly_0_">
                      <gml:posList srsDimension="3">568718.63 5517072.07 0.0 568707.76 5517073.97 0.0 568707.54 5517072.66 0.0 568707.31 5517071.34 0.0 568703.36 5517072.0 0.0 568702.79 5517068.63 0.0 568691.48 5517070.6 0.0 568692.49 5517076.62 0.0 568686.84 5517077.61 0.0 568688.84 5517089.07 0.0 568690.02 5517088.87 0.0 568696.38 5517087.77 0.0 568711.59 5517085.12 0.0 568711.66 5517085.51 0.0 568714.23 5517085.06 0.0 568714.17 5517084.68 0.0 568720.63 5517083.56 0.0 568718.63 5517072.07 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_107599308_c1236273-9e59-4ad8-8003-dc25eb9deb83_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ded01eda-b2e2-4dad-a530-6c67bf7e411f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599308_c1236273-9e59-4ad8-8003-dc25eb9deb83_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599308_c1236273-9e59-4ad8-8003-dc25eb9deb83_2_poly_0_">
                      <gml:posList srsDimension="3">568702.79 5517068.63 0.0 568702.79 5517068.63 4.930000000000007 568691.48 5517070.6 4.930000000000007 568691.48 5517070.6 0.0 568702.79 5517068.63 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_107599308_0df30bd4-8f6f-4826-995a-8bd5299a189c_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_cfb5e224-74b3-433e-b0ee-41a7c5813064">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599308_0df30bd4-8f6f-4826-995a-8bd5299a189c_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599308_0df30bd4-8f6f-4826-995a-8bd5299a189c_2_poly_0_">
                      <gml:posList srsDimension="3">568696.38 5517087.77 0.0 568696.38 5517087.77 7.9809999999999945 568711.59 5517085.12 7.985000000000014 568711.59 5517085.12 0.0 568696.38 5517087.77 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_107599308_2494b244-1974-4ea7-96e9-f72e91c7d7ac_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5b2192a3-0824-4a45-8eec-cbf8b82f4acc">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599308_2494b244-1974-4ea7-96e9-f72e91c7d7ac_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599308_2494b244-1974-4ea7-96e9-f72e91c7d7ac_2_poly_0_">
                      <gml:posList srsDimension="3">568707.31 5517071.34 0.0 568707.31 5517071.34 4.930000000000007 568703.36 5517072.0 4.930000000000007 568703.36 5517072.0 0.0 568707.31 5517071.34 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
For faster browsing, not all history is shown. View entire blame