Grombühl_v4_case_study.gml 6.37 MB
Newer Older
Eric Duminil's avatar
Eric Duminil committed
50001
50002
50003
50004
50005
50006
50007
50008
50009
50010
50011
50012
50013
50014
50015
50016
50017
50018
50019
50020
50021
50022
50023
50024
50025
50026
50027
50028
50029
50030
50031
50032
50033
50034
50035
50036
50037
50038
50039
50040
50041
50042
50043
50044
50045
50046
50047
50048
50049
50050
50051
50052
50053
50054
50055
50056
50057
50058
50059
50060
50061
50062
50063
50064
50065
50066
50067
50068
50069
50070
50071
50072
50073
50074
50075
50076
50077
50078
50079
50080
50081
50082
50083
50084
50085
50086
50087
50088
50089
50090
50091
50092
50093
50094
50095
50096
50097
50098
50099
50100
50101
50102
50103
50104
50105
50106
50107
50108
50109
50110
50111
50112
50113
50114
50115
50116
50117
50118
50119
50120
50121
50122
50123
50124
50125
50126
50127
50128
50129
50130
50131
50132
50133
50134
50135
50136
50137
50138
50139
50140
50141
50142
50143
50144
50145
50146
50147
50148
50149
50150
50151
50152
50153
50154
50155
50156
50157
50158
50159
50160
50161
50162
50163
50164
50165
50166
50167
50168
50169
50170
50171
50172
50173
50174
50175
50176
50177
50178
50179
50180
50181
50182
50183
50184
50185
50186
50187
50188
50189
50190
50191
50192
50193
50194
50195
50196
50197
50198
50199
50200
50201
50202
50203
50204
50205
50206
50207
50208
50209
50210
50211
50212
50213
50214
50215
50216
50217
50218
50219
50220
50221
50222
50223
50224
50225
50226
50227
50228
50229
50230
50231
50232
50233
50234
50235
50236
50237
50238
50239
50240
50241
50242
50243
50244
50245
50246
50247
50248
50249
50250
50251
50252
50253
50254
50255
50256
50257
50258
50259
50260
50261
50262
50263
50264
50265
50266
50267
50268
50269
50270
50271
50272
50273
50274
50275
50276
50277
50278
50279
50280
50281
50282
50283
50284
50285
50286
50287
50288
50289
50290
50291
50292
50293
50294
50295
50296
50297
50298
50299
50300
50301
50302
50303
50304
50305
50306
50307
50308
50309
50310
50311
50312
50313
50314
50315
50316
50317
50318
50319
50320
50321
50322
50323
50324
50325
50326
50327
50328
50329
50330
50331
50332
50333
50334
50335
50336
50337
50338
50339
50340
50341
50342
50343
50344
50345
50346
50347
50348
50349
50350
50351
50352
50353
50354
50355
50356
50357
50358
50359
50360
50361
50362
50363
50364
50365
50366
50367
50368
50369
50370
50371
50372
50373
50374
50375
50376
50377
50378
50379
50380
50381
50382
50383
50384
50385
50386
50387
50388
50389
50390
50391
50392
50393
50394
50395
50396
50397
50398
50399
50400
50401
50402
50403
50404
50405
50406
50407
50408
50409
50410
50411
50412
50413
50414
50415
50416
50417
50418
50419
50420
50421
50422
50423
50424
50425
50426
50427
50428
50429
50430
50431
50432
50433
50434
50435
50436
50437
50438
50439
50440
50441
50442
50443
50444
50445
50446
50447
50448
50449
50450
50451
50452
50453
50454
50455
50456
50457
50458
50459
50460
50461
50462
50463
50464
50465
50466
50467
50468
50469
50470
50471
50472
50473
50474
50475
50476
50477
50478
50479
50480
50481
50482
50483
50484
50485
50486
50487
50488
50489
50490
50491
50492
50493
50494
50495
50496
50497
50498
50499
50500
50501
50502
50503
50504
50505
50506
50507
50508
50509
50510
50511
50512
50513
50514
50515
50516
50517
50518
50519
50520
50521
50522
50523
50524
50525
50526
50527
50528
50529
50530
50531
50532
50533
50534
50535
50536
50537
50538
50539
50540
50541
50542
50543
50544
50545
50546
50547
50548
50549
50550
50551
50552
50553
50554
50555
50556
50557
50558
50559
50560
50561
50562
50563
50564
50565
50566
50567
50568
50569
50570
50571
50572
50573
50574
50575
50576
50577
50578
50579
50580
50581
50582
50583
50584
50585
50586
50587
50588
50589
50590
50591
50592
50593
50594
50595
50596
50597
50598
50599
50600
50601
50602
50603
50604
50605
50606
50607
50608
50609
50610
50611
50612
50613
50614
50615
50616
50617
50618
50619
50620
50621
50622
50623
50624
50625
50626
50627
50628
50629
50630
50631
50632
50633
50634
50635
50636
50637
50638
50639
50640
50641
50642
50643
50644
50645
50646
50647
50648
50649
50650
50651
50652
50653
50654
50655
50656
50657
50658
50659
50660
50661
50662
50663
50664
50665
50666
50667
50668
50669
50670
50671
50672
50673
50674
50675
50676
50677
50678
50679
50680
50681
50682
50683
50684
50685
50686
50687
50688
50689
50690
50691
50692
50693
50694
50695
50696
50697
50698
50699
50700
50701
50702
50703
50704
50705
50706
50707
50708
50709
50710
50711
50712
50713
50714
50715
50716
50717
50718
50719
50720
50721
50722
50723
50724
50725
50726
50727
50728
50729
50730
50731
50732
50733
50734
50735
50736
50737
50738
50739
50740
50741
50742
50743
50744
50745
50746
50747
50748
50749
50750
50751
50752
50753
50754
50755
50756
50757
50758
50759
50760
50761
50762
50763
50764
50765
50766
50767
50768
50769
50770
50771
50772
50773
50774
50775
50776
50777
50778
50779
50780
50781
50782
50783
50784
50785
50786
50787
50788
50789
50790
50791
50792
50793
50794
50795
50796
50797
50798
50799
50800
50801
50802
50803
50804
50805
50806
50807
50808
50809
50810
50811
50812
50813
50814
50815
50816
50817
50818
50819
50820
50821
50822
50823
50824
50825
50826
50827
50828
50829
50830
50831
50832
50833
50834
50835
50836
50837
50838
50839
50840
50841
50842
50843
50844
50845
50846
50847
50848
50849
50850
50851
50852
50853
50854
50855
50856
50857
50858
50859
50860
50861
50862
50863
50864
50865
50866
50867
50868
50869
50870
50871
50872
50873
50874
50875
50876
50877
50878
50879
50880
50881
50882
50883
50884
50885
50886
50887
50888
50889
50890
50891
50892
50893
50894
50895
50896
50897
50898
50899
50900
50901
50902
50903
50904
50905
50906
50907
50908
50909
50910
50911
50912
50913
50914
50915
50916
50917
50918
50919
50920
50921
50922
50923
50924
50925
50926
50927
50928
50929
50930
50931
50932
50933
50934
50935
50936
50937
50938
50939
50940
50941
50942
50943
50944
50945
50946
50947
50948
50949
50950
50951
50952
50953
50954
50955
50956
50957
50958
50959
50960
50961
50962
50963
50964
50965
50966
50967
50968
50969
50970
50971
50972
50973
50974
50975
50976
50977
50978
50979
50980
50981
50982
50983
50984
50985
50986
50987
50988
50989
50990
50991
50992
50993
50994
50995
50996
50997
50998
50999
51000
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605149_c049b65c-12a9-4857-aedf-8f723edf0a44">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6c8a1199-5417-424e-b9c9-6df34ddd1009">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605149_c049b65c-12a9-4857-aedf-8f723edf0a44_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605149_c049b65c-12a9-4857-aedf-8f723edf0a44_poly_0_">
                      <gml:posList srsDimension="3">568252.772 5517117.032 10.533999999999992 568252.808 5517117.031 10.494 568252.995 5517126.113 10.527999999999992 568253.047 5517126.111 10.469999999999999 568249.704 5517129.748 14.311000000000007 568251.949 5517131.999 11.858000000000004 568253.16 5517133.214 10.533999999999992 568247.195 5517128.22 17.079999999999984 568247.052 5517122.203 17.079999999999984 568252.772 5517117.032 10.533999999999992</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_605149_8dd4aa5f-b077-4ef4-85e6-bdb208f9f5a0">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3c44a6a8-8941-41f0-ad2e-fe896c283db4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605149_8dd4aa5f-b077-4ef4-85e6-bdb208f9f5a0_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605149_8dd4aa5f-b077-4ef4-85e6-bdb208f9f5a0_poly_0_">
                      <gml:posList srsDimension="3">568252.772 5517117.032 0.0 568252.808 5517117.031 0.0 568252.808 5517117.031 10.494 568252.772 5517117.032 10.533999999999992 568241.081 5517117.174 10.525999999999982 568241.081 5517117.174 0.0 568252.772 5517117.032 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_605149_ed33878e-2887-478c-93fc-9de27a4d68b3">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_bf2b0478-68c4-436f-9f28-be78365b137e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605149_ed33878e-2887-478c-93fc-9de27a4d68b3_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605149_ed33878e-2887-478c-93fc-9de27a4d68b3_poly_0_">
                      <gml:posList srsDimension="3">568253.047 5517126.111 10.469999999999999 568257.512 5517125.973 10.412000000000006 568257.512 5517126.027 10.469999999999999 568257.57 5517129.605 14.329999999999984 568253.133 5517129.686 14.329999999999984 568249.704 5517129.748 14.329999999999984 568253.047 5517126.111 10.469999999999999</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_605149_e92e6db1-0bbb-4e85-8b9f-104e16df3b4b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ab7f1472-6f85-4a01-a4c3-f319b070d9a8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605149_e92e6db1-0bbb-4e85-8b9f-104e16df3b4b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605149_e92e6db1-0bbb-4e85-8b9f-104e16df3b4b_poly_0_">
                      <gml:posList srsDimension="3">568257.512 5517126.027 10.469999999999999 568257.512 5517125.973 10.412000000000006 568257.512 5517125.973 0.0 568257.512 5517126.027 0.0 568257.57 5517129.605 0.0 568257.626 5517133.132 0.0 568257.626 5517133.132 10.524000000000001 568257.57 5517129.605 14.329999999999984 568257.512 5517126.027 10.469999999999999</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_605149_2800ba44-fe51-4e83-866a-5005b7ef8fcd">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_789d0561-aec8-425b-9dc9-48ae6e040ccb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605149_2800ba44-fe51-4e83-866a-5005b7ef8fcd_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605149_2800ba44-fe51-4e83-866a-5005b7ef8fcd_poly_0_">
                      <gml:posList srsDimension="3">568257.57 5517129.605 0.0 568257.512 5517126.027 0.0 568257.512 5517125.973 0.0 568253.047 5517126.111 0.0 568252.995 5517126.113 0.0 568252.808 5517117.031 0.0 568252.772 5517117.032 0.0 568241.081 5517117.174 0.0 568241.467 5517133.428 0.0 568253.16 5517133.214 0.0 568253.217 5517133.212 0.0 568257.626 5517133.132 0.0 568257.57 5517129.605 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_605772">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odgT</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>2100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">2.777</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_0136342e-242c-41c1-a6a7-6df8d78b8e14">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_832f35c8-469c-4d59-9a8e-12e5f7c7c98d">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605772_5b5dd1ea-9f3c-4393-a129-c4d7f620da04_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605772_2e0e3c33-7d21-442f-ab94-54474aee5ba3_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605772_fff613d8-230e-44ce-9f99-cc093ab13a97_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605772_afe8c6aa-16db-4cd6-a485-861cf4c76e7d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605772_f2b11485-a9b1-4638-8a01-fd34575c3633_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605772_9a29fc38-2b31-4b77-8e0a-bc7a552d646e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605772_8085bc12-f31a-4164-88ad-5bd5b4fc82c2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605772_78a59415-2758-4bd8-bdc0-6960b3e99dc6_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605772_2e0e3c33-7d21-442f-ab94-54474aee5ba3">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e92ed831-3ac9-42df-9fe3-da5722589abd">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605772_2e0e3c33-7d21-442f-ab94-54474aee5ba3_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605772_2e0e3c33-7d21-442f-ab94-54474aee5ba3_poly_0_">
                      <gml:posList srsDimension="3">568408.253 5517127.171 0.0 568408.253 5517127.171 2.7770000000000152 568405.121 5517127.405 2.115000000000009 568405.121 5517127.405 0.0 568408.253 5517127.171 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_605772_78a59415-2758-4bd8-bdc0-6960b3e99dc6">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3af5dfdb-2b1a-4dc5-9433-737570cd256d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605772_78a59415-2758-4bd8-bdc0-6960b3e99dc6_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605772_78a59415-2758-4bd8-bdc0-6960b3e99dc6_poly_0_">
                      <gml:posList srsDimension="3">568405.121 5517127.405 0.0 568405.121 5517127.405 2.115000000000009 568405.378 5517131.465 2.1140000000000043 568405.378 5517131.465 0.0 568405.121 5517127.405 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_605772_8085bc12-f31a-4164-88ad-5bd5b4fc82c2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7bc6944d-db60-4d32-a370-3725a3d2d4ab">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605772_8085bc12-f31a-4164-88ad-5bd5b4fc82c2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605772_8085bc12-f31a-4164-88ad-5bd5b4fc82c2_poly_0_">
                      <gml:posList srsDimension="3">568408.937 5517137.819 0.0 568408.937 5517137.819 2.7770000000000152 568408.253 5517127.171 2.7770000000000152 568408.253 5517127.171 0.0 568408.937 5517137.819 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_605772_fff613d8-230e-44ce-9f99-cc093ab13a97">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5a257041-53cc-4f7c-82a5-27f8b89d9d12">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605772_fff613d8-230e-44ce-9f99-cc093ab13a97_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605772_fff613d8-230e-44ce-9f99-cc093ab13a97_poly_0_">
                      <gml:posList srsDimension="3">568405.121 5517127.405 0.0 568405.378 5517131.465 0.0 568406.1 5517131.424 0.0 568406.528 5517138.002 0.0 568408.937 5517137.819 0.0 568408.253 5517127.171 0.0 568405.121 5517127.405 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_605772_f2b11485-a9b1-4638-8a01-fd34575c3633">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a9aeced5-3e54-4047-954b-948082e7f5b7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605772_f2b11485-a9b1-4638-8a01-fd34575c3633_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605772_f2b11485-a9b1-4638-8a01-fd34575c3633_poly_0_">
                      <gml:posList srsDimension="3">568406.528 5517138.002 0.0 568406.528 5517138.002 2.2680000000000007 568408.937 5517137.819 2.7770000000000152 568408.937 5517137.819 0.0 568406.528 5517138.002 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_605772_afe8c6aa-16db-4cd6-a485-861cf4c76e7d">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a246af5b-42a9-4ad2-8990-72891370aa62">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605772_afe8c6aa-16db-4cd6-a485-861cf4c76e7d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605772_afe8c6aa-16db-4cd6-a485-861cf4c76e7d_poly_0_">
                      <gml:posList srsDimension="3">568405.378 5517131.465 0.0 568405.378 5517131.465 2.1140000000000043 568406.1 5517131.424 2.2670000000000243 568406.1 5517131.424 0.0 568405.378 5517131.465 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_605772_9a29fc38-2b31-4b77-8e0a-bc7a552d646e">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c8ef29a0-b8e3-4053-a7d5-6f23a5a1630e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605772_9a29fc38-2b31-4b77-8e0a-bc7a552d646e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605772_9a29fc38-2b31-4b77-8e0a-bc7a552d646e_poly_0_">
                      <gml:posList srsDimension="3">568408.253 5517127.171 2.7770000000000152 568408.937 5517137.819 2.7770000000000152 568406.528 5517138.002 2.2680000000000007 568406.1 5517131.424 2.2670000000000243 568405.378 5517131.465 2.1140000000000043 568405.121 5517127.405 2.115000000000009 568408.253 5517127.171 2.7770000000000152</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_605772_5b5dd1ea-9f3c-4393-a129-c4d7f620da04">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_94f35608-d88b-42d3-bb6b-97903203934e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605772_5b5dd1ea-9f3c-4393-a129-c4d7f620da04_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605772_5b5dd1ea-9f3c-4393-a129-c4d7f620da04_poly_0_">
                      <gml:posList srsDimension="3">568406.1 5517131.424 0.0 568406.1 5517131.424 2.2670000000000243 568406.528 5517138.002 2.2680000000000007 568406.528 5517138.002 0.0 568406.1 5517131.424 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_605022">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9oeYQ</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 15, 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_1000</bldg:function>
      <bldg:yearOfConstruction>1949</bldg:yearOfConstruction>
      <bldg:roofType>3200</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">10.4</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_6b31164b-02c9-4b9e-a95d-4ff6ec5680f7">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_f6ebf4b8-e3ef-4cb1-b23f-6d1fdbc78c45">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605022_40dc6bbb-0db5-4def-a1d3-86bcdc2f9aa5_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605022_75a1aa94-1e48-48a8-a8fd-757d0d26f462_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605022_b3c468ef-783f-4f2d-b65c-350666e4f04e_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605022_5f30d619-3381-4857-b8ff-45a4781d2157_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605022_3d0a0855-0cdf-4ac7-87c9-1d70e0225ad5_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605022_a9067480-1f0a-4e32-aee1-7cccdc18c23c_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605022_32007484-27c5-49d4-8de1-e817a1c06135_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605022_cb07d05a-3d44-449a-b7f9-d628cac4f33d_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605022_4ddcfa23-67a3-4348-9f55-4770e731ba52_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605022_16763c60-e9e0-4123-ae74-3d3ea52e4595_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605022_dbc3b6b4-8f4c-44d4-a462-cad5e4dca908_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605022_688ddcdb-8d16-4b1e-9858-da1d27298a1d_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605022_c41c78bf-26ad-4f31-9129-e43bf1886c9c_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605022_2c49b4c3-bb90-489e-9838-ff00ce7bf983_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605022_db74dfe7-4d93-4059-9565-1e557e495fa9_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605022_774e68d2-fa0e-4177-8530-55221c39fe56_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605022_148628fc-1399-4d90-b141-14bc96b6ee14_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605022_c61581ec-3452-4ae4-b56e-43c8fed5ff7c_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605022_2f714803-e35c-4854-948a-934c3807cdb8_2_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605022_16763c60-e9e0-4123-ae74-3d3ea52e4595_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_280b13e8-7cc4-46bc-add0-68c33479e1d1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605022_16763c60-e9e0-4123-ae74-3d3ea52e4595_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605022_16763c60-e9e0-4123-ae74-3d3ea52e4595_2_poly_0_">
                      <gml:posList srsDimension="3">568486.45 5517110.57 0.0 568486.45 5517110.57 6.751000000000005 568482.84 5517108.78 6.801000000000016 568482.84 5517108.78 0.0 568486.45 5517110.57 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_605022_40dc6bbb-0db5-4def-a1d3-86bcdc2f9aa5_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_366e3e59-079f-4b0c-aaf0-78f1edb81a28">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605022_40dc6bbb-0db5-4def-a1d3-86bcdc2f9aa5_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605022_40dc6bbb-0db5-4def-a1d3-86bcdc2f9aa5_2_poly_0_">
                      <gml:posList srsDimension="3">568474.939 5517112.338 3.480000000000018 568477.02 5517115.286 3.480000000000018 568475.91 5517116.08 3.480000000000018 568473.81 5517113.15 3.480000000000018 568474.939 5517112.338 3.480000000000018</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_605022_dbc3b6b4-8f4c-44d4-a462-cad5e4dca908_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ab2e2719-ad5c-4d13-a3ba-9910d172eadb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605022_dbc3b6b4-8f4c-44d4-a462-cad5e4dca908_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605022_dbc3b6b4-8f4c-44d4-a462-cad5e4dca908_2_poly_0_">
                      <gml:posList srsDimension="3">568474.93 5517112.16 0.0 568474.93 5517112.16 6.742999999999995 568475.02 5517112.28 6.747000000000014 568475.02 5517112.28 0.0 568474.93 5517112.16 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_605022_c61581ec-3452-4ae4-b56e-43c8fed5ff7c_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_01c5608a-8a7d-448f-85cf-6bcbae357678">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605022_c61581ec-3452-4ae4-b56e-43c8fed5ff7c_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605022_c61581ec-3452-4ae4-b56e-43c8fed5ff7c_2_poly_0_">
                      <gml:posList srsDimension="3">568473.81 5517113.15 0.0 568473.81 5517113.15 3.480000000000018 568475.91 5517116.08 3.480000000000018 568475.91 5517116.08 0.0 568473.81 5517113.15 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_605022_32007484-27c5-49d4-8de1-e817a1c06135_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f4769e38-04dd-4d8f-bb32-47d31acde6f7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605022_32007484-27c5-49d4-8de1-e817a1c06135_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605022_32007484-27c5-49d4-8de1-e817a1c06135_2_poly_0_">
                      <gml:posList srsDimension="3">568479.962 5517112.01 10.400000000000006 568482.453 5517113.289 10.400000000000006 568482.61 5517118.01 6.852000000000004 568477.28 5517115.272 6.852000000000004 568479.962 5517112.01 10.400000000000006</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_605022_4ddcfa23-67a3-4348-9f55-4770e731ba52_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5f3cd138-ee60-4a55-8e3a-7ecce00a6b8d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605022_4ddcfa23-67a3-4348-9f55-4770e731ba52_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605022_4ddcfa23-67a3-4348-9f55-4770e731ba52_2_poly_0_">
                      <gml:posList srsDimension="3">568478.36 5517109.7 10.379999999999995 568481.78 5517107.25 6.715000000000003 568482.29 5517107.99 6.724000000000018 568482.738 5517108.634 6.729000000000013 568479.962 5517112.01 10.400000000000006 568478.341 5517109.713 10.400000000000006 568478.36 5517109.7 10.379999999999995</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_605022_2f714803-e35c-4854-948a-934c3807cdb8_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_374c128d-88b4-480b-89e6-cbae64c4e643">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605022_2f714803-e35c-4854-948a-934c3807cdb8_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605022_2f714803-e35c-4854-948a-934c3807cdb8_2_poly_0_">
                      <gml:posList srsDimension="3">568473.81 5517113.15 0.0 568475.02 5517112.28 0.0 568475.02 5517112.28 6.747000000000014 568474.939 5517112.338 6.659999999999997 568474.939 5517112.338 3.480000000000018 568473.81 5517113.15 3.480000000000018 568473.81 5517113.15 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_605022_cb07d05a-3d44-449a-b7f9-d628cac4f33d_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_62b03ec0-b69d-42cf-84ac-46e398c6d41d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605022_cb07d05a-3d44-449a-b7f9-d628cac4f33d_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605022_cb07d05a-3d44-449a-b7f9-d628cac4f33d_2_poly_0_">
                      <gml:posList srsDimension="3">568481.78 5517107.25 0.0 568481.78 5517107.25 6.715000000000003 568478.36 5517109.7 10.379999999999995 568478.36 5517109.7 0.0 568481.78 5517107.25 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_605022_774e68d2-fa0e-4177-8530-55221c39fe56_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_dedeb0ed-a051-46c5-946d-04bd36e92afc">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605022_774e68d2-fa0e-4177-8530-55221c39fe56_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605022_774e68d2-fa0e-4177-8530-55221c39fe56_2_poly_0_">
                      <gml:posList srsDimension="3">568482.29 5517107.99 0.0 568482.84 5517108.78 0.0 568482.84 5517108.78 6.801000000000016 568482.738 5517108.634 6.729000000000013 568482.29 5517107.99 6.724000000000018 568482.29 5517107.99 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_605022_3d0a0855-0cdf-4ac7-87c9-1d70e0225ad5_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3d797b34-4c40-4186-bb74-5605b1ceddaa">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605022_3d0a0855-0cdf-4ac7-87c9-1d70e0225ad5_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605022_3d0a0855-0cdf-4ac7-87c9-1d70e0225ad5_2_poly_0_">
                      <gml:posList srsDimension="3">568477.14 5517115.2 0.0 568475.91 5517116.08 0.0 568475.91 5517116.08 3.480000000000018 568477.02 5517115.286 3.480000000000018 568477.02 5517115.286 6.659999999999997 568477.14 5517115.2 6.789000000000016 568477.14 5517115.2 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_605022_db74dfe7-4d93-4059-9565-1e557e495fa9_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e9fafb0d-7838-429b-afba-37ff5c33f621">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605022_db74dfe7-4d93-4059-9565-1e557e495fa9_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605022_db74dfe7-4d93-4059-9565-1e557e495fa9_2_poly_0_">
                      <gml:posList srsDimension="3">568482.29 5517107.99 0.0 568481.78 5517107.25 0.0 568478.36 5517109.7 0.0 568474.93 5517112.16 0.0 568475.02 5517112.28 0.0 568473.81 5517113.15 0.0 568475.91 5517116.08 0.0 568477.14 5517115.2 0.0 568482.61 5517118.01 0.0 568484.53 5517114.29 0.0 568486.45 5517110.57 0.0 568482.84 5517108.78 0.0 568482.29 5517107.99 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_605022_a9067480-1f0a-4e32-aee1-7cccdc18c23c_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8ab10014-5a9f-45cb-a7df-e5cb729802c3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605022_a9067480-1f0a-4e32-aee1-7cccdc18c23c_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605022_a9067480-1f0a-4e32-aee1-7cccdc18c23c_2_poly_0_">
                      <gml:posList srsDimension="3">568482.29 5517107.99 0.0 568482.29 5517107.99 6.724000000000018 568481.78 5517107.25 6.715000000000003 568481.78 5517107.25 0.0 568482.29 5517107.99 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_605022_148628fc-1399-4d90-b141-14bc96b6ee14_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e1a93d6e-11d5-4d7f-906a-d3418550dde7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605022_148628fc-1399-4d90-b141-14bc96b6ee14_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605022_148628fc-1399-4d90-b141-14bc96b6ee14_2_poly_0_">
                      <gml:posList srsDimension="3">568482.61 5517118.01 6.852000000000004 568482.453 5517113.289 10.400000000000006 568486.45 5517110.57 6.751000000000005 568482.61 5517118.01 6.852000000000004</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_605022_c41c78bf-26ad-4f31-9129-e43bf1886c9c_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_67ad860e-9341-434e-acd4-5fd6d46a6210">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605022_c41c78bf-26ad-4f31-9129-e43bf1886c9c_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605022_c41c78bf-26ad-4f31-9129-e43bf1886c9c_2_poly_0_">
                      <gml:posList srsDimension="3">568482.738 5517108.634 6.729000000000013 568482.84 5517108.78 6.801000000000016 568486.45 5517110.57 6.751000000000005 568482.453 5517113.289 10.400000000000006 568479.962 5517112.01 10.400000000000006 568482.738 5517108.634 6.729000000000013</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_605022_688ddcdb-8d16-4b1e-9858-da1d27298a1d_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fca6bef7-54ce-41ba-b521-83e0ef8fffe2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605022_688ddcdb-8d16-4b1e-9858-da1d27298a1d_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605022_688ddcdb-8d16-4b1e-9858-da1d27298a1d_2_poly_0_">
                      <gml:posList srsDimension="3">568474.939 5517112.338 3.480000000000018 568474.939 5517112.338 6.659999999999997 568477.02 5517115.286 6.659999999999997 568477.02 5517115.286 3.480000000000018 568474.939 5517112.338 3.480000000000018</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_605022_75a1aa94-1e48-48a8-a8fd-757d0d26f462_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e5fe7a01-08e9-4501-8071-8977af15f88e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605022_75a1aa94-1e48-48a8-a8fd-757d0d26f462_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605022_75a1aa94-1e48-48a8-a8fd-757d0d26f462_2_poly_0_">
                      <gml:posList srsDimension="3">568482.61 5517118.01 0.0 568477.14 5517115.2 0.0 568477.14 5517115.2 6.789000000000016 568477.28 5517115.272 6.852000000000004 568482.61 5517118.01 6.852000000000004 568482.61 5517118.01 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605022_2c49b4c3-bb90-489e-9838-ff00ce7bf983_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1db5e3ae-c1d8-465c-9c77-239cffda7237">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605022_2c49b4c3-bb90-489e-9838-ff00ce7bf983_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605022_2c49b4c3-bb90-489e-9838-ff00ce7bf983_2_poly_0_">
                      <gml:posList srsDimension="3">568482.61 5517118.01 6.852000000000004 568486.45 5517110.57 6.751000000000005 568486.45 5517110.57 0.0 568484.53 5517114.29 0.0 568482.61 5517118.01 0.0 568482.61 5517118.01 6.852000000000004</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_605022_5f30d619-3381-4857-b8ff-45a4781d2157_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_bf6ea8fe-abb3-4344-83e5-76efdf891ecd">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605022_5f30d619-3381-4857-b8ff-45a4781d2157_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605022_5f30d619-3381-4857-b8ff-45a4781d2157_2_poly_0_">
                      <gml:posList srsDimension="3">568478.341 5517109.713 10.400000000000006 568479.962 5517112.01 10.400000000000006 568477.28 5517115.272 6.852000000000004 568477.14 5517115.2 6.789000000000016 568477.02 5517115.286 6.659999999999997 568474.939 5517112.338 6.659999999999997 568475.02 5517112.28 6.747000000000014 568474.93 5517112.16 6.742999999999995 568478.341 5517109.713 10.400000000000006</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_605022_b3c468ef-783f-4f2d-b65c-350666e4f04e_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c17a120c-97f7-476d-a11a-6ba626416bab">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605022_b3c468ef-783f-4f2d-b65c-350666e4f04e_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605022_b3c468ef-783f-4f2d-b65c-350666e4f04e_2_poly_0_">
                      <gml:posList srsDimension="3">568474.93 5517112.16 0.0 568478.36 5517109.7 0.0 568478.36 5517109.7 10.379999999999995 568478.341 5517109.713 10.400000000000006 568474.93 5517112.16 6.742999999999995 568474.93 5517112.16 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_106339515">
      <creationDate>2020-05-14</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9BYYU</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-26</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>51009_1610</bldg:function>
      <bldg:roofType>9999</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">3.866</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_bd12562b-b9cd-4cba-8807-2b3a5aed817d">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_cbb4ddb4-e2cd-497d-ac2a-fe9943895344">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_106339515_b7240ce2-0b7e-428f-969f-352aa1a741bc_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_106339515_f1c84aff-70b8-49d0-b2c5-bd54615fcfa1_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_106339515_8daaa043-c1b0-4086-9449-a4de5834d113_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_106339515_0c0d644d-aed3-4373-9d73-6f4eecf65b8b_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_106339515_8753f873-6909-488b-92b9-5060790748dc_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_106339515_6fad83a0-d982-4f5d-b662-4b072bd94499_2_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_106339515_6fad83a0-d982-4f5d-b662-4b072bd94499_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_54d5b7e2-b68e-4fe3-bc23-cc468637dfc2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_106339515_6fad83a0-d982-4f5d-b662-4b072bd94499_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_106339515_6fad83a0-d982-4f5d-b662-4b072bd94499_2_poly_0_">
                      <gml:posList srsDimension="3">568295.39 5517085.88 0.0 568295.39 5517085.88 3.866000000000014 568292.0 5517087.54 3.5109999999999957 568292.0 5517087.54 0.0 568295.39 5517085.88 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_106339515_f1c84aff-70b8-49d0-b2c5-bd54615fcfa1_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_550ab05a-a6e8-4783-a477-c388ae83f4ef">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_106339515_f1c84aff-70b8-49d0-b2c5-bd54615fcfa1_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_106339515_f1c84aff-70b8-49d0-b2c5-bd54615fcfa1_2_poly_0_">
                      <gml:posList srsDimension="3">568292.99 5517092.92 0.0 568292.99 5517092.92 2.826999999999998 568295.39 5517085.88 3.866000000000014 568295.39 5517085.88 0.0 568292.99 5517092.92 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_106339515_b7240ce2-0b7e-428f-969f-352aa1a741bc_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6c0aaf73-0d51-46a9-ad6a-cff0b76559f5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_106339515_b7240ce2-0b7e-428f-969f-352aa1a741bc_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_106339515_b7240ce2-0b7e-428f-969f-352aa1a741bc_2_poly_0_">
                      <gml:posList srsDimension="3">568292.0 5517087.54 3.5109999999999957 568295.39 5517085.88 3.866000000000014 568292.99 5517092.92 2.826999999999998 568290.62 5517092.23 2.826999999999998 568292.0 5517087.54 3.5109999999999957</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_106339515_8daaa043-c1b0-4086-9449-a4de5834d113_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f37cf63b-877c-4400-b971-eaba14006a91">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_106339515_8daaa043-c1b0-4086-9449-a4de5834d113_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_106339515_8daaa043-c1b0-4086-9449-a4de5834d113_2_poly_0_">
                      <gml:posList srsDimension="3">568292.0 5517087.54 0.0 568292.0 5517087.54 3.5109999999999957 568290.62 5517092.23 2.826999999999998 568290.62 5517092.23 0.0 568292.0 5517087.54 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_106339515_8753f873-6909-488b-92b9-5060790748dc_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2cd54583-59a7-4240-864b-66b3e2f30b1a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_106339515_8753f873-6909-488b-92b9-5060790748dc_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_106339515_8753f873-6909-488b-92b9-5060790748dc_2_poly_0_">
                      <gml:posList srsDimension="3">568290.62 5517092.23 0.0 568292.99 5517092.92 0.0 568295.39 5517085.88 0.0 568292.0 5517087.54 0.0 568290.62 5517092.23 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_106339515_0c0d644d-aed3-4373-9d73-6f4eecf65b8b_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b5a9d5a6-eb54-4e47-8682-6995fcab1158">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_106339515_0c0d644d-aed3-4373-9d73-6f4eecf65b8b_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_106339515_0c0d644d-aed3-4373-9d73-6f4eecf65b8b_2_poly_0_">
                      <gml:posList srsDimension="3">568290.62 5517092.23 0.0 568290.62 5517092.23 2.826999999999998 568292.99 5517092.92 2.826999999999998 568292.99 5517092.92 0.0 568290.62 5517092.23 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_605137">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9pK2g</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 17, 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>2011</bldg:yearOfConstruction>
      <bldg:roofType>3200</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">16.35</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_c4cc316c-ea9b-4109-a9b3-635dc2223256">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_96989988-1e4e-47f9-b326-3d0d82ec5ceb">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605137_8dc072b0-014e-40c1-9985-86d734db391c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605137_590a781d-ab37-4a26-a487-b8a929383fd1_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605137_e7f40a5a-780e-4433-a3f4-f2c229b36283_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605137_2e100e07-0fe7-4dc3-9ff0-144cd661d709_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605137_79d0b341-0869-42f2-ae0a-b2608383f639_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605137_20803627-857f-4d32-82c9-5a62b32a6dbc_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605137_e29e9d27-8d40-4c27-8556-c74f1921def4_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605137_a62a287b-7d5e-4e41-87c8-547c197a9411_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605137_a62a287b-7d5e-4e41-87c8-547c197a9411">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_33d49eeb-f0ca-45cb-87d6-b4ff37bf5c12">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605137_a62a287b-7d5e-4e41-87c8-547c197a9411_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605137_a62a287b-7d5e-4e41-87c8-547c197a9411_poly_0_">
                      <gml:posList srsDimension="3">568307.611 5517071.371 16.349999999999994 568312.05 5517070.916 11.659999999999997 568312.05 5517070.916 0.0 568307.611 5517071.371 0.0 568303.159 5517071.827 0.0 568303.159 5517071.827 11.646999999999991 568307.611 5517071.371 16.349999999999994</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_605137_e29e9d27-8d40-4c27-8556-c74f1921def4">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7852994c-676f-486e-8ba2-65f5c3036716">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605137_e29e9d27-8d40-4c27-8556-c74f1921def4_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605137_e29e9d27-8d40-4c27-8556-c74f1921def4_poly_0_">
                      <gml:posList srsDimension="3">568311.024 5517060.274 11.646999999999991 568311.039 5517060.273 11.632000000000005 568312.05 5517070.916 11.659999999999997 568307.611 5517071.371 16.349999999999994 568307.006 5517065.176 16.349999999999994 568311.024 5517060.274 11.646999999999991</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_605137_590a781d-ab37-4a26-a487-b8a929383fd1">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f794f844-f861-45ed-85ee-29ca4a32a5b2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605137_590a781d-ab37-4a26-a487-b8a929383fd1_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605137_590a781d-ab37-4a26-a487-b8a929383fd1_poly_0_">
                      <gml:posList srsDimension="3">568312.05 5517070.916 0.0 568312.05 5517070.916 11.659999999999997 568311.039 5517060.273 11.632000000000005 568311.039 5517060.273 0.0 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:RoofSurface gml:id="DEBY_LOD2_605137_8dc072b0-014e-40c1-9985-86d734db391c">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_43ca5a95-ff42-459e-baed-9df18e115267">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605137_8dc072b0-014e-40c1-9985-86d734db391c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605137_8dc072b0-014e-40c1-9985-86d734db391c_poly_0_">
                      <gml:posList srsDimension="3">568311.024 5517060.274 11.646999999999991 568307.006 5517065.176 16.349999999999994 568302.117 5517061.163 11.646999999999991 568311.024 5517060.274 11.646999999999991</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_605137_2e100e07-0fe7-4dc3-9ff0-144cd661d709">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_aa4786e6-8cdd-4ab6-bf24-4113527edaba">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605137_2e100e07-0fe7-4dc3-9ff0-144cd661d709_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605137_2e100e07-0fe7-4dc3-9ff0-144cd661d709_poly_0_">
                      <gml:posList srsDimension="3">568311.024 5517060.274 0.0 568311.039 5517060.273 0.0 568311.039 5517060.273 11.632000000000005 568311.024 5517060.274 11.646999999999991 568302.117 5517061.163 11.646999999999991 568302.117 5517061.163 0.0 568311.024 5517060.274 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_605137_e7f40a5a-780e-4433-a3f4-f2c229b36283">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_11693407-5717-4d6f-8675-237c72fb1977">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605137_e7f40a5a-780e-4433-a3f4-f2c229b36283_poly">
For faster browsing, not all history is shown. View entire blame