Grombühl_v4_case_study.gml 6.37 MB
Newer Older
Eric Duminil's avatar
Eric Duminil committed
32001
32002
32003
32004
32005
32006
32007
32008
32009
32010
32011
32012
32013
32014
32015
32016
32017
32018
32019
32020
32021
32022
32023
32024
32025
32026
32027
32028
32029
32030
32031
32032
32033
32034
32035
32036
32037
32038
32039
32040
32041
32042
32043
32044
32045
32046
32047
32048
32049
32050
32051
32052
32053
32054
32055
32056
32057
32058
32059
32060
32061
32062
32063
32064
32065
32066
32067
32068
32069
32070
32071
32072
32073
32074
32075
32076
32077
32078
32079
32080
32081
32082
32083
32084
32085
32086
32087
32088
32089
32090
32091
32092
32093
32094
32095
32096
32097
32098
32099
32100
32101
32102
32103
32104
32105
32106
32107
32108
32109
32110
32111
32112
32113
32114
32115
32116
32117
32118
32119
32120
32121
32122
32123
32124
32125
32126
32127
32128
32129
32130
32131
32132
32133
32134
32135
32136
32137
32138
32139
32140
32141
32142
32143
32144
32145
32146
32147
32148
32149
32150
32151
32152
32153
32154
32155
32156
32157
32158
32159
32160
32161
32162
32163
32164
32165
32166
32167
32168
32169
32170
32171
32172
32173
32174
32175
32176
32177
32178
32179
32180
32181
32182
32183
32184
32185
32186
32187
32188
32189
32190
32191
32192
32193
32194
32195
32196
32197
32198
32199
32200
32201
32202
32203
32204
32205
32206
32207
32208
32209
32210
32211
32212
32213
32214
32215
32216
32217
32218
32219
32220
32221
32222
32223
32224
32225
32226
32227
32228
32229
32230
32231
32232
32233
32234
32235
32236
32237
32238
32239
32240
32241
32242
32243
32244
32245
32246
32247
32248
32249
32250
32251
32252
32253
32254
32255
32256
32257
32258
32259
32260
32261
32262
32263
32264
32265
32266
32267
32268
32269
32270
32271
32272
32273
32274
32275
32276
32277
32278
32279
32280
32281
32282
32283
32284
32285
32286
32287
32288
32289
32290
32291
32292
32293
32294
32295
32296
32297
32298
32299
32300
32301
32302
32303
32304
32305
32306
32307
32308
32309
32310
32311
32312
32313
32314
32315
32316
32317
32318
32319
32320
32321
32322
32323
32324
32325
32326
32327
32328
32329
32330
32331
32332
32333
32334
32335
32336
32337
32338
32339
32340
32341
32342
32343
32344
32345
32346
32347
32348
32349
32350
32351
32352
32353
32354
32355
32356
32357
32358
32359
32360
32361
32362
32363
32364
32365
32366
32367
32368
32369
32370
32371
32372
32373
32374
32375
32376
32377
32378
32379
32380
32381
32382
32383
32384
32385
32386
32387
32388
32389
32390
32391
32392
32393
32394
32395
32396
32397
32398
32399
32400
32401
32402
32403
32404
32405
32406
32407
32408
32409
32410
32411
32412
32413
32414
32415
32416
32417
32418
32419
32420
32421
32422
32423
32424
32425
32426
32427
32428
32429
32430
32431
32432
32433
32434
32435
32436
32437
32438
32439
32440
32441
32442
32443
32444
32445
32446
32447
32448
32449
32450
32451
32452
32453
32454
32455
32456
32457
32458
32459
32460
32461
32462
32463
32464
32465
32466
32467
32468
32469
32470
32471
32472
32473
32474
32475
32476
32477
32478
32479
32480
32481
32482
32483
32484
32485
32486
32487
32488
32489
32490
32491
32492
32493
32494
32495
32496
32497
32498
32499
32500
32501
32502
32503
32504
32505
32506
32507
32508
32509
32510
32511
32512
32513
32514
32515
32516
32517
32518
32519
32520
32521
32522
32523
32524
32525
32526
32527
32528
32529
32530
32531
32532
32533
32534
32535
32536
32537
32538
32539
32540
32541
32542
32543
32544
32545
32546
32547
32548
32549
32550
32551
32552
32553
32554
32555
32556
32557
32558
32559
32560
32561
32562
32563
32564
32565
32566
32567
32568
32569
32570
32571
32572
32573
32574
32575
32576
32577
32578
32579
32580
32581
32582
32583
32584
32585
32586
32587
32588
32589
32590
32591
32592
32593
32594
32595
32596
32597
32598
32599
32600
32601
32602
32603
32604
32605
32606
32607
32608
32609
32610
32611
32612
32613
32614
32615
32616
32617
32618
32619
32620
32621
32622
32623
32624
32625
32626
32627
32628
32629
32630
32631
32632
32633
32634
32635
32636
32637
32638
32639
32640
32641
32642
32643
32644
32645
32646
32647
32648
32649
32650
32651
32652
32653
32654
32655
32656
32657
32658
32659
32660
32661
32662
32663
32664
32665
32666
32667
32668
32669
32670
32671
32672
32673
32674
32675
32676
32677
32678
32679
32680
32681
32682
32683
32684
32685
32686
32687
32688
32689
32690
32691
32692
32693
32694
32695
32696
32697
32698
32699
32700
32701
32702
32703
32704
32705
32706
32707
32708
32709
32710
32711
32712
32713
32714
32715
32716
32717
32718
32719
32720
32721
32722
32723
32724
32725
32726
32727
32728
32729
32730
32731
32732
32733
32734
32735
32736
32737
32738
32739
32740
32741
32742
32743
32744
32745
32746
32747
32748
32749
32750
32751
32752
32753
32754
32755
32756
32757
32758
32759
32760
32761
32762
32763
32764
32765
32766
32767
32768
32769
32770
32771
32772
32773
32774
32775
32776
32777
32778
32779
32780
32781
32782
32783
32784
32785
32786
32787
32788
32789
32790
32791
32792
32793
32794
32795
32796
32797
32798
32799
32800
32801
32802
32803
32804
32805
32806
32807
32808
32809
32810
32811
32812
32813
32814
32815
32816
32817
32818
32819
32820
32821
32822
32823
32824
32825
32826
32827
32828
32829
32830
32831
32832
32833
32834
32835
32836
32837
32838
32839
32840
32841
32842
32843
32844
32845
32846
32847
32848
32849
32850
32851
32852
32853
32854
32855
32856
32857
32858
32859
32860
32861
32862
32863
32864
32865
32866
32867
32868
32869
32870
32871
32872
32873
32874
32875
32876
32877
32878
32879
32880
32881
32882
32883
32884
32885
32886
32887
32888
32889
32890
32891
32892
32893
32894
32895
32896
32897
32898
32899
32900
32901
32902
32903
32904
32905
32906
32907
32908
32909
32910
32911
32912
32913
32914
32915
32916
32917
32918
32919
32920
32921
32922
32923
32924
32925
32926
32927
32928
32929
32930
32931
32932
32933
32934
32935
32936
32937
32938
32939
32940
32941
32942
32943
32944
32945
32946
32947
32948
32949
32950
32951
32952
32953
32954
32955
32956
32957
32958
32959
32960
32961
32962
32963
32964
32965
32966
32967
32968
32969
32970
32971
32972
32973
32974
32975
32976
32977
32978
32979
32980
32981
32982
32983
32984
32985
32986
32987
32988
32989
32990
32991
32992
32993
32994
32995
32996
32997
32998
32999
33000
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605154_24afc387-c090-4a4b-ac1d-6bb03828af8f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605154_bdefef71-115f-4061-ae89-f11348085fb4_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605154_8b9aa2a5-7dbc-4c84-bfba-fc39d8b2f377_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605154_a9b8b30c-8c0b-420c-9d94-44054922869f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605154_e01ecc17-57a9-44fd-92aa-66c7a44f88cc_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605154_90c76772-c3c0-45fe-ae56-2f5ba3850131_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605154_065de27e-67eb-4fc1-9cbc-f29431ce955a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605154_c92cf206-0a49-4cb8-9d28-87f11dd577ab_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605154_a3d16c04-a34f-4042-809f-df24b7a67ab5_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605154_93e5624b-e713-4401-b14c-a715439189b2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605154_a08b8905-360e-4da9-a450-1e95c9f6cd71_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605154_d19b609f-2dce-4d5e-8911-fac10f72017f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605154_d962edf1-ce95-4419-9a4d-6aae50bdbceb_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605154_951ace28-75a9-4b0b-b6aa-bcd22b31c506_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605154_8b9aa2a5-7dbc-4c84-bfba-fc39d8b2f377">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9083e5dc-1f21-4f3a-85f8-50f73510954c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605154_8b9aa2a5-7dbc-4c84-bfba-fc39d8b2f377_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605154_8b9aa2a5-7dbc-4c84-bfba-fc39d8b2f377_poly_0_">
                      <gml:posList srsDimension="3">568312.885 5517117.364 9.516999999999996 568312.971 5517117.39 9.492999999999995 568311.28 5517123.285 9.492000000000019 568309.158 5517119.403 10.316000000000003 568312.885 5517117.364 9.516999999999996</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_605154_bdefef71-115f-4061-ae89-f11348085fb4">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_71d6a16b-8686-46ff-bd68-023eb0605e4b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605154_bdefef71-115f-4061-ae89-f11348085fb4_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605154_bdefef71-115f-4061-ae89-f11348085fb4_poly_0_">
                      <gml:posList srsDimension="3">568316.202 5517118.315 0.0 568316.202 5517118.315 4.0 568314.057 5517117.719 4.0 568314.057 5517117.719 0.0 568316.202 5517118.315 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_605154_e01ecc17-57a9-44fd-92aa-66c7a44f88cc">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d3daacc5-d7bd-47f3-8fbc-55870c067261">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605154_e01ecc17-57a9-44fd-92aa-66c7a44f88cc_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605154_e01ecc17-57a9-44fd-92aa-66c7a44f88cc_poly_0_">
                      <gml:posList srsDimension="3">568310.128 5517127.301 4.0 568317.289 5517126.894 4.0 568317.289 5517126.894 0.0 568310.128 5517127.301 0.0 568300.3 5517127.861 0.0 568300.3 5517127.861 4.0 568310.128 5517127.301 4.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_605154_a9b8b30c-8c0b-420c-9d94-44054922869f">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8ced6b2e-53b4-4fd0-a24e-132eb17478db">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605154_a9b8b30c-8c0b-420c-9d94-44054922869f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605154_a9b8b30c-8c0b-420c-9d94-44054922869f_poly_0_">
                      <gml:posList srsDimension="3">568316.202 5517118.315 0.0 568314.057 5517117.719 0.0 568312.971 5517117.39 0.0 568312.885 5517117.364 0.0 568303.206 5517114.426 0.0 568302.361 5517117.369 0.0 568301.504 5517120.361 0.0 568300.348 5517124.394 0.0 568300.326 5517124.472 0.0 568300.276 5517124.46 0.0 568300.3 5517127.861 0.0 568310.128 5517127.301 0.0 568317.289 5517126.894 0.0 568316.202 5517118.315 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_605154_951ace28-75a9-4b0b-b6aa-bcd22b31c506">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_aaaf6277-b53f-4a84-a507-8cf1219d296a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605154_951ace28-75a9-4b0b-b6aa-bcd22b31c506_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605154_951ace28-75a9-4b0b-b6aa-bcd22b31c506_poly_0_">
                      <gml:posList srsDimension="3">568317.289 5517126.894 0.0 568317.289 5517126.894 4.0 568316.202 5517118.315 4.0 568316.202 5517118.315 0.0 568317.289 5517126.894 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_605154_d962edf1-ce95-4419-9a4d-6aae50bdbceb">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d776f4ed-5262-4622-a9d9-6b6683fda521">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605154_d962edf1-ce95-4419-9a4d-6aae50bdbceb_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605154_d962edf1-ce95-4419-9a4d-6aae50bdbceb_poly_0_">
                      <gml:posList srsDimension="3">568300.326 5517124.472 0.0 568300.326 5517124.472 4.0 568300.276 5517124.46 4.0 568300.276 5517124.46 0.0 568300.326 5517124.472 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_605154_24afc387-c090-4a4b-ac1d-6bb03828af8f">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_aee3be84-51f0-4c97-8a65-01f6ce3172d4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605154_24afc387-c090-4a4b-ac1d-6bb03828af8f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605154_24afc387-c090-4a4b-ac1d-6bb03828af8f_poly_0_">
                      <gml:posList srsDimension="3">568300.348 5517124.394 0.0 568301.504 5517120.361 0.0 568302.361 5517117.369 0.0 568303.206 5517114.426 0.0 568303.206 5517114.426 9.507000000000005 568302.361 5517117.369 10.316000000000003 568301.504 5517120.361 9.495000000000005 568300.348 5517124.394 9.489000000000004 568300.348 5517124.394 4.0 568300.326 5517124.472 4.0 568300.326 5517124.472 0.0 568300.348 5517124.394 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_605154_a549b9a8-c346-4ab2-9f3f-7253413f74e4">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_87abc690-2164-476b-bc5b-108c3de4e5ef">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605154_a549b9a8-c346-4ab2-9f3f-7253413f74e4_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605154_a549b9a8-c346-4ab2-9f3f-7253413f74e4_poly_0_">
                      <gml:posList srsDimension="3">568311.28 5517123.285 9.492000000000019 568312.971 5517117.39 9.492999999999995 568312.971 5517117.39 4.0 568311.28 5517123.285 4.0 568311.138 5517123.78 4.0 568311.138 5517123.78 9.491000000000014 568311.28 5517123.285 9.492000000000019</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_605154_93e5624b-e713-4401-b14c-a715439189b2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_98141cb4-aead-4632-8a39-20ceec17b386">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605154_93e5624b-e713-4401-b14c-a715439189b2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605154_93e5624b-e713-4401-b14c-a715439189b2_poly_0_">
                      <gml:posList srsDimension="3">568300.348 5517124.394 4.0 568300.348 5517124.394 9.489000000000004 568311.138 5517123.78 9.491000000000014 568311.138 5517123.78 4.0 568300.348 5517124.394 4.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_605154_d19b609f-2dce-4d5e-8911-fac10f72017f">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f7efc22c-c181-4c14-bf57-a2e8c7efc012">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605154_d19b609f-2dce-4d5e-8911-fac10f72017f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605154_d19b609f-2dce-4d5e-8911-fac10f72017f_poly_0_">
                      <gml:posList srsDimension="3">568300.276 5517124.46 0.0 568300.276 5517124.46 4.0 568300.3 5517127.861 4.0 568300.3 5517127.861 0.0 568300.276 5517124.46 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_605154_a08b8905-360e-4da9-a450-1e95c9f6cd71">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2852bc2b-1294-449e-aace-9a031e57f716">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605154_a08b8905-360e-4da9-a450-1e95c9f6cd71_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605154_a08b8905-360e-4da9-a450-1e95c9f6cd71_poly_0_">
                      <gml:posList srsDimension="3">568301.504 5517120.361 9.495000000000005 568311.28 5517123.285 9.492000000000019 568311.138 5517123.78 9.491000000000014 568300.348 5517124.394 9.489000000000004 568301.504 5517120.361 9.495000000000005</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605154_065de27e-67eb-4fc1-9cbc-f29431ce955a">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f63220aa-dc8b-4ab2-8883-8031b41ef319">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605154_065de27e-67eb-4fc1-9cbc-f29431ce955a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605154_065de27e-67eb-4fc1-9cbc-f29431ce955a_poly_0_">
                      <gml:posList srsDimension="3">568303.206 5517114.426 0.0 568312.885 5517117.364 0.0 568312.971 5517117.39 0.0 568314.057 5517117.719 0.0 568314.057 5517117.719 4.0 568312.971 5517117.39 4.0 568312.971 5517117.39 9.492999999999995 568312.885 5517117.364 9.516999999999996 568303.206 5517114.426 9.507000000000005 568303.206 5517114.426 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_605154_90c76772-c3c0-45fe-ae56-2f5ba3850131">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b0ebccd5-b5a6-4397-b3b3-c27f7a7b79a9">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605154_90c76772-c3c0-45fe-ae56-2f5ba3850131_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605154_90c76772-c3c0-45fe-ae56-2f5ba3850131_poly_0_">
                      <gml:posList srsDimension="3">568302.361 5517117.369 10.316000000000003 568309.158 5517119.403 10.316000000000003 568311.28 5517123.285 9.492000000000019 568301.504 5517120.361 9.495000000000005 568302.361 5517117.369 10.316000000000003</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_605154_a3d16c04-a34f-4042-809f-df24b7a67ab5">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ce5cebf3-f9c4-428d-a4d2-689409fe255e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605154_a3d16c04-a34f-4042-809f-df24b7a67ab5_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605154_a3d16c04-a34f-4042-809f-df24b7a67ab5_poly_0_">
                      <gml:posList srsDimension="3">568300.326 5517124.472 4.0 568300.348 5517124.394 4.0 568311.138 5517123.78 4.0 568311.28 5517123.285 4.0 568312.971 5517117.39 4.0 568314.057 5517117.719 4.0 568316.202 5517118.315 4.0 568317.289 5517126.894 4.0 568310.128 5517127.301 4.0 568300.3 5517127.861 4.0 568300.276 5517124.46 4.0 568300.326 5517124.472 4.0</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_605154_c92cf206-0a49-4cb8-9d28-87f11dd577ab">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_dc5e0117-362f-4cae-bc57-e8102da7724e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605154_c92cf206-0a49-4cb8-9d28-87f11dd577ab_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605154_c92cf206-0a49-4cb8-9d28-87f11dd577ab_poly_0_">
                      <gml:posList srsDimension="3">568303.206 5517114.426 9.507000000000005 568312.885 5517117.364 9.516999999999996 568309.158 5517119.403 10.316000000000003 568302.361 5517117.369 10.316000000000003 568303.206 5517114.426 9.507000000000005</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
    </bldg:Building>
  </cityObjectMember><cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_605078">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9oeSZ</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>Senefelderstraße 6, 97080, Würzburg</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2019-09-24</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_1000</bldg:function>
      <bldg:yearOfConstruction>1930</bldg:yearOfConstruction>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">17.814</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_e0b39d2c-69d8-47c4-8474-0ea7e6d9554a">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_679cbfa2-a26d-4963-b826-d943214fe317">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605078_f15ca319-7faf-4e42-9632-82cbee62bc0b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605078_c38257af-9c6f-49c8-ac70-c2709f353cbc_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605078_cbd57489-bcd8-4ce6-a2a3-f87b15d116a5_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605078_eac3f031-1765-4a2f-8400-5c4ee665ee26_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605078_b87ceec5-40e6-474f-84f2-ff193db24c53_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605078_6a1f2234-d47c-41e9-af3c-d6ea85dc6cc8_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605078_4ad5bb54-b929-4704-a85b-f1cc833a3f40_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605078_3ce087c1-a7ba-46fa-98b6-33678692deb3_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="DEBY_LOD2_605078_f15ca319-7faf-4e42-9632-82cbee62bc0b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_57baff3f-1498-40d0-b203-8f954512977c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605078_f15ca319-7faf-4e42-9632-82cbee62bc0b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605078_f15ca319-7faf-4e42-9632-82cbee62bc0b_poly_0_">
                      <gml:posList srsDimension="3">568489.551 5516990.078 0.0 568484.508 5516971.513 0.0 568479.404 5516972.855 0.0 568474.286 5516974.202 0.0 568479.358 5516992.98 0.0 568484.473 5516991.616 0.0 568489.594 5516990.25 0.0 568489.551 5516990.078 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605078_6a1f2234-d47c-41e9-af3c-d6ea85dc6cc8">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3a9a9212-f705-4d61-a420-4556b9f2d359">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605078_6a1f2234-d47c-41e9-af3c-d6ea85dc6cc8_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605078_6a1f2234-d47c-41e9-af3c-d6ea85dc6cc8_poly_0_">
                      <gml:posList srsDimension="3">568479.404 5516972.855 17.813999999999993 568484.473 5516991.616 17.813999999999993 568479.358 5516992.98 14.757000000000005 568474.286 5516974.202 14.757000000000005 568479.404 5516972.855 17.813999999999993</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_605078_c38257af-9c6f-49c8-ac70-c2709f353cbc">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c755328e-55ea-4c6f-b5d0-a72ed0d83e86">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605078_c38257af-9c6f-49c8-ac70-c2709f353cbc_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605078_c38257af-9c6f-49c8-ac70-c2709f353cbc_poly_0_">
                      <gml:posList srsDimension="3">568484.508 5516971.513 14.766999999999996 568489.551 5516990.078 14.751999999999981 568489.594 5516990.25 14.75399999999999 568484.473 5516991.616 17.813999999999993 568479.404 5516972.855 17.813999999999993 568484.508 5516971.513 14.766999999999996</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_605078_3ce087c1-a7ba-46fa-98b6-33678692deb3">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fcc08288-7f8b-40d0-b764-d3602b3a6e4c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605078_3ce087c1-a7ba-46fa-98b6-33678692deb3_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605078_3ce087c1-a7ba-46fa-98b6-33678692deb3_poly_0_">
                      <gml:posList srsDimension="3">568489.594 5516990.25 0.0 568489.594 5516990.25 14.75399999999999 568489.551 5516990.078 14.751999999999981 568489.551 5516990.078 0.0 568489.594 5516990.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_605078_eac3f031-1765-4a2f-8400-5c4ee665ee26">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_089b7045-358d-4b22-9a05-f27ba9af19e0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605078_eac3f031-1765-4a2f-8400-5c4ee665ee26_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605078_eac3f031-1765-4a2f-8400-5c4ee665ee26_poly_0_">
                      <gml:posList srsDimension="3">568489.551 5516990.078 0.0 568489.551 5516990.078 14.751999999999981 568484.508 5516971.513 14.766999999999996 568484.508 5516971.513 0.0 568489.551 5516990.078 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_605078_4ad5bb54-b929-4704-a85b-f1cc833a3f40">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a726035d-4d1c-4cc1-a7ee-a44de7d94cde">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605078_4ad5bb54-b929-4704-a85b-f1cc833a3f40_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605078_4ad5bb54-b929-4704-a85b-f1cc833a3f40_poly_0_">
                      <gml:posList srsDimension="3">568479.404 5516972.855 0.0 568484.508 5516971.513 0.0 568484.508 5516971.513 14.766999999999996 568479.404 5516972.855 17.813999999999993 568474.286 5516974.202 14.757000000000005 568474.286 5516974.202 0.0 568479.404 5516972.855 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_605078_cbd57489-bcd8-4ce6-a2a3-f87b15d116a5">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9f4343f7-4e7b-401f-8641-5afd412e92d0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605078_cbd57489-bcd8-4ce6-a2a3-f87b15d116a5_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605078_cbd57489-bcd8-4ce6-a2a3-f87b15d116a5_poly_0_">
                      <gml:posList srsDimension="3">568474.286 5516974.202 0.0 568474.286 5516974.202 14.757000000000005 568479.358 5516992.98 14.757000000000005 568479.358 5516992.98 0.0 568474.286 5516974.202 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_605078_b87ceec5-40e6-474f-84f2-ff193db24c53">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c5a0b867-15a7-40c1-8056-8d4e1761dee6">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605078_b87ceec5-40e6-474f-84f2-ff193db24c53_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605078_b87ceec5-40e6-474f-84f2-ff193db24c53_poly_0_">
                      <gml:posList srsDimension="3">568484.473 5516991.616 17.813999999999993 568489.594 5516990.25 14.75399999999999 568489.594 5516990.25 0.0 568484.473 5516991.616 0.0 568479.358 5516992.98 0.0 568479.358 5516992.98 14.757000000000005 568484.473 5516991.616 17.813999999999993</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_107599316">
      <creationDate>2020-05-14</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9oek2</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_3065</bldg:function>
      <bldg:roofType>3200</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">14.07</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_6e809bf0-05a2-4991-9296-8254294c0b5d">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_94248503-08bf-4c44-9dd3-2eceaf94bfeb">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599316_9211f4de-2977-4632-bf9e-581c73d112e9_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599316_cfb541b8-e3b4-464a-99b9-b146eeb46543_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599316_63053851-2f9b-40cf-8e39-1a2be1783628_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599316_08c4ed0d-b791-4e7c-8f6c-e8f0dddfc89c_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599316_8893feef-a7fe-4b16-ae69-20a774a07395_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599316_449affec-ca07-4a87-8d6a-155025400945_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599316_a692b628-6c50-408f-8e3d-7ce54cafe8c6_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599316_c8044a40-3c0c-48a3-b895-72735940b787_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599316_d01f480b-3014-4836-b69a-99bea6b182f1_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599316_f51d01b3-4c6b-45f8-8b77-c2e1b61e44be_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599316_96c6b445-c234-4727-9387-bfca53d06ece_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599316_231b2da5-4b85-4c71-86c2-3f1d2edaa152_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599316_9397c707-a406-4c51-a0c0-017ccf69b406_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599316_6d980f4f-4536-44a4-8ad3-55385166c63f_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599316_7d7cd0ef-ae46-4352-b1d5-e517765c5608_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599316_584abb2a-ce48-4714-9772-de75d474de08_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599316_002c4e43-3d9f-43e1-b28c-0e054c076b8a_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599316_9868da8f-34d1-4821-8fdf-8179257d8337_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599316_bcea95e8-ce16-46df-865d-5467f4d9c007_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599316_c1a2261f-85ac-4615-b4cf-ec83cd4ceaf8_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_107599316_62d52318-587b-4210-9726-0d943004413f_2_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_107599316_08c4ed0d-b791-4e7c-8f6c-e8f0dddfc89c_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9d18d2f4-7cf8-4845-a5e8-aebfdec91305">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599316_08c4ed0d-b791-4e7c-8f6c-e8f0dddfc89c_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599316_08c4ed0d-b791-4e7c-8f6c-e8f0dddfc89c_2_poly_0_">
                      <gml:posList srsDimension="3">568615.339 5517115.18 10.74799999999999 568615.55 5517115.15 10.603000000000009 568617.44 5517128.44 10.603000000000009 568617.033 5517128.498 10.883999999999986 568611.491 5517122.657 14.069999999999993 568615.339 5517115.18 10.74799999999999</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_107599316_449affec-ca07-4a87-8d6a-155025400945_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8b89e63f-121d-4cb3-97ac-f973b761271d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599316_449affec-ca07-4a87-8d6a-155025400945_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599316_449affec-ca07-4a87-8d6a-155025400945_2_poly_0_">
                      <gml:posList srsDimension="3">568569.04 5517126.42 0.0 568569.04 5517126.42 6.859999999999985 568578.78 5517134.97 6.859999999999985 568578.78 5517134.97 0.0 568569.04 5517126.42 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_107599316_62d52318-587b-4210-9726-0d943004413f_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4559e278-5276-4968-8a4a-f02492ace9cb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599316_62d52318-587b-4210-9726-0d943004413f_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599316_62d52318-587b-4210-9726-0d943004413f_2_poly_0_">
                      <gml:posList srsDimension="3">568615.339 5517115.18 10.74799999999999 568611.491 5517122.657 14.069999999999993 568595.724 5517124.93 14.069999999999993 568589.933 5517118.825 10.740000000000009 568615.339 5517115.18 10.74799999999999</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_107599316_9397c707-a406-4c51-a0c0-017ccf69b406_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_19ae8042-22e2-44fd-bd4c-6e9b2b392ccb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599316_9397c707-a406-4c51-a0c0-017ccf69b406_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599316_9397c707-a406-4c51-a0c0-017ccf69b406_2_poly_0_">
                      <gml:posList srsDimension="3">568587.15 5517124.83 0.0 568587.15 5517124.83 6.859999999999985 568576.47 5517126.37 6.859999999999985 568576.47 5517126.37 0.0 568587.15 5517124.83 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_107599316_8893feef-a7fe-4b16-ae69-20a774a07395_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_be478972-8f70-437b-8f3c-fa9f95684bda">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599316_8893feef-a7fe-4b16-ae69-20a774a07395_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599316_8893feef-a7fe-4b16-ae69-20a774a07395_2_poly_0_">
                      <gml:posList srsDimension="3">568591.55 5517131.99 0.0 568579.89 5517133.69 0.0 568579.89 5517133.69 6.859999999999985 568591.307 5517132.025 6.859999999999985 568591.307 5517132.025 10.400000000000006 568591.55 5517131.99 10.567000000000007 568591.55 5517131.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_107599316_bcea95e8-ce16-46df-865d-5467f4d9c007_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_13ab5eff-68f6-4a53-ab3d-c1c019567b4f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599316_bcea95e8-ce16-46df-865d-5467f4d9c007_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599316_bcea95e8-ce16-46df-865d-5467f4d9c007_2_poly_0_">
                      <gml:posList srsDimension="3">568586.94 5517119.65 0.0 568589.75 5517119.28 0.0 568589.75 5517119.28 10.573000000000008 568589.5 5517119.313 10.400000000000006 568589.5 5517119.313 6.859999999999985 568586.94 5517119.65 6.859999999999985 568586.94 5517119.65 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_107599316_c1a2261f-85ac-4615-b4cf-ec83cd4ceaf8_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b1df85ce-f8b9-4287-8d53-8c05414a5120">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599316_c1a2261f-85ac-4615-b4cf-ec83cd4ceaf8_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599316_c1a2261f-85ac-4615-b4cf-ec83cd4ceaf8_2_poly_0_">
                      <gml:posList srsDimension="3">568576.47 5517126.37 0.0 568576.47 5517126.37 6.859999999999985 568576.32 5517125.36 6.859999999999985 568576.32 5517125.36 0.0 568576.47 5517126.37 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_107599316_cfb541b8-e3b4-464a-99b9-b146eeb46543_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_af5891a5-efec-46f7-b72c-a53115215bcc">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599316_cfb541b8-e3b4-464a-99b9-b146eeb46543_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599316_cfb541b8-e3b4-464a-99b9-b146eeb46543_2_poly_0_">
                      <gml:posList srsDimension="3">568586.94 5517119.65 0.0 568586.94 5517119.65 6.859999999999985 568587.12 5517124.03 6.859999999999985 568587.12 5517124.03 0.0 568586.94 5517119.65 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_107599316_231b2da5-4b85-4c71-86c2-3f1d2edaa152_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_bae2e898-cb90-4459-81ac-1fdab556ddcb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599316_231b2da5-4b85-4c71-86c2-3f1d2edaa152_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599316_231b2da5-4b85-4c71-86c2-3f1d2edaa152_2_poly_0_">
                      <gml:posList srsDimension="3">568617.44 5517128.44 0.0 568591.57 5517132.15 0.0 568591.57 5517132.15 10.566000000000003 568592.044 5517132.082 10.893 568617.033 5517128.498 10.883999999999986 568617.44 5517128.44 10.603000000000009 568617.44 5517128.44 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_107599316_63053851-2f9b-40cf-8e39-1a2be1783628_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_defdf225-8d0d-46c0-af9f-c5fd94f9b35b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599316_63053851-2f9b-40cf-8e39-1a2be1783628_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599316_63053851-2f9b-40cf-8e39-1a2be1783628_2_poly_0_">
                      <gml:posList srsDimension="3">568576.32 5517125.36 6.859999999999985 568576.47 5517126.37 6.859999999999985 568587.15 5517124.83 6.859999999999985 568587.12 5517124.03 6.859999999999985 568586.94 5517119.65 6.859999999999985 568589.5 5517119.313 6.859999999999985 568591.307 5517132.025 6.859999999999985 568579.89 5517133.69 6.859999999999985 568578.78 5517134.97 6.859999999999985 568569.04 5517126.42 6.859999999999985 568576.32 5517125.36 6.859999999999985</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_107599316_96c6b445-c234-4727-9387-bfca53d06ece_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_cc13292a-4a3e-4017-a069-0a4bad0ecf65">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599316_96c6b445-c234-4727-9387-bfca53d06ece_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599316_96c6b445-c234-4727-9387-bfca53d06ece_2_poly_0_">
                      <gml:posList srsDimension="3">568589.69 5517118.86 0.0 568589.75 5517119.28 0.0 568586.94 5517119.65 0.0 568587.12 5517124.03 0.0 568587.15 5517124.83 0.0 568576.47 5517126.37 0.0 568576.32 5517125.36 0.0 568569.04 5517126.42 0.0 568578.78 5517134.97 0.0 568579.89 5517133.69 0.0 568591.55 5517131.99 0.0 568591.57 5517132.15 0.0 568617.44 5517128.44 0.0 568615.55 5517115.15 0.0 568589.69 5517118.86 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_107599316_9211f4de-2977-4632-bf9e-581c73d112e9_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_19da3628-9189-4ecd-b4c3-84957ec18df1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599316_9211f4de-2977-4632-bf9e-581c73d112e9_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599316_9211f4de-2977-4632-bf9e-581c73d112e9_2_poly_0_">
                      <gml:posList srsDimension="3">568591.55 5517131.99 0.0 568591.55 5517131.99 10.567000000000007 568591.57 5517132.15 10.566000000000003 568591.57 5517132.15 0.0 568591.55 5517131.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_107599316_002c4e43-3d9f-43e1-b28c-0e054c076b8a_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7e996c0f-55c7-43ad-a435-7e3525db3c73">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599316_002c4e43-3d9f-43e1-b28c-0e054c076b8a_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599316_002c4e43-3d9f-43e1-b28c-0e054c076b8a_2_poly_0_">
                      <gml:posList srsDimension="3">568578.78 5517134.97 0.0 568578.78 5517134.97 6.859999999999985 568579.89 5517133.69 6.859999999999985 568579.89 5517133.69 0.0 568578.78 5517134.97 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_107599316_c8044a40-3c0c-48a3-b895-72735940b787_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_233b6c7b-dfe7-4f88-9108-0c0cd5feff63">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599316_c8044a40-3c0c-48a3-b895-72735940b787_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599316_c8044a40-3c0c-48a3-b895-72735940b787_2_poly_0_">
                      <gml:posList srsDimension="3">568587.12 5517124.03 0.0 568587.12 5517124.03 6.859999999999985 568587.15 5517124.83 6.859999999999985 568587.15 5517124.83 0.0 568587.12 5517124.03 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_107599316_9868da8f-34d1-4821-8fdf-8179257d8337_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a12ab561-438f-47e4-bd37-3968bcca963f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599316_9868da8f-34d1-4821-8fdf-8179257d8337_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599316_9868da8f-34d1-4821-8fdf-8179257d8337_2_poly_0_">
                      <gml:posList srsDimension="3">568589.69 5517118.86 0.0 568589.69 5517118.86 10.572000000000003 568589.75 5517119.28 10.573000000000008 568589.75 5517119.28 0.0 568589.69 5517118.86 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_107599316_f51d01b3-4c6b-45f8-8b77-c2e1b61e44be_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b00e465f-5dc1-4aab-91a2-d86adc9f5f38">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599316_f51d01b3-4c6b-45f8-8b77-c2e1b61e44be_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599316_f51d01b3-4c6b-45f8-8b77-c2e1b61e44be_2_poly_0_">
                      <gml:posList srsDimension="3">568589.69 5517118.86 0.0 568615.55 5517115.15 0.0 568615.55 5517115.15 10.603000000000009 568615.339 5517115.18 10.74799999999999 568589.933 5517118.825 10.740000000000009 568589.69 5517118.86 10.572000000000003 568589.69 5517118.86 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_107599316_d01f480b-3014-4836-b69a-99bea6b182f1_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2391a09f-0d86-4522-876a-0bea72907429">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599316_d01f480b-3014-4836-b69a-99bea6b182f1_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599316_d01f480b-3014-4836-b69a-99bea6b182f1_2_poly_0_">
                      <gml:posList srsDimension="3">568589.5 5517119.313 6.859999999999985 568589.5 5517119.313 10.400000000000006 568591.307 5517132.025 10.400000000000006 568591.307 5517132.025 6.859999999999985 568589.5 5517119.313 6.859999999999985</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_107599316_6d980f4f-4536-44a4-8ad3-55385166c63f_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_40dbe5b8-fdc0-4962-aef9-0e8072a0ae3b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599316_6d980f4f-4536-44a4-8ad3-55385166c63f_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599316_6d980f4f-4536-44a4-8ad3-55385166c63f_2_poly_0_">
                      <gml:posList srsDimension="3">568576.32 5517125.36 0.0 568576.32 5517125.36 6.859999999999985 568569.04 5517126.42 6.859999999999985 568569.04 5517126.42 0.0 568576.32 5517125.36 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_107599316_584abb2a-ce48-4714-9772-de75d474de08_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_bd27290e-e664-4fc3-9ca6-7be9fc66d8ab">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599316_584abb2a-ce48-4714-9772-de75d474de08_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599316_584abb2a-ce48-4714-9772-de75d474de08_2_poly_0_">
                      <gml:posList srsDimension="3">568595.724 5517124.93 14.069999999999993 568611.491 5517122.657 14.069999999999993 568617.033 5517128.498 10.883999999999986 568592.044 5517132.082 10.893 568595.724 5517124.93 14.069999999999993</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_107599316_a692b628-6c50-408f-8e3d-7ce54cafe8c6_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_15fb7a5f-101b-4f93-858f-ef47656f7822">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599316_a692b628-6c50-408f-8e3d-7ce54cafe8c6_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599316_a692b628-6c50-408f-8e3d-7ce54cafe8c6_2_poly_0_">
                      <gml:posList srsDimension="3">568617.44 5517128.44 0.0 568617.44 5517128.44 10.603000000000009 568615.55 5517115.15 10.603000000000009 568615.55 5517115.15 0.0 568617.44 5517128.44 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_107599316_7d7cd0ef-ae46-4352-b1d5-e517765c5608_2">
          <creationDate>2020-05-14</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_97f56ba6-76c5-4aa8-84a2-50209992cad0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_107599316_7d7cd0ef-ae46-4352-b1d5-e517765c5608_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_107599316_7d7cd0ef-ae46-4352-b1d5-e517765c5608_2_poly_0_">
                      <gml:posList srsDimension="3">568589.75 5517119.28 10.573000000000008 568589.69 5517118.86 10.572000000000003 568589.933 5517118.825 10.740000000000009 568595.724 5517124.93 14.069999999999993 568592.044 5517132.082 10.893 568591.57 5517132.15 10.566000000000003 568591.55 5517131.99 10.567000000000007 568591.307 5517132.025 10.400000000000006 568589.5 5517119.313 10.400000000000006 568589.75 5517119.28 10.573000000000008</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
    </bldg:Building>
  </cityObjectMember><cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_605167">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9pI5h</name>
        </externalObject>
      </externalReference>
      <gen:stringAttribute name="comment">
        <gen:value>CityGML from BKG LoD2_32_56[68]_5516_2_BY.xml, with yearOfConstruction from Stadt_Würzburg_Wohngebäude_Baujahr_Untersuchungsgebiet.xlsx, 2023-02-22</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="address">
        <gen:value>Petrinistraße 18, 97080, Würzburg</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2019-09-24</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_1000</bldg:function>
      <bldg:yearOfConstruction>1955</bldg:yearOfConstruction>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">16.456</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_f608234d-f4d6-4300-950f-83d3c2074502">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_b2a717c6-de23-4a33-acef-440cd0ca1069">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605167_f8b9253f-93a2-4acc-b891-4458667457e0_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605167_25b93a75-2df3-4afa-a233-ab7de5e51629_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605167_9ab350e6-5f44-4a64-b57e-925aff58ebd1_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605167_018a4a7f-58d2-4e63-9eaf-1f26c6ee1ffd_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605167_fc8c2fb2-e5fb-440c-8135-e6c7548716c7_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605167_d015ce92-ebde-4d01-b649-18faf32ba72e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605167_683f6a54-cf6b-4e08-9581-60414b13f28b_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605167_d015ce92-ebde-4d01-b649-18faf32ba72e">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_0c84c51c-2737-4e83-a9ed-01364c8f4b7e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605167_d015ce92-ebde-4d01-b649-18faf32ba72e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605167_d015ce92-ebde-4d01-b649-18faf32ba72e_poly_0_">
                      <gml:posList srsDimension="3">568208.644 5517015.325 11.25200000000001 568208.644 5517015.325 0.0 568209.045 5517020.689 0.0 568209.445 5517026.033 0.0 568209.445 5517026.033 11.27000000000001 568209.045 5517020.689 16.456000000000017 568208.644 5517015.325 11.25200000000001</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_605167_9ab350e6-5f44-4a64-b57e-925aff58ebd1">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a65130d3-325e-40b1-b59f-8fe5ce1b402d">
For faster browsing, not all history is shown. View entire blame