Grombühl_v4_case_study.gml 6.37 MB
Newer Older
Eric Duminil's avatar
Eric Duminil committed
43001
43002
43003
43004
43005
43006
43007
43008
43009
43010
43011
43012
43013
43014
43015
43016
43017
43018
43019
43020
43021
43022
43023
43024
43025
43026
43027
43028
43029
43030
43031
43032
43033
43034
43035
43036
43037
43038
43039
43040
43041
43042
43043
43044
43045
43046
43047
43048
43049
43050
43051
43052
43053
43054
43055
43056
43057
43058
43059
43060
43061
43062
43063
43064
43065
43066
43067
43068
43069
43070
43071
43072
43073
43074
43075
43076
43077
43078
43079
43080
43081
43082
43083
43084
43085
43086
43087
43088
43089
43090
43091
43092
43093
43094
43095
43096
43097
43098
43099
43100
43101
43102
43103
43104
43105
43106
43107
43108
43109
43110
43111
43112
43113
43114
43115
43116
43117
43118
43119
43120
43121
43122
43123
43124
43125
43126
43127
43128
43129
43130
43131
43132
43133
43134
43135
43136
43137
43138
43139
43140
43141
43142
43143
43144
43145
43146
43147
43148
43149
43150
43151
43152
43153
43154
43155
43156
43157
43158
43159
43160
43161
43162
43163
43164
43165
43166
43167
43168
43169
43170
43171
43172
43173
43174
43175
43176
43177
43178
43179
43180
43181
43182
43183
43184
43185
43186
43187
43188
43189
43190
43191
43192
43193
43194
43195
43196
43197
43198
43199
43200
43201
43202
43203
43204
43205
43206
43207
43208
43209
43210
43211
43212
43213
43214
43215
43216
43217
43218
43219
43220
43221
43222
43223
43224
43225
43226
43227
43228
43229
43230
43231
43232
43233
43234
43235
43236
43237
43238
43239
43240
43241
43242
43243
43244
43245
43246
43247
43248
43249
43250
43251
43252
43253
43254
43255
43256
43257
43258
43259
43260
43261
43262
43263
43264
43265
43266
43267
43268
43269
43270
43271
43272
43273
43274
43275
43276
43277
43278
43279
43280
43281
43282
43283
43284
43285
43286
43287
43288
43289
43290
43291
43292
43293
43294
43295
43296
43297
43298
43299
43300
43301
43302
43303
43304
43305
43306
43307
43308
43309
43310
43311
43312
43313
43314
43315
43316
43317
43318
43319
43320
43321
43322
43323
43324
43325
43326
43327
43328
43329
43330
43331
43332
43333
43334
43335
43336
43337
43338
43339
43340
43341
43342
43343
43344
43345
43346
43347
43348
43349
43350
43351
43352
43353
43354
43355
43356
43357
43358
43359
43360
43361
43362
43363
43364
43365
43366
43367
43368
43369
43370
43371
43372
43373
43374
43375
43376
43377
43378
43379
43380
43381
43382
43383
43384
43385
43386
43387
43388
43389
43390
43391
43392
43393
43394
43395
43396
43397
43398
43399
43400
43401
43402
43403
43404
43405
43406
43407
43408
43409
43410
43411
43412
43413
43414
43415
43416
43417
43418
43419
43420
43421
43422
43423
43424
43425
43426
43427
43428
43429
43430
43431
43432
43433
43434
43435
43436
43437
43438
43439
43440
43441
43442
43443
43444
43445
43446
43447
43448
43449
43450
43451
43452
43453
43454
43455
43456
43457
43458
43459
43460
43461
43462
43463
43464
43465
43466
43467
43468
43469
43470
43471
43472
43473
43474
43475
43476
43477
43478
43479
43480
43481
43482
43483
43484
43485
43486
43487
43488
43489
43490
43491
43492
43493
43494
43495
43496
43497
43498
43499
43500
43501
43502
43503
43504
43505
43506
43507
43508
43509
43510
43511
43512
43513
43514
43515
43516
43517
43518
43519
43520
43521
43522
43523
43524
43525
43526
43527
43528
43529
43530
43531
43532
43533
43534
43535
43536
43537
43538
43539
43540
43541
43542
43543
43544
43545
43546
43547
43548
43549
43550
43551
43552
43553
43554
43555
43556
43557
43558
43559
43560
43561
43562
43563
43564
43565
43566
43567
43568
43569
43570
43571
43572
43573
43574
43575
43576
43577
43578
43579
43580
43581
43582
43583
43584
43585
43586
43587
43588
43589
43590
43591
43592
43593
43594
43595
43596
43597
43598
43599
43600
43601
43602
43603
43604
43605
43606
43607
43608
43609
43610
43611
43612
43613
43614
43615
43616
43617
43618
43619
43620
43621
43622
43623
43624
43625
43626
43627
43628
43629
43630
43631
43632
43633
43634
43635
43636
43637
43638
43639
43640
43641
43642
43643
43644
43645
43646
43647
43648
43649
43650
43651
43652
43653
43654
43655
43656
43657
43658
43659
43660
43661
43662
43663
43664
43665
43666
43667
43668
43669
43670
43671
43672
43673
43674
43675
43676
43677
43678
43679
43680
43681
43682
43683
43684
43685
43686
43687
43688
43689
43690
43691
43692
43693
43694
43695
43696
43697
43698
43699
43700
43701
43702
43703
43704
43705
43706
43707
43708
43709
43710
43711
43712
43713
43714
43715
43716
43717
43718
43719
43720
43721
43722
43723
43724
43725
43726
43727
43728
43729
43730
43731
43732
43733
43734
43735
43736
43737
43738
43739
43740
43741
43742
43743
43744
43745
43746
43747
43748
43749
43750
43751
43752
43753
43754
43755
43756
43757
43758
43759
43760
43761
43762
43763
43764
43765
43766
43767
43768
43769
43770
43771
43772
43773
43774
43775
43776
43777
43778
43779
43780
43781
43782
43783
43784
43785
43786
43787
43788
43789
43790
43791
43792
43793
43794
43795
43796
43797
43798
43799
43800
43801
43802
43803
43804
43805
43806
43807
43808
43809
43810
43811
43812
43813
43814
43815
43816
43817
43818
43819
43820
43821
43822
43823
43824
43825
43826
43827
43828
43829
43830
43831
43832
43833
43834
43835
43836
43837
43838
43839
43840
43841
43842
43843
43844
43845
43846
43847
43848
43849
43850
43851
43852
43853
43854
43855
43856
43857
43858
43859
43860
43861
43862
43863
43864
43865
43866
43867
43868
43869
43870
43871
43872
43873
43874
43875
43876
43877
43878
43879
43880
43881
43882
43883
43884
43885
43886
43887
43888
43889
43890
43891
43892
43893
43894
43895
43896
43897
43898
43899
43900
43901
43902
43903
43904
43905
43906
43907
43908
43909
43910
43911
43912
43913
43914
43915
43916
43917
43918
43919
43920
43921
43922
43923
43924
43925
43926
43927
43928
43929
43930
43931
43932
43933
43934
43935
43936
43937
43938
43939
43940
43941
43942
43943
43944
43945
43946
43947
43948
43949
43950
43951
43952
43953
43954
43955
43956
43957
43958
43959
43960
43961
43962
43963
43964
43965
43966
43967
43968
43969
43970
43971
43972
43973
43974
43975
43976
43977
43978
43979
43980
43981
43982
43983
43984
43985
43986
43987
43988
43989
43990
43991
43992
43993
43994
43995
43996
43997
43998
43999
44000
        <bldg:WallSurface gml:id="DEBY_LOD2_605171_e4042eb6-2de7-43da-bbc0-1aa73e16c053">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_00816b72-53a3-4fca-9845-c2584e161885">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605171_e4042eb6-2de7-43da-bbc0-1aa73e16c053_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605171_e4042eb6-2de7-43da-bbc0-1aa73e16c053_poly_0_">
                      <gml:posList srsDimension="3">568162.831 5517041.471 0.0 568162.831 5517041.471 10.423000000000002 568158.265 5517041.822 10.417000000000002 568158.265 5517041.822 0.0 568162.831 5517041.471 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_605171_0bb9abb8-de90-4b2b-9daa-577b21a10664">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_0ca6c1f2-8c15-4f30-a8b1-6ffd5a9b2c50">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605171_0bb9abb8-de90-4b2b-9daa-577b21a10664_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605171_0bb9abb8-de90-4b2b-9daa-577b21a10664_poly_0_">
                      <gml:posList srsDimension="3">568172.262 5517051.701 6.310999999999979 568172.486 5517054.101 6.0379999999999825 568166.729 5517054.551 6.0379999999999825 568166.549 5517052.147 6.310999999999979 568172.262 5517051.701 6.310999999999979</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_605171_4718a781-c9aa-4b6d-b4e0-d37efae3421e">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_76a6e71a-faa0-48d1-a4b9-c35ea21293c4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605171_4718a781-c9aa-4b6d-b4e0-d37efae3421e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605171_4718a781-c9aa-4b6d-b4e0-d37efae3421e_poly_0_">
                      <gml:posList srsDimension="3">568158.641 5517047.129 0.0 568158.641 5517047.129 10.941000000000003 568158.09 5517047.168 10.426999999999992 568158.09 5517047.168 0.0 568158.641 5517047.129 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_605171_b28c9705-ca5d-4cd7-9580-e9ecded806ce">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9a183901-6358-4c57-b595-108e44b19b70">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605171_b28c9705-ca5d-4cd7-9580-e9ecded806ce_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605171_b28c9705-ca5d-4cd7-9580-e9ecded806ce_poly_0_">
                      <gml:posList srsDimension="3">568171.446 5517040.94 0.0 568171.446 5517040.94 10.554999999999978 568162.836 5517041.601 10.543999999999983 568162.836 5517041.601 0.0 568171.446 5517040.94 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_605171_32ea164b-6cd0-4db8-b0ad-553ea332f3b8">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2b24c3ec-7d51-4fab-8f0b-b20f73a4ee66">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605171_32ea164b-6cd0-4db8-b0ad-553ea332f3b8_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605171_32ea164b-6cd0-4db8-b0ad-553ea332f3b8_poly_0_">
                      <gml:posList srsDimension="3">568158.09 5517047.168 10.426999999999992 568158.517 5517052.71 10.438999999999993 568158.518 5517052.723 10.426999999999992 568158.522 5517052.774 10.426999999999992 568158.707 5517055.176 10.431999999999988 568158.707 5517055.176 0.0 568158.522 5517052.774 0.0 568158.518 5517052.723 0.0 568158.517 5517052.71 0.0 568158.09 5517047.168 0.0 568158.09 5517047.168 10.426999999999992</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_605171_426e07cd-c08d-4d7e-bfc8-ba736bcca341">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7d348138-b1de-4cd1-bd1c-bab521c9382c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605171_426e07cd-c08d-4d7e-bfc8-ba736bcca341_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605171_426e07cd-c08d-4d7e-bfc8-ba736bcca341_poly_0_">
                      <gml:posList srsDimension="3">568162.831 5517041.471 10.423000000000002 568162.836 5517041.601 10.543999999999983 568171.446 5517040.94 10.554999999999978 568171.847 5517046.226 15.47999999999999 568163.517 5517046.878 15.47999999999999 568158.307 5517042.403 10.956999999999994 568158.265 5517041.822 10.417000000000002 568162.831 5517041.471 10.423000000000002</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_605171_64a204ad-476f-4992-aecc-49e5efde8e34">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_12cab844-d3e4-4351-b9b8-2c328e3da370">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605171_64a204ad-476f-4992-aecc-49e5efde8e34_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605171_64a204ad-476f-4992-aecc-49e5efde8e34_poly_0_">
                      <gml:posList srsDimension="3">568166.549 5517052.147 6.310999999999979 568166.549 5517052.147 10.379999999999995 568172.262 5517051.701 10.379999999999995 568172.262 5517051.701 6.310999999999979 568166.549 5517052.147 6.310999999999979</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_605171_f74e8575-45dd-4213-9604-d94196bde491">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_82d6185d-12de-410f-9682-b77506993109">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605171_f74e8575-45dd-4213-9604-d94196bde491_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605171_f74e8575-45dd-4213-9604-d94196bde491_poly_0_">
                      <gml:posList srsDimension="3">568158.265 5517041.822 10.417000000000002 568158.307 5517042.403 10.956999999999994 568158.641 5517047.129 10.941000000000003 568158.641 5517047.129 0.0 568158.307 5517042.403 0.0 568158.265 5517041.822 0.0 568158.265 5517041.822 10.417000000000002</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_605171_4ae8541d-315b-4f7f-8d22-d9f77047c462">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fb05cb64-9a2e-42ff-aaed-cbbb24aa2016">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605171_4ae8541d-315b-4f7f-8d22-d9f77047c462_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605171_4ae8541d-315b-4f7f-8d22-d9f77047c462_poly_0_">
                      <gml:posList srsDimension="3">568166.549 5517052.147 10.379999999999995 568166.729 5517054.551 10.379999999999995 568162.683 5517054.867 13.379999999999995 568162.504 5517052.462 13.379999999999995 568166.549 5517052.147 10.379999999999995</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_605171_391e3336-1d9d-4f8d-986f-a63bfcb53d95">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fca4c815-cf47-4ee5-9a75-d08457a58c06">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605171_391e3336-1d9d-4f8d-986f-a63bfcb53d95_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605171_391e3336-1d9d-4f8d-986f-a63bfcb53d95_poly_0_">
                      <gml:posList srsDimension="3">568162.504 5517052.462 13.379999999999995 568162.683 5517054.867 13.379999999999995 568158.707 5517055.176 10.431999999999988 568158.522 5517052.774 10.426999999999992 568162.504 5517052.462 13.379999999999995</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_605171_42ad78d0-2d61-401e-920c-745d83c24801">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_bb163b26-8fc0-4acc-8c34-c990298ecc50">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605171_42ad78d0-2d61-401e-920c-745d83c24801_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605171_42ad78d0-2d61-401e-920c-745d83c24801_poly_0_">
                      <gml:posList srsDimension="3">568162.264 5517049.254 13.370000000000005 568162.504 5517052.462 13.379999999999995 568158.522 5517052.774 10.426999999999992 568158.518 5517052.723 10.426999999999992 568162.264 5517049.254 13.370000000000005</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="DEBY_LOD2_605171_0ad231de-ba9d-4f3b-afd7-babb6487ebc4">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4fd9204d-7894-4697-b12f-ea4e0fba3e5d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605171_0ad231de-ba9d-4f3b-afd7-babb6487ebc4_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605171_0ad231de-ba9d-4f3b-afd7-babb6487ebc4_poly_0_">
                      <gml:posList srsDimension="3">568172.262 5517051.701 0.0 568171.847 5517046.226 0.0 568171.446 5517040.94 0.0 568162.836 5517041.601 0.0 568162.831 5517041.471 0.0 568158.265 5517041.822 0.0 568158.307 5517042.403 0.0 568158.641 5517047.129 0.0 568158.09 5517047.168 0.0 568158.517 5517052.71 0.0 568158.518 5517052.723 0.0 568158.522 5517052.774 0.0 568158.707 5517055.176 0.0 568162.683 5517054.867 0.0 568166.729 5517054.551 0.0 568172.486 5517054.101 0.0 568172.262 5517051.701 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_605171_07f36265-2008-4521-ab0f-a6047880e6bb">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ca601abc-8847-4bf3-aba0-c25fae208f5b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605171_07f36265-2008-4521-ab0f-a6047880e6bb_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605171_07f36265-2008-4521-ab0f-a6047880e6bb_poly_0_">
                      <gml:posList srsDimension="3">568171.446 5517040.94 10.554999999999978 568171.446 5517040.94 0.0 568171.847 5517046.226 0.0 568172.262 5517051.701 0.0 568172.262 5517051.701 6.310999999999979 568172.262 5517051.701 10.379999999999995 568171.847 5517046.226 15.47999999999999 568171.446 5517040.94 10.554999999999978</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_605171_c16aa507-32ef-4681-8734-431235eab14d">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_bc2c88d3-86ae-4997-a475-c6549e037162">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605171_c16aa507-32ef-4681-8734-431235eab14d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605171_c16aa507-32ef-4681-8734-431235eab14d_poly_0_">
                      <gml:posList srsDimension="3">568166.549 5517052.147 10.379999999999995 568162.504 5517052.462 13.379999999999995 568162.264 5517049.254 13.370000000000005 568166.549 5517052.147 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_605171_d7ccc210-f15c-47ff-ba7e-406fd978398b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_14cb5354-bf49-4565-ae5a-ab88a250dc8e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605171_d7ccc210-f15c-47ff-ba7e-406fd978398b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605171_d7ccc210-f15c-47ff-ba7e-406fd978398b_poly_0_">
                      <gml:posList srsDimension="3">568162.683 5517054.867 13.379999999999995 568166.729 5517054.551 10.379999999999995 568166.729 5517054.551 6.0379999999999825 568172.486 5517054.101 6.0379999999999825 568172.486 5517054.101 0.0 568166.729 5517054.551 0.0 568162.683 5517054.867 0.0 568158.707 5517055.176 0.0 568158.707 5517055.176 10.431999999999988 568162.683 5517054.867 13.379999999999995</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_605171_2363a793-c4b0-4df6-b4a0-dfdd5a1602b6">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d6c7409c-4ed7-47f0-9f34-35331e96a012">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605171_2363a793-c4b0-4df6-b4a0-dfdd5a1602b6_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605171_2363a793-c4b0-4df6-b4a0-dfdd5a1602b6_poly_0_">
                      <gml:posList srsDimension="3">568172.486 5517054.101 0.0 568172.486 5517054.101 6.0379999999999825 568172.262 5517051.701 6.310999999999979 568172.262 5517051.701 0.0 568172.486 5517054.101 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_605171_cb5ebc99-6e50-4fb6-9045-b8b87fb71e65">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_31297dc1-44f9-4034-a892-b5a10cf0c595">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605171_cb5ebc99-6e50-4fb6-9045-b8b87fb71e65_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605171_cb5ebc99-6e50-4fb6-9045-b8b87fb71e65_poly_0_">
                      <gml:posList srsDimension="3">568158.641 5517047.129 10.941000000000003 568158.307 5517042.403 10.956999999999994 568163.517 5517046.878 15.47999999999999 568158.517 5517052.71 10.438999999999993 568158.09 5517047.168 10.426999999999992 568158.641 5517047.129 10.941000000000003</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_605171_6ce12658-273f-40d1-a285-35846e03f805">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8d51eaf9-089e-4b42-8d86-b52c3b02e033">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605171_6ce12658-273f-40d1-a285-35846e03f805_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605171_6ce12658-273f-40d1-a285-35846e03f805_poly_0_">
                      <gml:posList srsDimension="3">568163.517 5517046.878 15.47999999999999 568171.847 5517046.226 15.47999999999999 568172.262 5517051.701 10.379999999999995 568166.549 5517052.147 10.379999999999995 568162.264 5517049.254 13.370000000000005 568158.518 5517052.723 10.426999999999992 568158.517 5517052.71 10.438999999999993 568163.517 5517046.878 15.47999999999999</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_605171_942bd970-5ce3-4114-8c17-44253999e6a8">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4d71e298-d2fd-4130-ae14-48fcffe1c519">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605171_942bd970-5ce3-4114-8c17-44253999e6a8_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605171_942bd970-5ce3-4114-8c17-44253999e6a8_poly_0_">
                      <gml:posList srsDimension="3">568162.836 5517041.601 0.0 568162.836 5517041.601 10.543999999999983 568162.831 5517041.471 10.423000000000002 568162.831 5517041.471 0.0 568162.836 5517041.601 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_605171_89f01ae5-e78f-47b9-a4ff-73afdbea2f6b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f22dfe1d-3c42-4476-861f-1c8c9e880581">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605171_89f01ae5-e78f-47b9-a4ff-73afdbea2f6b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605171_89f01ae5-e78f-47b9-a4ff-73afdbea2f6b_poly_0_">
                      <gml:posList srsDimension="3">568166.729 5517054.551 6.0379999999999825 568166.729 5517054.551 10.379999999999995 568166.549 5517052.147 10.379999999999995 568166.549 5517052.147 6.310999999999979 568166.729 5517054.551 6.0379999999999825</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_605050">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odCy</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 4, 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">17.336</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_0f47b01b-ea47-4723-85f6-f4d143ae26a9">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_009a5624-0be1-48d3-afeb-5c33adb7c69e">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605050_21c6b61b-312e-44cc-81fe-c2552d7b2646_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605050_dfdf69ad-52ce-40f3-95a6-aa795d2a5639_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605050_fe120676-4065-499c-a61c-32b000c6548f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605050_dce0b628-cffe-44c0-8ea5-4a2475a817c0_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605050_edd46a4f-4e02-4ce7-bd8e-5cd872483f9d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605050_f347bc28-e72a-4046-a18b-1190629975a8_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605050_f2484ad9-0448-42bd-a695-2e02648bbed3_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605050_2ea897d3-1c37-479e-bffc-98b49d783d29_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605050_73730d14-1fd8-45a0-87ba-30a82ee0f9a0_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605050_17c93268-7485-41ac-821d-685bea2b3a52_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605050_4f126159-5d49-4b9d-bbe1-e06b3b47420f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605050_1c36463c-a0e6-47ca-8130-f4918c92e25b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605050_507604c1-1180-40f8-9728-5776da8bd895_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605050_f347bc28-e72a-4046-a18b-1190629975a8">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a1f8d251-e642-4cce-879b-6f25a01a0961">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605050_f347bc28-e72a-4046-a18b-1190629975a8_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605050_f347bc28-e72a-4046-a18b-1190629975a8_poly_0_">
                      <gml:posList srsDimension="3">568355.891 5517101.515 0.0 568355.891 5517101.515 12.857 568354.61 5517092.197 12.935000000000002 568354.61 5517092.197 0.0 568355.891 5517101.515 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_605050_f2484ad9-0448-42bd-a695-2e02648bbed3">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6dd684c8-9b0f-4a25-a6d6-dd7d2ec9be37">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605050_f2484ad9-0448-42bd-a695-2e02648bbed3_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605050_f2484ad9-0448-42bd-a695-2e02648bbed3_poly_0_">
                      <gml:posList srsDimension="3">568339.525 5517094.338 0.0 568339.525 5517094.338 13.332000000000022 568339.193 5517094.385 13.331000000000017 568339.193 5517094.385 0.0 568339.525 5517094.338 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_605050_507604c1-1180-40f8-9728-5776da8bd895">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ea733adc-515a-408a-8e73-107d3ec4c520">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605050_507604c1-1180-40f8-9728-5776da8bd895_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605050_507604c1-1180-40f8-9728-5776da8bd895_poly_0_">
                      <gml:posList srsDimension="3">568339.525 5517094.338 13.332000000000022 568342.602 5517093.9 13.338000000000022 568342.532 5517093.407 12.891999999999996 568350.699 5517092.222 12.88500000000002 568350.778 5517092.745 13.358000000000004 568354.138 5517092.264 13.362000000000023 568350.308 5517097.299 17.336000000000013 568339.76 5517098.821 17.336000000000013 568339.193 5517094.385 13.331000000000017 568339.525 5517094.338 13.332000000000022</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_605050_dce0b628-cffe-44c0-8ea5-4a2475a817c0">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2cd50f4f-95e7-4314-94d8-6b113c65c658">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605050_dce0b628-cffe-44c0-8ea5-4a2475a817c0_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605050_dce0b628-cffe-44c0-8ea5-4a2475a817c0_poly_0_">
                      <gml:posList srsDimension="3">568350.778 5517092.745 0.0 568350.778 5517092.745 13.358000000000004 568350.699 5517092.222 12.88500000000002 568350.699 5517092.222 0.0 568350.778 5517092.745 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_605050_edd46a4f-4e02-4ce7-bd8e-5cd872483f9d">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a743d2a7-50c4-47ef-a98d-85f5202c5ea6">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605050_edd46a4f-4e02-4ce7-bd8e-5cd872483f9d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605050_edd46a4f-4e02-4ce7-bd8e-5cd872483f9d_poly_0_">
                      <gml:posList srsDimension="3">568342.602 5517093.9 0.0 568342.602 5517093.9 13.338000000000022 568339.525 5517094.338 13.332000000000022 568339.525 5517094.338 0.0 568342.602 5517093.9 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_605050_21c6b61b-312e-44cc-81fe-c2552d7b2646">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c48a2c77-0b2c-4170-9ccb-3226bb37bdf4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605050_21c6b61b-312e-44cc-81fe-c2552d7b2646_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605050_21c6b61b-312e-44cc-81fe-c2552d7b2646_poly_0_">
                      <gml:posList srsDimension="3">568339.193 5517094.385 13.331000000000017 568339.76 5517098.821 17.336000000000013 568340.392 5517103.754 12.884000000000015 568340.392 5517103.754 0.0 568339.76 5517098.821 0.0 568339.193 5517094.385 0.0 568339.193 5517094.385 13.331000000000017</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_605050_17c93268-7485-41ac-821d-685bea2b3a52">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5621fa73-eb5c-4a19-897a-fb834cfead55">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605050_17c93268-7485-41ac-821d-685bea2b3a52_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605050_17c93268-7485-41ac-821d-685bea2b3a52_poly_0_">
                      <gml:posList srsDimension="3">568354.61 5517092.197 0.0 568354.138 5517092.264 0.0 568350.778 5517092.745 0.0 568350.699 5517092.222 0.0 568342.532 5517093.407 0.0 568342.602 5517093.9 0.0 568339.525 5517094.338 0.0 568339.193 5517094.385 0.0 568339.76 5517098.821 0.0 568340.392 5517103.754 0.0 568355.861 5517101.519 0.0 568355.891 5517101.515 0.0 568354.61 5517092.197 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_605050_fe120676-4065-499c-a61c-32b000c6548f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9aa3155c-c8bc-47f7-b319-efa64da38ae2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605050_fe120676-4065-499c-a61c-32b000c6548f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605050_fe120676-4065-499c-a61c-32b000c6548f_poly_0_">
                      <gml:posList srsDimension="3">568354.138 5517092.264 0.0 568354.61 5517092.197 0.0 568354.61 5517092.197 12.935000000000002 568354.138 5517092.264 13.362000000000023 568350.778 5517092.745 13.358000000000004 568350.778 5517092.745 0.0 568354.138 5517092.264 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_605050_1c36463c-a0e6-47ca-8130-f4918c92e25b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_78ff8a8a-0d0f-41e0-8ea4-f8d8da995366">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605050_1c36463c-a0e6-47ca-8130-f4918c92e25b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605050_1c36463c-a0e6-47ca-8130-f4918c92e25b_poly_0_">
                      <gml:posList srsDimension="3">568354.138 5517092.264 13.362000000000023 568354.61 5517092.197 12.935000000000002 568355.891 5517101.515 12.857 568355.861 5517101.519 12.884000000000015 568350.308 5517097.299 17.336000000000013 568354.138 5517092.264 13.362000000000023</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_605050_dfdf69ad-52ce-40f3-95a6-aa795d2a5639">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_69a513b2-ebb9-4c43-968b-d3095a1e6c9f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605050_dfdf69ad-52ce-40f3-95a6-aa795d2a5639_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605050_dfdf69ad-52ce-40f3-95a6-aa795d2a5639_poly_0_">
                      <gml:posList srsDimension="3">568355.861 5517101.519 12.884000000000015 568355.891 5517101.515 12.857 568355.891 5517101.515 0.0 568355.861 5517101.519 0.0 568340.392 5517103.754 0.0 568340.392 5517103.754 12.884000000000015 568355.861 5517101.519 12.884000000000015</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_605050_4f126159-5d49-4b9d-bbe1-e06b3b47420f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_537b6af1-c825-4f9c-b60f-dd2e5faf927c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605050_4f126159-5d49-4b9d-bbe1-e06b3b47420f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605050_4f126159-5d49-4b9d-bbe1-e06b3b47420f_poly_0_">
                      <gml:posList srsDimension="3">568350.308 5517097.299 17.336000000000013 568355.861 5517101.519 12.884000000000015 568340.392 5517103.754 12.884000000000015 568339.76 5517098.821 17.336000000000013 568350.308 5517097.299 17.336000000000013</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_605050_2ea897d3-1c37-479e-bffc-98b49d783d29">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3625e688-4b4f-4251-adac-507beeb5a071">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605050_2ea897d3-1c37-479e-bffc-98b49d783d29_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605050_2ea897d3-1c37-479e-bffc-98b49d783d29_poly_0_">
                      <gml:posList srsDimension="3">568342.532 5517093.407 0.0 568342.532 5517093.407 12.891999999999996 568342.602 5517093.9 13.338000000000022 568342.602 5517093.9 0.0 568342.532 5517093.407 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_605050_73730d14-1fd8-45a0-87ba-30a82ee0f9a0">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_72d9a32a-6567-458b-af74-8de9d30c6172">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605050_73730d14-1fd8-45a0-87ba-30a82ee0f9a0_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605050_73730d14-1fd8-45a0-87ba-30a82ee0f9a0_poly_0_">
                      <gml:posList srsDimension="3">568350.699 5517092.222 0.0 568350.699 5517092.222 12.88500000000002 568342.532 5517093.407 12.891999999999996 568342.532 5517093.407 0.0 568350.699 5517092.222 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_605841">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9pJFj</name>
        </externalObject>
      </externalReference>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2019-09-25</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_2000</bldg:function>
      <bldg:roofType>1000</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">2.671</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_7ea3ef74-6258-4b01-b0c7-3e10e94d6025">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_96362fa6-1a8c-4f66-a46d-12edc7dbc0cd">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605841_eef9d610-b5d6-4524-a54c-60256185f0b9_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605841_8aaa5083-07d3-400b-bb7a-d3fa9f1f1a2d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605841_aad3fbb8-ea20-4633-9e9f-2b6340c1154c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605841_2a9a896a-d678-4466-abc4-ef823f82db04_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605841_c5fb6ce3-1029-4d97-ba77-68e8aecb719c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605841_eb6ecdfd-e8c2-4665-8cf9-8bbfc6b9b700_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605841_eef9d610-b5d6-4524-a54c-60256185f0b9">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_990f39b9-bd64-4561-b09a-dd80557ca925">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605841_eef9d610-b5d6-4524-a54c-60256185f0b9_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605841_eef9d610-b5d6-4524-a54c-60256185f0b9_poly_0_">
                      <gml:posList srsDimension="3">568156.736 5517062.612 2.6710000000000207 568157.001 5517066.77 2.6710000000000207 568157.122 5517068.681 2.6710000000000207 568157.122 5517068.681 0.0 568157.001 5517066.77 0.0 568156.736 5517062.612 0.0 568156.736 5517062.612 2.6710000000000207</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_605841_eb6ecdfd-e8c2-4665-8cf9-8bbfc6b9b700">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c07e1172-4615-4dcb-836f-3a6fd963dc62">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605841_eb6ecdfd-e8c2-4665-8cf9-8bbfc6b9b700_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605841_eb6ecdfd-e8c2-4665-8cf9-8bbfc6b9b700_poly_0_">
                      <gml:posList srsDimension="3">568166.207 5517061.458 2.6710000000000207 568166.753 5517067.524 2.6710000000000207 568157.172 5517068.675 2.6710000000000207 568157.122 5517068.681 2.6710000000000207 568157.001 5517066.77 2.6710000000000207 568156.736 5517062.612 2.6710000000000207 568166.207 5517061.458 2.6710000000000207</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_605841_8aaa5083-07d3-400b-bb7a-d3fa9f1f1a2d">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_840a6e69-4cd7-4ae1-88b1-2dca9437d35d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605841_8aaa5083-07d3-400b-bb7a-d3fa9f1f1a2d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605841_8aaa5083-07d3-400b-bb7a-d3fa9f1f1a2d_poly_0_">
                      <gml:posList srsDimension="3">568166.753 5517067.524 0.0 568166.753 5517067.524 2.6710000000000207 568166.207 5517061.458 2.6710000000000207 568166.207 5517061.458 0.0 568166.753 5517067.524 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_605841_aad3fbb8-ea20-4633-9e9f-2b6340c1154c">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a8558491-e3fa-44c2-8e29-aa184faea222">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605841_aad3fbb8-ea20-4633-9e9f-2b6340c1154c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605841_aad3fbb8-ea20-4633-9e9f-2b6340c1154c_poly_0_">
                      <gml:posList srsDimension="3">568157.172 5517068.675 2.6710000000000207 568166.753 5517067.524 2.6710000000000207 568166.753 5517067.524 0.0 568157.172 5517068.675 0.0 568157.122 5517068.681 0.0 568157.122 5517068.681 2.6710000000000207 568157.172 5517068.675 2.6710000000000207</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_605841_c5fb6ce3-1029-4d97-ba77-68e8aecb719c">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8988ec7e-f6db-4f0c-9cae-98689955fdd5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605841_c5fb6ce3-1029-4d97-ba77-68e8aecb719c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605841_c5fb6ce3-1029-4d97-ba77-68e8aecb719c_poly_0_">
                      <gml:posList srsDimension="3">568166.207 5517061.458 0.0 568166.207 5517061.458 2.6710000000000207 568156.736 5517062.612 2.6710000000000207 568156.736 5517062.612 0.0 568166.207 5517061.458 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_605841_2a9a896a-d678-4466-abc4-ef823f82db04">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8fdcac8b-f338-4363-85fb-1c3f95eb1293">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605841_2a9a896a-d678-4466-abc4-ef823f82db04_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605841_2a9a896a-d678-4466-abc4-ef823f82db04_poly_0_">
                      <gml:posList srsDimension="3">568166.207 5517061.458 0.0 568156.736 5517062.612 0.0 568157.001 5517066.77 0.0 568157.122 5517068.681 0.0 568157.172 5517068.675 0.0 568166.753 5517067.524 0.0 568166.207 5517061.458 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_605755">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9oeWY</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.54</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_a5e1df1e-8463-4bf2-84ee-6edc224999b0">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_87f831f6-2148-4898-a266-ae82394ce832">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605755_4edd6a52-4f6a-45f9-9f41-6ab304e01645_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605755_339fca38-a127-4a8f-8e99-34bf7e209547_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605755_e8d6b5d1-fdcd-4961-beab-640bf6a86f7a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605755_17898f93-5bc3-4dc4-9dce-88819199b879_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605755_834fd702-5951-4c5d-95fe-dd71e7954264_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605755_df320701-941b-41d6-bb84-d227beb32567_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605755_4c8bb454-feba-423f-b1f7-d159a14a5c32_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605755_a657d69b-8200-47c7-9317-551b82486a92_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605755_ea518e84-5967-4712-bee0-86d52ee8e4fe_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605755_a657d69b-8200-47c7-9317-551b82486a92">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7009943d-4f56-4f83-ae2e-e3e01e8cc7d4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605755_a657d69b-8200-47c7-9317-551b82486a92_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605755_a657d69b-8200-47c7-9317-551b82486a92_poly_0_">
                      <gml:posList srsDimension="3">568461.847 5517122.757 0.0 568461.847 5517122.757 2.0010000000000048 568457.149 5517126.26 2.0 568457.149 5517126.26 0.0 568461.847 5517122.757 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_605755_e8d6b5d1-fdcd-4961-beab-640bf6a86f7a">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_55cd5bc8-3e0e-4a0e-8022-c4819b343f4a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605755_e8d6b5d1-fdcd-4961-beab-640bf6a86f7a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605755_e8d6b5d1-fdcd-4961-beab-640bf6a86f7a_poly_0_">
                      <gml:posList srsDimension="3">568457.149 5517126.26 0.0 568457.149 5517126.26 2.0 568453.846 5517128.738 2.0020000000000095 568453.846 5517128.738 0.0 568457.149 5517126.26 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_605755_ea518e84-5967-4712-bee0-86d52ee8e4fe">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a7c0d659-39e3-4ecf-8138-308c24e3245f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605755_ea518e84-5967-4712-bee0-86d52ee8e4fe_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605755_ea518e84-5967-4712-bee0-86d52ee8e4fe_poly_0_">
                      <gml:posList srsDimension="3">568470.322 5517119.675 0.0 568470.322 5517119.675 2.539999999999992 568469.901 5517116.747 2.0020000000000095 568469.901 5517116.747 0.0 568470.322 5517119.675 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_605755_17898f93-5bc3-4dc4-9dce-88819199b879">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_92d4e3e2-2e58-4fa9-906c-a66611b84845">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605755_17898f93-5bc3-4dc4-9dce-88819199b879_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605755_17898f93-5bc3-4dc4-9dce-88819199b879_poly_0_">
                      <gml:posList srsDimension="3">568453.846 5517128.738 0.0 568453.846 5517128.738 2.0020000000000095 568455.14 5517129.4 2.2719999999999914 568455.14 5517129.4 0.0 568453.846 5517128.738 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_605755_4edd6a52-4f6a-45f9-9f41-6ab304e01645">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c9929cac-5a8f-4400-9f03-571d6cc4bf9e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605755_4edd6a52-4f6a-45f9-9f41-6ab304e01645_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605755_4edd6a52-4f6a-45f9-9f41-6ab304e01645_poly_0_">
                      <gml:posList srsDimension="3">568456.425 5517130.052 0.0 568456.425 5517130.052 2.539999999999992 568470.322 5517119.675 2.539999999999992 568470.322 5517119.675 0.0 568456.425 5517130.052 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_605755_834fd702-5951-4c5d-95fe-dd71e7954264">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_cf8cccfe-8dd4-444a-923c-b95af36624d9">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605755_834fd702-5951-4c5d-95fe-dd71e7954264_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605755_834fd702-5951-4c5d-95fe-dd71e7954264_poly_0_">
                      <gml:posList srsDimension="3">568453.846 5517128.738 0.0 568455.14 5517129.4 0.0 568456.425 5517130.052 0.0 568470.322 5517119.675 0.0 568469.901 5517116.747 0.0 568461.847 5517122.757 0.0 568457.149 5517126.26 0.0 568453.846 5517128.738 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_605755_339fca38-a127-4a8f-8e99-34bf7e209547">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2a7d8000-fa0d-4857-a2b5-d67e394be970">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605755_339fca38-a127-4a8f-8e99-34bf7e209547_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605755_339fca38-a127-4a8f-8e99-34bf7e209547_poly_0_">
                      <gml:posList srsDimension="3">568455.14 5517129.4 0.0 568455.14 5517129.4 2.2719999999999914 568456.425 5517130.052 2.539999999999992 568456.425 5517130.052 0.0 568455.14 5517129.4 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_605755_4c8bb454-feba-423f-b1f7-d159a14a5c32">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7f3009fe-69cf-496e-a308-c25776e15997">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605755_4c8bb454-feba-423f-b1f7-d159a14a5c32_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605755_4c8bb454-feba-423f-b1f7-d159a14a5c32_poly_0_">
                      <gml:posList srsDimension="3">568457.149 5517126.26 2.0 568461.847 5517122.757 2.0010000000000048 568469.901 5517116.747 2.0020000000000095 568470.322 5517119.675 2.539999999999992 568456.425 5517130.052 2.539999999999992 568455.14 5517129.4 2.2719999999999914 568453.846 5517128.738 2.0020000000000095 568457.149 5517126.26 2.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605755_df320701-941b-41d6-bb84-d227beb32567">
          <creationDate>2020-05-15</creationDate>
For faster browsing, not all history is shown. View entire blame