Grombühl_v4_case_study.gml 6.37 MB
Newer Older
Eric Duminil's avatar
Eric Duminil committed
35001
35002
35003
35004
35005
35006
35007
35008
35009
35010
35011
35012
35013
35014
35015
35016
35017
35018
35019
35020
35021
35022
35023
35024
35025
35026
35027
35028
35029
35030
35031
35032
35033
35034
35035
35036
35037
35038
35039
35040
35041
35042
35043
35044
35045
35046
35047
35048
35049
35050
35051
35052
35053
35054
35055
35056
35057
35058
35059
35060
35061
35062
35063
35064
35065
35066
35067
35068
35069
35070
35071
35072
35073
35074
35075
35076
35077
35078
35079
35080
35081
35082
35083
35084
35085
35086
35087
35088
35089
35090
35091
35092
35093
35094
35095
35096
35097
35098
35099
35100
35101
35102
35103
35104
35105
35106
35107
35108
35109
35110
35111
35112
35113
35114
35115
35116
35117
35118
35119
35120
35121
35122
35123
35124
35125
35126
35127
35128
35129
35130
35131
35132
35133
35134
35135
35136
35137
35138
35139
35140
35141
35142
35143
35144
35145
35146
35147
35148
35149
35150
35151
35152
35153
35154
35155
35156
35157
35158
35159
35160
35161
35162
35163
35164
35165
35166
35167
35168
35169
35170
35171
35172
35173
35174
35175
35176
35177
35178
35179
35180
35181
35182
35183
35184
35185
35186
35187
35188
35189
35190
35191
35192
35193
35194
35195
35196
35197
35198
35199
35200
35201
35202
35203
35204
35205
35206
35207
35208
35209
35210
35211
35212
35213
35214
35215
35216
35217
35218
35219
35220
35221
35222
35223
35224
35225
35226
35227
35228
35229
35230
35231
35232
35233
35234
35235
35236
35237
35238
35239
35240
35241
35242
35243
35244
35245
35246
35247
35248
35249
35250
35251
35252
35253
35254
35255
35256
35257
35258
35259
35260
35261
35262
35263
35264
35265
35266
35267
35268
35269
35270
35271
35272
35273
35274
35275
35276
35277
35278
35279
35280
35281
35282
35283
35284
35285
35286
35287
35288
35289
35290
35291
35292
35293
35294
35295
35296
35297
35298
35299
35300
35301
35302
35303
35304
35305
35306
35307
35308
35309
35310
35311
35312
35313
35314
35315
35316
35317
35318
35319
35320
35321
35322
35323
35324
35325
35326
35327
35328
35329
35330
35331
35332
35333
35334
35335
35336
35337
35338
35339
35340
35341
35342
35343
35344
35345
35346
35347
35348
35349
35350
35351
35352
35353
35354
35355
35356
35357
35358
35359
35360
35361
35362
35363
35364
35365
35366
35367
35368
35369
35370
35371
35372
35373
35374
35375
35376
35377
35378
35379
35380
35381
35382
35383
35384
35385
35386
35387
35388
35389
35390
35391
35392
35393
35394
35395
35396
35397
35398
35399
35400
35401
35402
35403
35404
35405
35406
35407
35408
35409
35410
35411
35412
35413
35414
35415
35416
35417
35418
35419
35420
35421
35422
35423
35424
35425
35426
35427
35428
35429
35430
35431
35432
35433
35434
35435
35436
35437
35438
35439
35440
35441
35442
35443
35444
35445
35446
35447
35448
35449
35450
35451
35452
35453
35454
35455
35456
35457
35458
35459
35460
35461
35462
35463
35464
35465
35466
35467
35468
35469
35470
35471
35472
35473
35474
35475
35476
35477
35478
35479
35480
35481
35482
35483
35484
35485
35486
35487
35488
35489
35490
35491
35492
35493
35494
35495
35496
35497
35498
35499
35500
35501
35502
35503
35504
35505
35506
35507
35508
35509
35510
35511
35512
35513
35514
35515
35516
35517
35518
35519
35520
35521
35522
35523
35524
35525
35526
35527
35528
35529
35530
35531
35532
35533
35534
35535
35536
35537
35538
35539
35540
35541
35542
35543
35544
35545
35546
35547
35548
35549
35550
35551
35552
35553
35554
35555
35556
35557
35558
35559
35560
35561
35562
35563
35564
35565
35566
35567
35568
35569
35570
35571
35572
35573
35574
35575
35576
35577
35578
35579
35580
35581
35582
35583
35584
35585
35586
35587
35588
35589
35590
35591
35592
35593
35594
35595
35596
35597
35598
35599
35600
35601
35602
35603
35604
35605
35606
35607
35608
35609
35610
35611
35612
35613
35614
35615
35616
35617
35618
35619
35620
35621
35622
35623
35624
35625
35626
35627
35628
35629
35630
35631
35632
35633
35634
35635
35636
35637
35638
35639
35640
35641
35642
35643
35644
35645
35646
35647
35648
35649
35650
35651
35652
35653
35654
35655
35656
35657
35658
35659
35660
35661
35662
35663
35664
35665
35666
35667
35668
35669
35670
35671
35672
35673
35674
35675
35676
35677
35678
35679
35680
35681
35682
35683
35684
35685
35686
35687
35688
35689
35690
35691
35692
35693
35694
35695
35696
35697
35698
35699
35700
35701
35702
35703
35704
35705
35706
35707
35708
35709
35710
35711
35712
35713
35714
35715
35716
35717
35718
35719
35720
35721
35722
35723
35724
35725
35726
35727
35728
35729
35730
35731
35732
35733
35734
35735
35736
35737
35738
35739
35740
35741
35742
35743
35744
35745
35746
35747
35748
35749
35750
35751
35752
35753
35754
35755
35756
35757
35758
35759
35760
35761
35762
35763
35764
35765
35766
35767
35768
35769
35770
35771
35772
35773
35774
35775
35776
35777
35778
35779
35780
35781
35782
35783
35784
35785
35786
35787
35788
35789
35790
35791
35792
35793
35794
35795
35796
35797
35798
35799
35800
35801
35802
35803
35804
35805
35806
35807
35808
35809
35810
35811
35812
35813
35814
35815
35816
35817
35818
35819
35820
35821
35822
35823
35824
35825
35826
35827
35828
35829
35830
35831
35832
35833
35834
35835
35836
35837
35838
35839
35840
35841
35842
35843
35844
35845
35846
35847
35848
35849
35850
35851
35852
35853
35854
35855
35856
35857
35858
35859
35860
35861
35862
35863
35864
35865
35866
35867
35868
35869
35870
35871
35872
35873
35874
35875
35876
35877
35878
35879
35880
35881
35882
35883
35884
35885
35886
35887
35888
35889
35890
35891
35892
35893
35894
35895
35896
35897
35898
35899
35900
35901
35902
35903
35904
35905
35906
35907
35908
35909
35910
35911
35912
35913
35914
35915
35916
35917
35918
35919
35920
35921
35922
35923
35924
35925
35926
35927
35928
35929
35930
35931
35932
35933
35934
35935
35936
35937
35938
35939
35940
35941
35942
35943
35944
35945
35946
35947
35948
35949
35950
35951
35952
35953
35954
35955
35956
35957
35958
35959
35960
35961
35962
35963
35964
35965
35966
35967
35968
35969
35970
35971
35972
35973
35974
35975
35976
35977
35978
35979
35980
35981
35982
35983
35984
35985
35986
35987
35988
35989
35990
35991
35992
35993
35994
35995
35996
35997
35998
35999
36000
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605051_0b03614e-86f1-4387-9dc3-6c19ab0375be_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2b352903-8d52-4edb-9558-f9394d5262c0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605051_0b03614e-86f1-4387-9dc3-6c19ab0375be_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605051_0b03614e-86f1-4387-9dc3-6c19ab0375be_2_poly_0_">
                      <gml:posList srsDimension="3">568326.71 5517103.72 13.117999999999995 568326.71 5517103.72 0.0 568325.52 5517090.89 0.0 568325.52 5517090.89 13.117999999999995 568326.71 5517103.72 13.117999999999995</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_605051_c52fa3e9-89e6-4b03-bfac-bebc5d7bd135_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_28e946dc-d3bf-49b0-bd5a-943d72fb206c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605051_c52fa3e9-89e6-4b03-bfac-bebc5d7bd135_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605051_c52fa3e9-89e6-4b03-bfac-bebc5d7bd135_2_poly_0_">
                      <gml:posList srsDimension="3">568330.89 5517090.38 13.119 568330.9 5517090.53 13.260999999999996 568335.418 5517090.1 13.260999999999996 568331.002 5517095.433 17.90700000000001 568325.52 5517090.89 13.117999999999995 568330.89 5517090.38 13.119</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_605051_7d6db315-b654-4b08-bff7-9143ef45ed8f_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_13c04bbd-0427-4a44-b526-e5c535c917f0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605051_7d6db315-b654-4b08-bff7-9143ef45ed8f_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605051_7d6db315-b654-4b08-bff7-9143ef45ed8f_2_poly_0_">
                      <gml:posList srsDimension="3">568335.52 5517090.09 13.163000000000011 568335.52 5517090.09 0.0 568335.99 5517094.84 0.0 568335.99 5517094.84 13.134999999999991 568335.52 5517090.09 13.163000000000011</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_605051_cc92d6ae-ded7-47f2-ad15-7e77a46a2438_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_60d3e369-cf1e-4c92-a51a-574330e5e2d9">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605051_cc92d6ae-ded7-47f2-ad15-7e77a46a2438_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605051_cc92d6ae-ded7-47f2-ad15-7e77a46a2438_2_poly_0_">
                      <gml:posList srsDimension="3">568331.454 5517100.3 17.90700000000001 568339.792 5517099.091 17.90700000000001 568340.39 5517103.76 13.180000000000007 568340.39 5517103.82 13.12100000000001 568328.94 5517105.48 13.12100000000001 568327.858 5517104.626 14.125 568331.454 5517100.3 17.90700000000001</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_605051_19b7adcb-adf5-486e-a563-429938fdf444_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4ed0edee-8ce4-46ba-b87a-2a3afb4fef9b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605051_19b7adcb-adf5-486e-a563-429938fdf444_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605051_19b7adcb-adf5-486e-a563-429938fdf444_2_poly_0_">
                      <gml:posList srsDimension="3">568340.39 5517103.82 0.0 568340.39 5517103.82 13.12100000000001 568340.39 5517103.76 13.180000000000007 568340.39 5517103.76 0.0 568340.39 5517103.82 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_605051_18f8f37c-ab81-42f6-ac48-ae7124d7f502_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c7fe45fe-aa15-425c-8edc-2cf63702478f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605051_18f8f37c-ab81-42f6-ac48-ae7124d7f502_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605051_18f8f37c-ab81-42f6-ac48-ae7124d7f502_2_poly_0_">
                      <gml:posList srsDimension="3">568331.454 5517100.3 17.90700000000001 568335.99 5517094.84 13.134999999999991 568339.19 5517094.39 13.147999999999996 568339.792 5517099.091 17.90700000000001 568331.454 5517100.3 17.90700000000001</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
    </bldg:Building>
  </cityObjectMember><cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_605064">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odvc</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_9998</bldg:function>
      <bldg:roofType>1000</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">5.137</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_e9d09a86-6409-4ae2-98ef-3748df7a4c73">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_dc9be3fc-1258-4915-adf9-fd0f670687f8">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605064_bc6350ce-a082-4881-9de9-b8d974578943_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605064_28d9fa2e-53fc-4a5c-b1e1-16574ae95909_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605064_81d6db5e-e663-4dc8-8acf-afa9cc25bfa4_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605064_3fa10dec-c347-450d-9eda-ea84b76ff7b1_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605064_298e8aba-164e-43a4-b814-1c8fa43a9756_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605064_60e335b3-6633-491d-92c6-43d151834332_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605064_157821c9-292f-424a-b879-2e3e1f12f396_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605064_15859441-8b59-4b3f-adb0-769847345c26_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605064_e95f3d1e-9a4e-42d7-a58d-79b19da87a0c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605064_7c9f4a15-38ab-4d47-b6c0-66f099d6996c_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605064_3fa10dec-c347-450d-9eda-ea84b76ff7b1">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_91631b5d-45b8-4998-93dd-5b7e55638e0e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605064_3fa10dec-c347-450d-9eda-ea84b76ff7b1_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605064_3fa10dec-c347-450d-9eda-ea84b76ff7b1_poly_0_">
                      <gml:posList srsDimension="3">568438.276 5517045.372 0.0 568438.276 5517045.372 5.1370000000000005 568438.817 5517045.333 5.1370000000000005 568438.817 5517045.333 0.0 568438.276 5517045.372 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_605064_157821c9-292f-424a-b879-2e3e1f12f396">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_153ccb51-58fb-47a2-aa1c-7c97a9417313">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605064_157821c9-292f-424a-b879-2e3e1f12f396_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605064_157821c9-292f-424a-b879-2e3e1f12f396_poly_0_">
                      <gml:posList srsDimension="3">568449.838 5517039.117 0.0 568449.838 5517039.117 5.1370000000000005 568447.701 5517039.271 5.1370000000000005 568447.701 5517039.271 0.0 568449.838 5517039.117 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_605064_298e8aba-164e-43a4-b814-1c8fa43a9756">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_20950a11-9518-40ab-be3a-f4afb35a9a90">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605064_298e8aba-164e-43a4-b814-1c8fa43a9756_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605064_298e8aba-164e-43a4-b814-1c8fa43a9756_poly_0_">
                      <gml:posList srsDimension="3">568447.701 5517039.271 0.0 568447.701 5517039.271 5.1370000000000005 568446.884 5517026.788 5.1370000000000005 568446.884 5517026.788 0.0 568447.701 5517039.271 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_605064_15859441-8b59-4b3f-adb0-769847345c26">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_81ad0cfd-3881-4b74-b651-80267413f2dc">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605064_15859441-8b59-4b3f-adb0-769847345c26_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605064_15859441-8b59-4b3f-adb0-769847345c26_poly_0_">
                      <gml:posList srsDimension="3">568436.085 5517031.755 5.1370000000000005 568436.662 5517035.335 5.1370000000000005 568438.276 5517045.372 5.1370000000000005 568438.276 5517045.372 0.0 568436.662 5517035.335 0.0 568436.085 5517031.755 0.0 568436.085 5517031.755 5.1370000000000005</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_605064_60e335b3-6633-491d-92c6-43d151834332">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a9592aef-c2da-4694-82e9-3b1af3be6b1d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605064_60e335b3-6633-491d-92c6-43d151834332_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605064_60e335b3-6633-491d-92c6-43d151834332_poly_0_">
                      <gml:posList srsDimension="3">568436.148 5517027.634 0.0 568446.884 5517026.788 0.0 568446.884 5517026.788 5.1370000000000005 568436.148 5517027.634 5.1370000000000005 568435.437 5517027.689 5.1370000000000005 568435.437 5517027.689 0.0 568436.148 5517027.634 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_605064_e95f3d1e-9a4e-42d7-a58d-79b19da87a0c">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5e8eb377-80cf-4f97-8e87-2b4019d5aa2f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605064_e95f3d1e-9a4e-42d7-a58d-79b19da87a0c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605064_e95f3d1e-9a4e-42d7-a58d-79b19da87a0c_poly_0_">
                      <gml:posList srsDimension="3">568438.817 5517045.333 0.0 568438.817 5517045.333 5.1370000000000005 568450.222 5517044.603 5.1370000000000005 568450.222 5517044.603 0.0 568438.817 5517045.333 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_605064_bc6350ce-a082-4881-9de9-b8d974578943">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9405996d-fd66-41a1-a9dd-bd8a26fb21a3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605064_bc6350ce-a082-4881-9de9-b8d974578943_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605064_bc6350ce-a082-4881-9de9-b8d974578943_poly_0_">
                      <gml:posList srsDimension="3">568435.437 5517027.689 0.0 568435.437 5517027.689 5.1370000000000005 568436.085 5517031.755 5.1370000000000005 568436.085 5517031.755 0.0 568435.437 5517027.689 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_605064_81d6db5e-e663-4dc8-8acf-afa9cc25bfa4">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_039293c1-cd91-4202-940a-e6c1f58fa1a1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605064_81d6db5e-e663-4dc8-8acf-afa9cc25bfa4_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605064_81d6db5e-e663-4dc8-8acf-afa9cc25bfa4_poly_0_">
                      <gml:posList srsDimension="3">568450.222 5517044.603 0.0 568450.222 5517044.603 5.1370000000000005 568449.838 5517039.117 5.1370000000000005 568449.838 5517039.117 0.0 568450.222 5517044.603 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_605064_7c9f4a15-38ab-4d47-b6c0-66f099d6996c">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4802bd39-4e53-4cda-8359-07e856b91817">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605064_7c9f4a15-38ab-4d47-b6c0-66f099d6996c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605064_7c9f4a15-38ab-4d47-b6c0-66f099d6996c_poly_0_">
                      <gml:posList srsDimension="3">568449.838 5517039.117 0.0 568447.701 5517039.271 0.0 568446.884 5517026.788 0.0 568436.148 5517027.634 0.0 568435.437 5517027.689 0.0 568436.085 5517031.755 0.0 568436.662 5517035.335 0.0 568438.276 5517045.372 0.0 568438.817 5517045.333 0.0 568450.222 5517044.603 0.0 568449.838 5517039.117 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_605064_28d9fa2e-53fc-4a5c-b1e1-16574ae95909">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_51e3e1ba-8dca-43c5-bdd5-f2e3f98048fd">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605064_28d9fa2e-53fc-4a5c-b1e1-16574ae95909_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605064_28d9fa2e-53fc-4a5c-b1e1-16574ae95909_poly_0_">
                      <gml:posList srsDimension="3">568436.148 5517027.634 5.1370000000000005 568446.884 5517026.788 5.1370000000000005 568447.701 5517039.271 5.1370000000000005 568449.838 5517039.117 5.1370000000000005 568450.222 5517044.603 5.1370000000000005 568438.817 5517045.333 5.1370000000000005 568438.276 5517045.372 5.1370000000000005 568436.662 5517035.335 5.1370000000000005 568436.085 5517031.755 5.1370000000000005 568435.437 5517027.689 5.1370000000000005 568436.148 5517027.634 5.1370000000000005</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
    </bldg:Building>
  </cityObjectMember><cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_605136">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9pK3h</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>Scharoldstraß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>1956</bldg:yearOfConstruction>
      <bldg:roofType>3200</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">16.29</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_25a19900-6d5b-4bb4-932c-fc925d5393f8">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_ce21530b-04b4-4242-84b2-91dbb3856177">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605136_b40966e9-6351-43d0-b743-4c033ea7da9f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605136_c5315c06-6d63-42b7-884e-0e9f837dad39_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605136_ea8adc48-4a3e-410d-85c4-5bcee4aebfa0_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605136_cd8c9f92-4996-48b0-81ed-986dab360caf_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605136_51ce7592-c2fd-43d8-8332-7de12f6a4557_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605136_511a7d2a-8e08-415b-bf70-dbe13500263b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605136_24ac82f9-9e68-4f91-86d4-cd44cff95311_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605136_1899efe3-c07c-45f4-842b-5f41ef740f9e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605136_528a9065-6e68-4382-b5c8-09c0cdb817d0_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605136_bee4d35e-7448-4046-90a0-3e18d12513cf_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="DEBY_LOD2_605136_c5315c06-6d63-42b7-884e-0e9f837dad39">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6e7f36d0-c23e-454b-92eb-8180e09d49b4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605136_c5315c06-6d63-42b7-884e-0e9f837dad39_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605136_c5315c06-6d63-42b7-884e-0e9f837dad39_poly_0_">
                      <gml:posList srsDimension="3">568290.45 5517087.079 0.0 568278.111 5517083.412 0.0 568276.543 5517088.649 0.0 568274.971 5517093.901 0.0 568288.889 5517098.08 0.0 568290.623 5517092.227 0.0 568292.004 5517087.566 0.0 568292.011 5517087.542 0.0 568290.45 5517087.079 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_605136_24ac82f9-9e68-4f91-86d4-cd44cff95311">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3afadd04-3446-4bb0-929d-3a25e0c9535d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605136_24ac82f9-9e68-4f91-86d4-cd44cff95311_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605136_24ac82f9-9e68-4f91-86d4-cd44cff95311_poly_0_">
                      <gml:posList srsDimension="3">568276.543 5517088.649 0.0 568278.111 5517083.412 0.0 568278.111 5517083.412 10.857 568276.543 5517088.649 16.289999999999992 568274.971 5517093.901 10.839999999999975 568274.971 5517093.901 0.0 568276.543 5517088.649 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_605136_ea8adc48-4a3e-410d-85c4-5bcee4aebfa0">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9099d423-035a-466e-9e5a-b51388e89352">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605136_ea8adc48-4a3e-410d-85c4-5bcee4aebfa0_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605136_ea8adc48-4a3e-410d-85c4-5bcee4aebfa0_poly_0_">
                      <gml:posList srsDimension="3">568276.543 5517088.649 16.289999999999992 568285.196 5517091.247 16.289999999999992 568288.889 5517098.08 10.839999999999975 568274.971 5517093.901 10.839999999999975 568276.543 5517088.649 16.289999999999992</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_605136_528a9065-6e68-4382-b5c8-09c0cdb817d0">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_22f5a3e5-efe3-4690-9f89-03c395b97cd9">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605136_528a9065-6e68-4382-b5c8-09c0cdb817d0_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605136_528a9065-6e68-4382-b5c8-09c0cdb817d0_poly_0_">
                      <gml:posList srsDimension="3">568292.011 5517087.542 0.0 568292.011 5517087.542 10.813999999999993 568290.45 5517087.079 10.819999999999993 568290.45 5517087.079 0.0 568292.011 5517087.542 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_605136_1899efe3-c07c-45f4-842b-5f41ef740f9e">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f9156b62-3161-4b9d-abe9-98cf0700ea94">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605136_1899efe3-c07c-45f4-842b-5f41ef740f9e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605136_1899efe3-c07c-45f4-842b-5f41ef740f9e_poly_0_">
                      <gml:posList srsDimension="3">568274.971 5517093.901 0.0 568274.971 5517093.901 10.839999999999975 568288.889 5517098.08 10.839999999999975 568288.889 5517098.08 0.0 568274.971 5517093.901 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_605136_bee4d35e-7448-4046-90a0-3e18d12513cf">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5658bc54-2940-444a-89d5-5a0ee6702660">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605136_bee4d35e-7448-4046-90a0-3e18d12513cf_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605136_bee4d35e-7448-4046-90a0-3e18d12513cf_poly_0_">
                      <gml:posList srsDimension="3">568290.45 5517087.079 0.0 568290.45 5517087.079 10.819999999999993 568278.111 5517083.412 10.857 568278.111 5517083.412 0.0 568290.45 5517087.079 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_605136_51ce7592-c2fd-43d8-8332-7de12f6a4557">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d7492b40-1ca1-4393-99ff-12373da0be2d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605136_51ce7592-c2fd-43d8-8332-7de12f6a4557_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605136_51ce7592-c2fd-43d8-8332-7de12f6a4557_poly_0_">
                      <gml:posList srsDimension="3">568292.004 5517087.566 10.839999999999975 568292.011 5517087.542 10.813999999999993 568292.011 5517087.542 0.0 568292.004 5517087.566 0.0 568290.623 5517092.227 0.0 568290.623 5517092.227 10.838999999999999 568292.004 5517087.566 10.839999999999975</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_605136_cd8c9f92-4996-48b0-81ed-986dab360caf">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ba892251-4b0b-4935-9ce8-f8019095b848">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605136_cd8c9f92-4996-48b0-81ed-986dab360caf_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605136_cd8c9f92-4996-48b0-81ed-986dab360caf_poly_0_">
                      <gml:posList srsDimension="3">568288.889 5517098.08 0.0 568288.889 5517098.08 10.839999999999975 568290.623 5517092.227 10.838999999999999 568290.623 5517092.227 0.0 568288.889 5517098.08 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_605136_511a7d2a-8e08-415b-bf70-dbe13500263b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6f94d46d-9762-4307-a3e3-38e12937706d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605136_511a7d2a-8e08-415b-bf70-dbe13500263b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605136_511a7d2a-8e08-415b-bf70-dbe13500263b_poly_0_">
                      <gml:posList srsDimension="3">568292.004 5517087.566 10.839999999999975 568290.623 5517092.227 10.838999999999999 568288.889 5517098.08 10.839999999999975 568285.196 5517091.247 16.289999999999992 568292.004 5517087.566 10.839999999999975</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_605136_b40966e9-6351-43d0-b743-4c033ea7da9f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5ec9f992-c3c6-413b-9d40-23e6fb42ad64">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605136_b40966e9-6351-43d0-b743-4c033ea7da9f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605136_b40966e9-6351-43d0-b743-4c033ea7da9f_poly_0_">
                      <gml:posList srsDimension="3">568278.111 5517083.412 10.857 568290.45 5517087.079 10.819999999999993 568292.011 5517087.542 10.813999999999993 568292.004 5517087.566 10.839999999999975 568285.196 5517091.247 16.289999999999992 568276.543 5517088.649 16.289999999999992 568278.111 5517083.412 10.857</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
    </bldg:Building>
  </cityObjectMember><cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_605798">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odYz</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">1.997</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_5ae1fc1e-47c7-4540-88a8-9b72fa559e59">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_2b0adfd0-2bd7-429c-9725-9d78c689ee12">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605798_79b36083-3b44-4dc6-845d-9b2493fbf79d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605798_ff990ccf-73c3-470d-a396-17c00dd18b38_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605798_9e33a284-8f20-40dd-83b6-41ef0f38a434_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605798_cdb368bc-3d5b-4bcc-a6e0-b393f7dda1d5_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605798_97881972-c87b-4bc2-be9a-07c8609d7056_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605798_d4997a72-2170-4cdf-bf88-2a040ea312cc_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605798_d4997a72-2170-4cdf-bf88-2a040ea312cc">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_62c90802-a351-4e68-a6ab-2e3057cdc77f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605798_d4997a72-2170-4cdf-bf88-2a040ea312cc_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605798_d4997a72-2170-4cdf-bf88-2a040ea312cc_poly_0_">
                      <gml:posList srsDimension="3">568603.542 5517037.808 1.9969999999999857 568603.207 5517033.664 1.9969999999999857 568605.468 5517033.395 1.9969999999999857 568605.912 5517037.583 1.9969999999999857 568603.542 5517037.808 1.9969999999999857</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_605798_97881972-c87b-4bc2-be9a-07c8609d7056">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_768b1dc0-48b2-45d3-adff-16b81a33c2bd">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605798_97881972-c87b-4bc2-be9a-07c8609d7056_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605798_97881972-c87b-4bc2-be9a-07c8609d7056_poly_0_">
                      <gml:posList srsDimension="3">568603.207 5517033.664 1.9969999999999857 568603.542 5517037.808 1.9969999999999857 568603.542 5517037.808 0.0 568603.207 5517033.664 0.0 568603.207 5517033.664 1.9969999999999857</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_605798_79b36083-3b44-4dc6-845d-9b2493fbf79d">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_77efeddd-879e-4bd6-b4d0-7adfff17e18f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605798_79b36083-3b44-4dc6-845d-9b2493fbf79d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605798_79b36083-3b44-4dc6-845d-9b2493fbf79d_poly_0_">
                      <gml:posList srsDimension="3">568605.912 5517037.583 0.0 568605.468 5517033.395 0.0 568603.207 5517033.664 0.0 568603.542 5517037.808 0.0 568605.912 5517037.583 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_605798_9e33a284-8f20-40dd-83b6-41ef0f38a434">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2943138f-e030-49b5-9bca-147999b7b739">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605798_9e33a284-8f20-40dd-83b6-41ef0f38a434_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605798_9e33a284-8f20-40dd-83b6-41ef0f38a434_poly_0_">
                      <gml:posList srsDimension="3">568603.542 5517037.808 1.9969999999999857 568605.912 5517037.583 1.9969999999999857 568605.912 5517037.583 0.0 568603.542 5517037.808 0.0 568603.542 5517037.808 1.9969999999999857</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_605798_ff990ccf-73c3-470d-a396-17c00dd18b38">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6cd423c7-49d0-4aa0-aaaf-3aea60ec2ed1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605798_ff990ccf-73c3-470d-a396-17c00dd18b38_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605798_ff990ccf-73c3-470d-a396-17c00dd18b38_poly_0_">
                      <gml:posList srsDimension="3">568605.468 5517033.395 1.9969999999999857 568603.207 5517033.664 1.9969999999999857 568603.207 5517033.664 0.0 568605.468 5517033.395 0.0 568605.468 5517033.395 1.9969999999999857</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_605798_cdb368bc-3d5b-4bcc-a6e0-b393f7dda1d5">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_add80e35-b088-41ee-9af8-352e95eec0be">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605798_cdb368bc-3d5b-4bcc-a6e0-b393f7dda1d5_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605798_cdb368bc-3d5b-4bcc-a6e0-b393f7dda1d5_poly_0_">
                      <gml:posList srsDimension="3">568605.912 5517037.583 1.9969999999999857 568605.468 5517033.395 1.9969999999999857 568605.468 5517033.395 0.0 568605.912 5517037.583 0.0 568605.912 5517037.583 1.9969999999999857</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_605047">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odHw</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 12, 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-25</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_9998</bldg:function>
      <bldg:yearOfConstruction>1972</bldg:yearOfConstruction>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">17.864</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_998e1917-4c28-46cc-900b-7d6d9901c713">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_7efe1342-dc21-4e2f-8cc0-85fd28914235">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605047_ff39b0d2-7ebd-4afd-a6e0-35ca0e7c6761_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605047_8163713f-cf31-4cfd-b40d-42f32338adff_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605047_99a7e23e-c08b-48d5-a11f-b28804e487a8_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605047_f43e0452-d420-4d17-a924-fc24c97b801f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605047_89020a03-bee6-46ea-ad18-26ae4106ce4e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605047_4198d860-a77d-4c5b-903e-e222aca69365_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605047_466d2910-7911-4797-b23f-ec47f82a91e7_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605047_f1c4f8a9-9a68-4a53-9f86-5e40f7834724_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605047_04852166-94cf-4885-94c7-75688cdc224a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605047_cb2b3b6d-82d1-4abc-8bab-e8e261138ea5_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605047_dea5633a-31ca-42d4-bd20-53aa623f612a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605047_50f5317c-89ea-40f1-b2e6-be2ccaac120e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605047_c664fc00-2244-42fd-ba71-c35a3681c57f_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605047_4198d860-a77d-4c5b-903e-e222aca69365">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5b4baee2-2250-4b71-ae84-4eb4748df9d2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605047_4198d860-a77d-4c5b-903e-e222aca69365_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605047_4198d860-a77d-4c5b-903e-e222aca69365_poly_0_">
                      <gml:posList srsDimension="3">568329.261 5517072.09 17.864000000000004 568334.51 5517071.524 13.576999999999998 568334.51 5517071.524 0.0 568329.261 5517072.09 0.0 568323.95 5517072.663 0.0 568323.95 5517072.663 13.52600000000001 568329.261 5517072.09 17.864000000000004</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_605047_f1c4f8a9-9a68-4a53-9f86-5e40f7834724">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c956e2ef-1fa7-49f3-9648-f47bf28ad99f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605047_f1c4f8a9-9a68-4a53-9f86-5e40f7834724_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605047_f1c4f8a9-9a68-4a53-9f86-5e40f7834724_poly_0_">
                      <gml:posList srsDimension="3">568338.716 5517057.989 13.533999999999992 568339.545 5517066.944 13.533999999999992 568339.487 5517066.951 13.590000000000003 568334.634 5517062.985 17.864000000000004 568338.716 5517057.989 13.533999999999992</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_605047_466d2910-7911-4797-b23f-ec47f82a91e7">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8719bebc-cfb0-4689-bcfa-c128985f509a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605047_466d2910-7911-4797-b23f-ec47f82a91e7_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605047_466d2910-7911-4797-b23f-ec47f82a91e7_poly_0_">
                      <gml:posList srsDimension="3">568333.311 5517058.577 13.533999999999992 568338.716 5517057.989 13.533999999999992 568334.634 5517062.985 17.864000000000004 568333.768 5517063.079 17.864000000000004 568328.407 5517063.663 17.864000000000004 568322.64 5517059.738 13.52600000000001 568333.311 5517058.577 13.533999999999992</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_605047_99a7e23e-c08b-48d5-a11f-b28804e487a8">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_0ff1f5d2-8675-4042-a1ad-bde88241ece1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605047_99a7e23e-c08b-48d5-a11f-b28804e487a8_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605047_99a7e23e-c08b-48d5-a11f-b28804e487a8_poly_0_">
                      <gml:posList srsDimension="3">568333.768 5517063.079 17.864000000000004 568334.634 5517062.985 17.864000000000004 568339.487 5517066.951 13.590000000000003 568334.221 5517067.559 13.555000000000007 568334.209 5517067.561 13.555000000000007 568334.217 5517067.624 13.495000000000005 568328.407 5517063.663 17.864000000000004 568333.768 5517063.079 17.864000000000004</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_605047_89020a03-bee6-46ea-ad18-26ae4106ce4e">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e8c6b474-4557-4dbb-897c-b95aa6adb1e4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605047_89020a03-bee6-46ea-ad18-26ae4106ce4e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605047_89020a03-bee6-46ea-ad18-26ae4106ce4e_poly_0_">
                      <gml:posList srsDimension="3">568334.209 5517067.561 0.0 568334.217 5517067.624 0.0 568334.29 5517068.24 0.0 568334.681 5517071.51 0.0 568334.681 5517071.51 13.438999999999993 568334.29 5517068.24 13.48599999999999 568334.217 5517067.624 13.495000000000005 568334.209 5517067.561 13.555000000000007 568334.209 5517067.561 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_605047_f43e0452-d420-4d17-a924-fc24c97b801f">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_18ed5c19-ae03-4095-85de-e5188d4f0e6f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605047_f43e0452-d420-4d17-a924-fc24c97b801f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605047_f43e0452-d420-4d17-a924-fc24c97b801f_poly_0_">
                      <gml:posList srsDimension="3">568322.64 5517059.738 13.52600000000001 568323.557 5517068.794 13.52600000000001 568323.95 5517072.663 13.52600000000001 568323.95 5517072.663 0.0 568323.557 5517068.794 0.0 568322.64 5517059.738 0.0 568322.64 5517059.738 13.52600000000001</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_605047_50f5317c-89ea-40f1-b2e6-be2ccaac120e">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_10e0fc6e-722b-4c1f-9656-0ead2db9c235">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605047_50f5317c-89ea-40f1-b2e6-be2ccaac120e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605047_50f5317c-89ea-40f1-b2e6-be2ccaac120e_poly_0_">
                      <gml:posList srsDimension="3">568338.716 5517057.989 0.0 568333.311 5517058.577 0.0 568322.64 5517059.738 0.0 568323.557 5517068.794 0.0 568323.95 5517072.663 0.0 568329.261 5517072.09 0.0 568334.51 5517071.524 0.0 568334.622 5517071.515 0.0 568334.681 5517071.51 0.0 568334.29 5517068.24 0.0 568334.217 5517067.624 0.0 568334.209 5517067.561 0.0 568334.221 5517067.559 0.0 568339.487 5517066.951 0.0 568339.545 5517066.944 0.0 568338.716 5517057.989 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_605047_ff39b0d2-7ebd-4afd-a6e0-35ca0e7c6761">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_75c6244f-0fb5-4056-9cf3-8f05d822f11c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605047_ff39b0d2-7ebd-4afd-a6e0-35ca0e7c6761_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605047_ff39b0d2-7ebd-4afd-a6e0-35ca0e7c6761_poly_0_">
                      <gml:posList srsDimension="3">568334.622 5517071.515 13.48599999999999 568334.681 5517071.51 13.438999999999993 568334.681 5517071.51 0.0 568334.622 5517071.515 0.0 568334.51 5517071.524 0.0 568334.51 5517071.524 13.576999999999998 568334.622 5517071.515 13.48599999999999</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_605047_c664fc00-2244-42fd-ba71-c35a3681c57f">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_faf935d2-1862-4a22-9ab4-6abee3453d3e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605047_c664fc00-2244-42fd-ba71-c35a3681c57f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605047_c664fc00-2244-42fd-ba71-c35a3681c57f_poly_0_">
                      <gml:posList srsDimension="3">568333.311 5517058.577 0.0 568338.716 5517057.989 0.0 568338.716 5517057.989 13.533999999999992 568333.311 5517058.577 13.533999999999992 568322.64 5517059.738 13.52600000000001 568322.64 5517059.738 0.0 568333.311 5517058.577 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_605047_8163713f-cf31-4cfd-b40d-42f32338adff">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_efee1864-f5ed-4685-91d8-b0ea860a32ed">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605047_8163713f-cf31-4cfd-b40d-42f32338adff_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605047_8163713f-cf31-4cfd-b40d-42f32338adff_poly_0_">
                      <gml:posList srsDimension="3">568328.407 5517063.663 17.864000000000004 568328.868 5517068.215 17.864000000000004 568329.261 5517072.09 17.864000000000004 568323.95 5517072.663 13.52600000000001 568323.557 5517068.794 13.52600000000001 568322.64 5517059.738 13.52600000000001 568328.407 5517063.663 17.864000000000004</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_605047_04852166-94cf-4885-94c7-75688cdc224a">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_afef9ae4-d774-488f-b73a-947d5bd63d14">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605047_04852166-94cf-4885-94c7-75688cdc224a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605047_04852166-94cf-4885-94c7-75688cdc224a_poly_0_">
                      <gml:posList srsDimension="3">568334.217 5517067.624 13.495000000000005 568334.29 5517068.24 13.48599999999999 568334.681 5517071.51 13.438999999999993 568334.622 5517071.515 13.48599999999999 568334.51 5517071.524 13.576999999999998 568329.261 5517072.09 17.864000000000004 568328.868 5517068.215 17.864000000000004 568328.407 5517063.663 17.864000000000004 568334.217 5517067.624 13.495000000000005</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_605047_dea5633a-31ca-42d4-bd20-53aa623f612a">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_92b0dffa-6578-47ee-a716-cf11837f17fb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605047_dea5633a-31ca-42d4-bd20-53aa623f612a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605047_dea5633a-31ca-42d4-bd20-53aa623f612a_poly_0_">
                      <gml:posList srsDimension="3">568339.545 5517066.944 0.0 568339.545 5517066.944 13.533999999999992 568338.716 5517057.989 13.533999999999992 568338.716 5517057.989 0.0 568339.545 5517066.944 0.0</gml:posList>
For faster browsing, not all history is shown. View entire blame