Grombühl_v4_case_study.gml 6.37 MB
Newer Older
Eric Duminil's avatar
Eric Duminil committed
27001
27002
27003
27004
27005
27006
27007
27008
27009
27010
27011
27012
27013
27014
27015
27016
27017
27018
27019
27020
27021
27022
27023
27024
27025
27026
27027
27028
27029
27030
27031
27032
27033
27034
27035
27036
27037
27038
27039
27040
27041
27042
27043
27044
27045
27046
27047
27048
27049
27050
27051
27052
27053
27054
27055
27056
27057
27058
27059
27060
27061
27062
27063
27064
27065
27066
27067
27068
27069
27070
27071
27072
27073
27074
27075
27076
27077
27078
27079
27080
27081
27082
27083
27084
27085
27086
27087
27088
27089
27090
27091
27092
27093
27094
27095
27096
27097
27098
27099
27100
27101
27102
27103
27104
27105
27106
27107
27108
27109
27110
27111
27112
27113
27114
27115
27116
27117
27118
27119
27120
27121
27122
27123
27124
27125
27126
27127
27128
27129
27130
27131
27132
27133
27134
27135
27136
27137
27138
27139
27140
27141
27142
27143
27144
27145
27146
27147
27148
27149
27150
27151
27152
27153
27154
27155
27156
27157
27158
27159
27160
27161
27162
27163
27164
27165
27166
27167
27168
27169
27170
27171
27172
27173
27174
27175
27176
27177
27178
27179
27180
27181
27182
27183
27184
27185
27186
27187
27188
27189
27190
27191
27192
27193
27194
27195
27196
27197
27198
27199
27200
27201
27202
27203
27204
27205
27206
27207
27208
27209
27210
27211
27212
27213
27214
27215
27216
27217
27218
27219
27220
27221
27222
27223
27224
27225
27226
27227
27228
27229
27230
27231
27232
27233
27234
27235
27236
27237
27238
27239
27240
27241
27242
27243
27244
27245
27246
27247
27248
27249
27250
27251
27252
27253
27254
27255
27256
27257
27258
27259
27260
27261
27262
27263
27264
27265
27266
27267
27268
27269
27270
27271
27272
27273
27274
27275
27276
27277
27278
27279
27280
27281
27282
27283
27284
27285
27286
27287
27288
27289
27290
27291
27292
27293
27294
27295
27296
27297
27298
27299
27300
27301
27302
27303
27304
27305
27306
27307
27308
27309
27310
27311
27312
27313
27314
27315
27316
27317
27318
27319
27320
27321
27322
27323
27324
27325
27326
27327
27328
27329
27330
27331
27332
27333
27334
27335
27336
27337
27338
27339
27340
27341
27342
27343
27344
27345
27346
27347
27348
27349
27350
27351
27352
27353
27354
27355
27356
27357
27358
27359
27360
27361
27362
27363
27364
27365
27366
27367
27368
27369
27370
27371
27372
27373
27374
27375
27376
27377
27378
27379
27380
27381
27382
27383
27384
27385
27386
27387
27388
27389
27390
27391
27392
27393
27394
27395
27396
27397
27398
27399
27400
27401
27402
27403
27404
27405
27406
27407
27408
27409
27410
27411
27412
27413
27414
27415
27416
27417
27418
27419
27420
27421
27422
27423
27424
27425
27426
27427
27428
27429
27430
27431
27432
27433
27434
27435
27436
27437
27438
27439
27440
27441
27442
27443
27444
27445
27446
27447
27448
27449
27450
27451
27452
27453
27454
27455
27456
27457
27458
27459
27460
27461
27462
27463
27464
27465
27466
27467
27468
27469
27470
27471
27472
27473
27474
27475
27476
27477
27478
27479
27480
27481
27482
27483
27484
27485
27486
27487
27488
27489
27490
27491
27492
27493
27494
27495
27496
27497
27498
27499
27500
27501
27502
27503
27504
27505
27506
27507
27508
27509
27510
27511
27512
27513
27514
27515
27516
27517
27518
27519
27520
27521
27522
27523
27524
27525
27526
27527
27528
27529
27530
27531
27532
27533
27534
27535
27536
27537
27538
27539
27540
27541
27542
27543
27544
27545
27546
27547
27548
27549
27550
27551
27552
27553
27554
27555
27556
27557
27558
27559
27560
27561
27562
27563
27564
27565
27566
27567
27568
27569
27570
27571
27572
27573
27574
27575
27576
27577
27578
27579
27580
27581
27582
27583
27584
27585
27586
27587
27588
27589
27590
27591
27592
27593
27594
27595
27596
27597
27598
27599
27600
27601
27602
27603
27604
27605
27606
27607
27608
27609
27610
27611
27612
27613
27614
27615
27616
27617
27618
27619
27620
27621
27622
27623
27624
27625
27626
27627
27628
27629
27630
27631
27632
27633
27634
27635
27636
27637
27638
27639
27640
27641
27642
27643
27644
27645
27646
27647
27648
27649
27650
27651
27652
27653
27654
27655
27656
27657
27658
27659
27660
27661
27662
27663
27664
27665
27666
27667
27668
27669
27670
27671
27672
27673
27674
27675
27676
27677
27678
27679
27680
27681
27682
27683
27684
27685
27686
27687
27688
27689
27690
27691
27692
27693
27694
27695
27696
27697
27698
27699
27700
27701
27702
27703
27704
27705
27706
27707
27708
27709
27710
27711
27712
27713
27714
27715
27716
27717
27718
27719
27720
27721
27722
27723
27724
27725
27726
27727
27728
27729
27730
27731
27732
27733
27734
27735
27736
27737
27738
27739
27740
27741
27742
27743
27744
27745
27746
27747
27748
27749
27750
27751
27752
27753
27754
27755
27756
27757
27758
27759
27760
27761
27762
27763
27764
27765
27766
27767
27768
27769
27770
27771
27772
27773
27774
27775
27776
27777
27778
27779
27780
27781
27782
27783
27784
27785
27786
27787
27788
27789
27790
27791
27792
27793
27794
27795
27796
27797
27798
27799
27800
27801
27802
27803
27804
27805
27806
27807
27808
27809
27810
27811
27812
27813
27814
27815
27816
27817
27818
27819
27820
27821
27822
27823
27824
27825
27826
27827
27828
27829
27830
27831
27832
27833
27834
27835
27836
27837
27838
27839
27840
27841
27842
27843
27844
27845
27846
27847
27848
27849
27850
27851
27852
27853
27854
27855
27856
27857
27858
27859
27860
27861
27862
27863
27864
27865
27866
27867
27868
27869
27870
27871
27872
27873
27874
27875
27876
27877
27878
27879
27880
27881
27882
27883
27884
27885
27886
27887
27888
27889
27890
27891
27892
27893
27894
27895
27896
27897
27898
27899
27900
27901
27902
27903
27904
27905
27906
27907
27908
27909
27910
27911
27912
27913
27914
27915
27916
27917
27918
27919
27920
27921
27922
27923
27924
27925
27926
27927
27928
27929
27930
27931
27932
27933
27934
27935
27936
27937
27938
27939
27940
27941
27942
27943
27944
27945
27946
27947
27948
27949
27950
27951
27952
27953
27954
27955
27956
27957
27958
27959
27960
27961
27962
27963
27964
27965
27966
27967
27968
27969
27970
27971
27972
27973
27974
27975
27976
27977
27978
27979
27980
27981
27982
27983
27984
27985
27986
27987
27988
27989
27990
27991
27992
27993
27994
27995
27996
27997
27998
27999
28000
                      <gml:posList srsDimension="3">568189.015 5517114.743 0.0 568189.015 5517114.743 8.240000000000009 568189.71 5517114.611 8.969999999999999 568189.71 5517114.611 0.0 568189.015 5517114.743 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_604867_39473a8b-58cf-4282-a8d8-596dfd241e5c">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_94060b8c-4a94-4eeb-b866-512f7da9c0ff">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604867_39473a8b-58cf-4282-a8d8-596dfd241e5c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604867_39473a8b-58cf-4282-a8d8-596dfd241e5c_poly_0_">
                      <gml:posList srsDimension="3">568220.826 5517101.438 9.018 568215.458 5517108.717 15.039999999999992 568195.273 5517112.336 15.039999999999992 568188.397 5517107.256 9.018 568220.826 5517101.438 9.018</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_604867_dd666ec0-1c98-4d75-9ca8-6fbb4bba4013">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2920466a-2563-4090-92d3-e5cd15feac6c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604867_dd666ec0-1c98-4d75-9ca8-6fbb4bba4013_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604867_dd666ec0-1c98-4d75-9ca8-6fbb4bba4013_poly_0_">
                      <gml:posList srsDimension="3">568190.941 5517119.042 9.387 568196.454 5517118.04 9.397999999999996 568196.454 5517118.04 0.0 568190.941 5517119.042 0.0 568190.54 5517119.115 0.0 568190.54 5517119.115 8.966000000000008 568190.941 5517119.042 9.387</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_604867_69d17eec-d2e3-429a-96f1-ae306fdab703">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_83340eea-4eef-441e-ba38-c50b6c036e1a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604867_69d17eec-d2e3-429a-96f1-ae306fdab703_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604867_69d17eec-d2e3-429a-96f1-ae306fdab703_poly_0_">
                      <gml:posList srsDimension="3">568189.71 5517114.611 0.0 568189.71 5517114.611 8.969999999999999 568190.54 5517119.115 8.966000000000008 568190.54 5517119.115 0.0 568189.71 5517114.611 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_604867_acba5ce1-7548-45a1-a78c-d0a19e4c74eb">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3afd9998-299e-47f1-91a7-ee7894d9263d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604867_acba5ce1-7548-45a1-a78c-d0a19e4c74eb_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604867_acba5ce1-7548-45a1-a78c-d0a19e4c74eb_poly_0_">
                      <gml:posList srsDimension="3">568222.556 5517113.33 9.426999999999992 568222.997 5517113.251 9.016999999999996 568222.997 5517113.251 0.0 568222.556 5517113.33 0.0 568218.101 5517114.136 0.0 568218.101 5517114.136 9.421999999999997 568222.556 5517113.33 9.426999999999992</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_604867_9e652f2a-e19e-4838-82a9-61a208465d9f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d75b41e6-91e1-473a-8ad6-3df09e68d510">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604867_9e652f2a-e19e-4838-82a9-61a208465d9f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604867_9e652f2a-e19e-4838-82a9-61a208465d9f_poly_0_">
                      <gml:posList srsDimension="3">568188.937 5517110.439 0.0 568188.937 5517110.439 8.968999999999994 568188.243 5517110.561 8.240999999999985 568188.243 5517110.561 0.0 568188.937 5517110.439 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_604867_31efa0ae-ffed-4fd6-990d-c2dcce84e3ca">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_cd955162-a0d1-49b3-b729-8b89a061b08b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604867_31efa0ae-ffed-4fd6-990d-c2dcce84e3ca_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604867_31efa0ae-ffed-4fd6-990d-c2dcce84e3ca_poly_0_">
                      <gml:posList srsDimension="3">568196.454 5517118.04 0.0 568196.454 5517118.04 9.397999999999996 568196.518 5517118.433 9.013000000000005 568196.518 5517118.433 0.0 568196.454 5517118.04 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_604867_b379fc67-1ccc-4276-a394-58185996515b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_84f3290e-c71e-4a66-90df-26f1e310ceb7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604867_b379fc67-1ccc-4276-a394-58185996515b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604867_b379fc67-1ccc-4276-a394-58185996515b_poly_0_">
                      <gml:posList srsDimension="3">568188.345 5517107.264 0.0 568188.345 5517107.264 8.963999999999999 568188.937 5517110.439 8.968999999999994 568188.937 5517110.439 0.0 568188.345 5517107.264 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_604867_7fb58b08-ede2-4dc1-b7d6-f4294fa16302">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_650ae5d2-cea0-46f7-afdf-97296d2e28d0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604867_7fb58b08-ede2-4dc1-b7d6-f4294fa16302_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604867_7fb58b08-ede2-4dc1-b7d6-f4294fa16302_poly_0_">
                      <gml:posList srsDimension="3">568222.997 5517113.251 0.0 568222.997 5517113.251 9.016999999999996 568220.826 5517101.438 9.018 568220.826 5517101.438 0.0 568222.997 5517113.251 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_604867_c09f37d2-4027-4fe1-93c4-2de8f15d2ea1">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5e9527fe-d003-4a7e-b0d8-af18bc86e7ca">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604867_c09f37d2-4027-4fe1-93c4-2de8f15d2ea1_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604867_c09f37d2-4027-4fe1-93c4-2de8f15d2ea1_poly_0_">
                      <gml:posList srsDimension="3">568188.937 5517110.439 8.968999999999994 568188.345 5517107.264 8.963999999999999 568188.397 5517107.256 9.018 568195.273 5517112.336 15.039999999999992 568190.941 5517119.042 9.387 568190.54 5517119.115 8.966000000000008 568189.71 5517114.611 8.969999999999999 568189.015 5517114.743 8.240000000000009 568188.243 5517110.561 8.240999999999985 568188.937 5517110.439 8.968999999999994</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_604867_906eed66-9366-4f57-b2db-29fe9eb1b3b4">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c69a267d-b189-487a-9c4b-736108f18d57">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604867_906eed66-9366-4f57-b2db-29fe9eb1b3b4_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604867_906eed66-9366-4f57-b2db-29fe9eb1b3b4_poly_0_">
                      <gml:posList srsDimension="3">568188.243 5517110.561 0.0 568188.243 5517110.561 8.240999999999985 568189.015 5517114.743 8.240000000000009 568189.015 5517114.743 0.0 568188.243 5517110.561 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_605048">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odIs</name>
        </externalObject>
      </externalReference>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2019-09-25</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_9998</bldg:function>
      <bldg:roofType>2100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">3.765</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_34425388-b013-4454-81cb-8093c19c7ef6">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_bdf0b7f4-37ed-4eaf-8d38-72634df297e4">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605048_5c11b732-707a-4060-8d14-34a281d68888_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605048_fa52a3ea-d349-43f6-a539-ea66d04fee55_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605048_6f09d901-9443-472d-8f84-6de136acf1c7_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605048_4fdf999c-5f84-488c-82b3-c2928a92823a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605048_0c0c8c25-aee2-42cd-8de6-e6ef72a26b36_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605048_54b7660c-0ca6-431b-a06a-75d3a70bb025_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="DEBY_LOD2_605048_54b7660c-0ca6-431b-a06a-75d3a70bb025">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_28069d00-a253-4039-8eb0-2283f71e1b14">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605048_54b7660c-0ca6-431b-a06a-75d3a70bb025_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605048_54b7660c-0ca6-431b-a06a-75d3a70bb025_poly_0_">
                      <gml:posList srsDimension="3">568343.409 5517054.437 0.0 568344.669 5517064.35 0.0 568350.527 5517063.657 0.0 568349.266 5517053.763 0.0 568343.409 5517054.437 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_605048_0c0c8c25-aee2-42cd-8de6-e6ef72a26b36">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6fb23ef9-bf22-4776-af45-36c2ead7d640">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605048_0c0c8c25-aee2-42cd-8de6-e6ef72a26b36_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605048_0c0c8c25-aee2-42cd-8de6-e6ef72a26b36_poly_0_">
                      <gml:posList srsDimension="3">568350.527 5517063.657 0.0 568350.527 5517063.657 3.7649999999999864 568349.266 5517053.763 3.7639999999999816 568349.266 5517053.763 0.0 568350.527 5517063.657 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_605048_fa52a3ea-d349-43f6-a539-ea66d04fee55">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2703c627-0035-4392-84b5-0fe4440ebf28">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605048_fa52a3ea-d349-43f6-a539-ea66d04fee55_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605048_fa52a3ea-d349-43f6-a539-ea66d04fee55_poly_0_">
                      <gml:posList srsDimension="3">568349.266 5517053.763 0.0 568349.266 5517053.763 3.7639999999999816 568343.409 5517054.437 3.040999999999997 568343.409 5517054.437 0.0 568349.266 5517053.763 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_605048_5c11b732-707a-4060-8d14-34a281d68888">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_853e43d4-a374-4b01-bf39-8e0652eebe53">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605048_5c11b732-707a-4060-8d14-34a281d68888_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605048_5c11b732-707a-4060-8d14-34a281d68888_poly_0_">
                      <gml:posList srsDimension="3">568349.266 5517053.763 3.7639999999999816 568350.527 5517063.657 3.7649999999999864 568344.669 5517064.35 3.040999999999997 568343.409 5517054.437 3.040999999999997 568349.266 5517053.763 3.7639999999999816</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_605048_6f09d901-9443-472d-8f84-6de136acf1c7">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e84c8bf4-be7f-4057-80d1-87ca4478f71e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605048_6f09d901-9443-472d-8f84-6de136acf1c7_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605048_6f09d901-9443-472d-8f84-6de136acf1c7_poly_0_">
                      <gml:posList srsDimension="3">568344.669 5517064.35 0.0 568344.669 5517064.35 3.040999999999997 568350.527 5517063.657 3.7649999999999864 568350.527 5517063.657 0.0 568344.669 5517064.35 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_605048_4fdf999c-5f84-488c-82b3-c2928a92823a">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9270649c-8cf8-4b3e-a8d4-7bd68638e803">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605048_4fdf999c-5f84-488c-82b3-c2928a92823a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605048_4fdf999c-5f84-488c-82b3-c2928a92823a_poly_0_">
                      <gml:posList srsDimension="3">568343.409 5517054.437 0.0 568343.409 5517054.437 3.040999999999997 568344.669 5517064.35 3.040999999999997 568344.669 5517064.35 0.0 568343.409 5517054.437 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_605117">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odNl</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 28a, 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>1960</bldg:yearOfConstruction>
      <bldg:roofType>3200</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">16.512</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_803b3dc8-3b77-448c-8e2f-f6425618b17d">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_842f9842-f03c-4649-a509-e6c78f0ebca4">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605117_e6b3a4bc-857e-47c8-863d-086cd31bbec6_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605117_15a60dc7-b19f-40ec-b882-2041fb9c7542_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605117_6264d144-9a36-430b-926a-76d4a5678351_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605117_1565b1c6-e038-44dd-9531-97a02bf21ad0_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605117_7264066d-f2fe-405e-9e94-0fcca4ad3e44_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605117_9bb5fab9-b8a5-4c7d-8972-f54e2413e223_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605117_2d9e5ef9-690d-4d61-adfe-f09f9fd4bdfd_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605117_80ed4174-f4cc-4cb8-b2bc-dabdaa93028d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605117_98129563-d21d-4fd3-9933-3efe17721c61_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605117_2f8e4f7d-5f95-4227-b685-f7b688c44e5f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605117_13755344-92e4-4f10-882d-fd4a15df320b_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605117_6264d144-9a36-430b-926a-76d4a5678351">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2f99b588-bdc0-40a3-882e-dbc23d05e386">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605117_6264d144-9a36-430b-926a-76d4a5678351_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605117_6264d144-9a36-430b-926a-76d4a5678351_poly_0_">
                      <gml:posList srsDimension="3">568444.08 5516990.286 0.0 568444.08 5516990.286 12.167000000000002 568433.929 5516991.029 12.165999999999997 568433.929 5516991.029 0.0 568444.08 5516990.286 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_605117_80ed4174-f4cc-4cb8-b2bc-dabdaa93028d">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_525ae246-2cbe-41d8-8d34-4fa3e6c1f555">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605117_80ed4174-f4cc-4cb8-b2bc-dabdaa93028d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605117_80ed4174-f4cc-4cb8-b2bc-dabdaa93028d_poly_0_">
                      <gml:posList srsDimension="3">568439.021 5516995.441 16.50999999999999 568448.518 5516994.751 16.512 568448.835 5516999.52 12.162999999999982 568439.187 5517000.215 12.165999999999997 568438.942 5516996.653 15.413999999999987 568437.905 5516996.728 15.413999999999987 568439.021 5516995.441 16.50999999999999</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_605117_98129563-d21d-4fd3-9933-3efe17721c61">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_68430a0f-80cf-47e0-9fc5-3cd9644f3a73">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605117_98129563-d21d-4fd3-9933-3efe17721c61_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605117_98129563-d21d-4fd3-9933-3efe17721c61_poly_0_">
                      <gml:posList srsDimension="3">568444.08 5516990.286 12.167000000000002 568448.202 5516989.981 12.162999999999982 568448.518 5516994.751 16.512 568439.021 5516995.441 16.50999999999999 568433.929 5516991.029 12.165999999999997 568444.08 5516990.286 12.167000000000002</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_605117_1565b1c6-e038-44dd-9531-97a02bf21ad0">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_cbc2d84b-1fe3-4b69-a1fd-22d965e5f1dd">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605117_1565b1c6-e038-44dd-9531-97a02bf21ad0_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605117_1565b1c6-e038-44dd-9531-97a02bf21ad0_poly_0_">
                      <gml:posList srsDimension="3">568448.518 5516994.751 0.0 568448.202 5516989.981 0.0 568444.08 5516990.286 0.0 568433.929 5516991.029 0.0 568434.348 5516996.989 0.0 568437.905 5516996.728 0.0 568438.942 5516996.653 0.0 568439.187 5517000.215 0.0 568448.835 5516999.52 0.0 568448.518 5516994.751 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_605117_9bb5fab9-b8a5-4c7d-8972-f54e2413e223">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_eb079cf2-c3aa-4aef-91a1-18f8f3940c1a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605117_9bb5fab9-b8a5-4c7d-8972-f54e2413e223_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605117_9bb5fab9-b8a5-4c7d-8972-f54e2413e223_poly_0_">
                      <gml:posList srsDimension="3">568433.929 5516991.029 0.0 568433.929 5516991.029 12.165999999999997 568434.348 5516996.989 12.165999999999997 568434.348 5516996.989 0.0 568433.929 5516991.029 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_605117_7264066d-f2fe-405e-9e94-0fcca4ad3e44">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d5a854c0-d9a9-48e5-9880-f31bd1f40a30">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605117_7264066d-f2fe-405e-9e94-0fcca4ad3e44_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605117_7264066d-f2fe-405e-9e94-0fcca4ad3e44_poly_0_">
                      <gml:posList srsDimension="3">568439.187 5517000.215 0.0 568439.187 5517000.215 12.165999999999997 568448.835 5516999.52 12.162999999999982 568448.835 5516999.52 0.0 568439.187 5517000.215 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_605117_2f8e4f7d-5f95-4227-b685-f7b688c44e5f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_be50a6e0-4a79-4428-961f-3dbbaf857078">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605117_2f8e4f7d-5f95-4227-b685-f7b688c44e5f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605117_2f8e4f7d-5f95-4227-b685-f7b688c44e5f_poly_0_">
                      <gml:posList srsDimension="3">568438.942 5516996.653 0.0 568438.942 5516996.653 15.413999999999987 568439.187 5517000.215 12.165999999999997 568439.187 5517000.215 0.0 568438.942 5516996.653 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_605117_15a60dc7-b19f-40ec-b882-2041fb9c7542">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_216e4390-3dc8-43fa-bfe5-d4d54b0c22fd">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605117_15a60dc7-b19f-40ec-b882-2041fb9c7542_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605117_15a60dc7-b19f-40ec-b882-2041fb9c7542_poly_0_">
                      <gml:posList srsDimension="3">568448.202 5516989.981 12.162999999999982 568448.202 5516989.981 0.0 568448.518 5516994.751 0.0 568448.835 5516999.52 0.0 568448.835 5516999.52 12.162999999999982 568448.518 5516994.751 16.512 568448.202 5516989.981 12.162999999999982</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_605117_13755344-92e4-4f10-882d-fd4a15df320b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9cb7a2ab-66ea-4220-b3e8-88c57e7ae9f7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605117_13755344-92e4-4f10-882d-fd4a15df320b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605117_13755344-92e4-4f10-882d-fd4a15df320b_poly_0_">
                      <gml:posList srsDimension="3">568437.905 5516996.728 15.413999999999987 568438.942 5516996.653 15.413999999999987 568438.942 5516996.653 0.0 568437.905 5516996.728 0.0 568434.348 5516996.989 0.0 568434.348 5516996.989 12.165999999999997 568437.905 5516996.728 15.413999999999987</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_605117_e6b3a4bc-857e-47c8-863d-086cd31bbec6">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9f6511f9-1224-42f3-99c3-af194fce15b2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605117_e6b3a4bc-857e-47c8-863d-086cd31bbec6_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605117_e6b3a4bc-857e-47c8-863d-086cd31bbec6_poly_0_">
                      <gml:posList srsDimension="3">568448.202 5516989.981 0.0 568448.202 5516989.981 12.162999999999982 568444.08 5516990.286 12.167000000000002 568444.08 5516990.286 0.0 568448.202 5516989.981 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_605117_2d9e5ef9-690d-4d61-adfe-f09f9fd4bdfd">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2f35b916-a2bf-424c-bf34-08eefbab07e5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605117_2d9e5ef9-690d-4d61-adfe-f09f9fd4bdfd_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605117_2d9e5ef9-690d-4d61-adfe-f09f9fd4bdfd_poly_0_">
                      <gml:posList srsDimension="3">568439.021 5516995.441 16.50999999999999 568437.905 5516996.728 15.413999999999987 568434.348 5516996.989 12.165999999999997 568433.929 5516991.029 12.165999999999997 568439.021 5516995.441 16.50999999999999</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_605097">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odht</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 47, 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>1951</bldg:yearOfConstruction>
      <bldg:roofType>3200</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">15.718</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_0b6cf61f-2c49-4433-b032-0c41f46fe66f">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_8e74dc0a-0c1c-40cf-952f-5988f5a77534">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605097_84181637-af21-4ae0-8cd5-a4c3ba4454f1_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605097_ef991cd2-0851-4ba7-b84c-93cd024c6541_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605097_e6541a8d-dc56-445b-b8de-003795828c19_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605097_f0a52f66-93bb-4fc0-9d72-000945ed612f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605097_3e9f75dd-5316-4807-8f3d-0f8e3adc460d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605097_2cd963bc-3c35-4d50-8d27-8d4a19b18f50_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605097_c08844b2-b3db-49c9-8eca-6139d0d623db_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605097_4e75fdec-5a48-407d-a67b-25ca0de86120_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605097_61f22f5b-d467-4293-97d7-3d95635e8f40_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605097_f0a52f66-93bb-4fc0-9d72-000945ed612f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9f147883-91fc-4d7d-a52e-48acaccdb7d8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605097_f0a52f66-93bb-4fc0-9d72-000945ed612f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605097_f0a52f66-93bb-4fc0-9d72-000945ed612f_poly_0_">
                      <gml:posList srsDimension="3">568626.235 5517014.226 10.512 568626.922 5517025.067 10.525000000000006 568626.925 5517025.104 10.490000000000009 568626.925 5517025.104 0.0 568626.922 5517025.067 0.0 568626.235 5517014.226 0.0 568626.235 5517014.226 10.512</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_605097_61f22f5b-d467-4293-97d7-3d95635e8f40">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_edd605bf-9791-46ab-9aed-cc01ee707673">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605097_61f22f5b-d467-4293-97d7-3d95635e8f40_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605097_61f22f5b-d467-4293-97d7-3d95635e8f40_poly_0_">
                      <gml:posList srsDimension="3">568645.394 5517013.049 10.518 568645.394 5517013.049 0.0 568645.731 5517018.474 0.0 568646.042 5517023.466 0.0 568646.042 5517023.466 10.933000000000021 568645.731 5517018.474 15.718000000000018 568645.394 5517013.049 10.518</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_605097_84181637-af21-4ae0-8cd5-a4c3ba4454f1">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_cad9324c-50e2-4067-bb79-813d6d6d17bc">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605097_84181637-af21-4ae0-8cd5-a4c3ba4454f1_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605097_84181637-af21-4ae0-8cd5-a4c3ba4454f1_poly_0_">
                      <gml:posList srsDimension="3">568631.999 5517019.318 15.718000000000018 568645.731 5517018.474 15.718000000000018 568646.042 5517023.466 10.933000000000021 568646.066 5517023.867 10.549000000000007 568626.925 5517025.104 10.490000000000009 568626.922 5517025.067 10.525000000000006 568631.999 5517019.318 15.718000000000018</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_605097_3e9f75dd-5316-4807-8f3d-0f8e3adc460d">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b99e9e7b-3504-4c40-b179-0dce5babc8ff">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605097_3e9f75dd-5316-4807-8f3d-0f8e3adc460d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605097_3e9f75dd-5316-4807-8f3d-0f8e3adc460d_poly_0_">
                      <gml:posList srsDimension="3">568631.999 5517019.318 15.718000000000018 568626.922 5517025.067 10.525000000000006 568626.235 5517014.226 10.512 568631.999 5517019.318 15.718000000000018</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_605097_ef991cd2-0851-4ba7-b84c-93cd024c6541">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7bd6d85e-097c-4d75-9c0c-deddfe1162cb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605097_ef991cd2-0851-4ba7-b84c-93cd024c6541_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605097_ef991cd2-0851-4ba7-b84c-93cd024c6541_poly_0_">
                      <gml:posList srsDimension="3">568646.066 5517023.867 0.0 568646.066 5517023.867 10.549000000000007 568646.042 5517023.466 10.933000000000021 568646.042 5517023.466 0.0 568646.066 5517023.867 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_605097_c08844b2-b3db-49c9-8eca-6139d0d623db">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_096c6006-a5cc-49d9-acbe-33874b8e9935">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605097_c08844b2-b3db-49c9-8eca-6139d0d623db_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605097_c08844b2-b3db-49c9-8eca-6139d0d623db_poly_0_">
                      <gml:posList srsDimension="3">568626.925 5517025.104 0.0 568626.925 5517025.104 10.490000000000009 568646.066 5517023.867 10.549000000000007 568646.066 5517023.867 0.0 568626.925 5517025.104 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_605097_2cd963bc-3c35-4d50-8d27-8d4a19b18f50">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_17b8444c-67ef-4733-8dc2-ea3c41138dda">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605097_2cd963bc-3c35-4d50-8d27-8d4a19b18f50_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605097_2cd963bc-3c35-4d50-8d27-8d4a19b18f50_poly_0_">
                      <gml:posList srsDimension="3">568646.042 5517023.466 0.0 568645.731 5517018.474 0.0 568645.394 5517013.049 0.0 568626.235 5517014.226 0.0 568626.922 5517025.067 0.0 568626.925 5517025.104 0.0 568646.066 5517023.867 0.0 568646.042 5517023.466 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_605097_e6541a8d-dc56-445b-b8de-003795828c19">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6724d79e-4efa-4834-8ce9-e09bf837f183">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605097_e6541a8d-dc56-445b-b8de-003795828c19_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605097_e6541a8d-dc56-445b-b8de-003795828c19_poly_0_">
                      <gml:posList srsDimension="3">568645.394 5517013.049 10.518 568645.731 5517018.474 15.718000000000018 568631.999 5517019.318 15.718000000000018 568626.235 5517014.226 10.512 568645.394 5517013.049 10.518</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_605097_4e75fdec-5a48-407d-a67b-25ca0de86120">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2ebf119d-b318-4b88-87ae-2b913150cf46">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605097_4e75fdec-5a48-407d-a67b-25ca0de86120_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605097_4e75fdec-5a48-407d-a67b-25ca0de86120_poly_0_">
                      <gml:posList srsDimension="3">568645.394 5517013.049 0.0 568645.394 5517013.049 10.518 568626.235 5517014.226 10.512 568626.235 5517014.226 0.0 568645.394 5517013.049 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_605042">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odbh</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 1, 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>3200</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">15.006</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_7d27b7ba-0505-4e38-9509-997bb160c972">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_ce5b41e6-c8c2-442c-866f-c33071cd716e">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605042_f1a7ae43-3141-4b9c-9d32-38a8360bc829_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605042_168d2569-72f3-4db5-bc15-db9eca1aba43_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605042_5723aa72-ad80-48ce-a750-2a0ad2ebd055_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605042_61823202-00b6-4965-82b2-0af25d480aa2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605042_2a6c183a-1031-46d1-a43d-82bbdc4cd0ad_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605042_43b3f788-6b3d-40a7-ba19-5c21b26981b2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605042_265e318a-743f-4e00-8bb3-f0a483ab1293_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605042_c12eede6-de57-497e-a845-4b4602b333df_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605042_2a6c183a-1031-46d1-a43d-82bbdc4cd0ad">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8d58a910-8986-465d-a31c-f1700b160321">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605042_2a6c183a-1031-46d1-a43d-82bbdc4cd0ad_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605042_2a6c183a-1031-46d1-a43d-82bbdc4cd0ad_poly_0_">
                      <gml:posList srsDimension="3">568365.245 5517124.394 15.006 568373.806 5517123.178 15.006 568374.543 5517128.123 9.831999999999994 568360.991 5517130.047 9.831999999999994 568365.245 5517124.394 15.006</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_605042_265e318a-743f-4e00-8bb3-f0a483ab1293">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b11b6db2-a31b-464b-a163-b806d25b2eb8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605042_265e318a-743f-4e00-8bb3-f0a483ab1293_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605042_265e318a-743f-4e00-8bb3-f0a483ab1293_poly_0_">
                      <gml:posList srsDimension="3">568373.068 5517118.235 0.0 568373.068 5517118.235 9.83499999999998 568359.596 5517120.144 9.831999999999994 568359.596 5517120.144 0.0 568373.068 5517118.235 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_605042_43b3f788-6b3d-40a7-ba19-5c21b26981b2">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_023bc045-9a55-4639-a801-71b4e44c7c3c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605042_43b3f788-6b3d-40a7-ba19-5c21b26981b2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605042_43b3f788-6b3d-40a7-ba19-5c21b26981b2_poly_0_">
                      <gml:posList srsDimension="3">568373.806 5517123.178 0.0 568373.068 5517118.235 0.0 568359.596 5517120.144 0.0 568360.991 5517130.047 0.0 568374.543 5517128.123 0.0 568373.806 5517123.178 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_605042_f1a7ae43-3141-4b9c-9d32-38a8360bc829">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3d0c3d31-f415-48a8-9992-29e9413cc508">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605042_f1a7ae43-3141-4b9c-9d32-38a8360bc829_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605042_f1a7ae43-3141-4b9c-9d32-38a8360bc829_poly_0_">
                      <gml:posList srsDimension="3">568365.245 5517124.394 15.006 568360.991 5517130.047 9.831999999999994 568359.596 5517120.144 9.831999999999994 568365.245 5517124.394 15.006</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_605042_5723aa72-ad80-48ce-a750-2a0ad2ebd055">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1bf08439-9986-46a1-9741-3f81c1a8aa7e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605042_5723aa72-ad80-48ce-a750-2a0ad2ebd055_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605042_5723aa72-ad80-48ce-a750-2a0ad2ebd055_poly_0_">
                      <gml:posList srsDimension="3">568373.068 5517118.235 9.83499999999998 568373.068 5517118.235 0.0 568373.806 5517123.178 0.0 568374.543 5517128.123 0.0 568374.543 5517128.123 9.831999999999994 568373.806 5517123.178 15.006 568373.068 5517118.235 9.83499999999998</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_605042_c12eede6-de57-497e-a845-4b4602b333df">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e32a38ce-f0e5-4477-b76d-17542765f7d6">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605042_c12eede6-de57-497e-a845-4b4602b333df_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605042_c12eede6-de57-497e-a845-4b4602b333df_poly_0_">
                      <gml:posList srsDimension="3">568373.068 5517118.235 9.83499999999998 568373.806 5517123.178 15.006 568365.245 5517124.394 15.006 568359.596 5517120.144 9.831999999999994 568373.068 5517118.235 9.83499999999998</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_605042_168d2569-72f3-4db5-bc15-db9eca1aba43">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_79f8bb8f-1319-4069-b46a-2a04a6928381">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605042_168d2569-72f3-4db5-bc15-db9eca1aba43_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605042_168d2569-72f3-4db5-bc15-db9eca1aba43_poly_0_">
                      <gml:posList srsDimension="3">568360.991 5517130.047 0.0 568360.991 5517130.047 9.831999999999994 568374.543 5517128.123 9.831999999999994 568374.543 5517128.123 0.0 568360.991 5517130.047 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_605042_61823202-00b6-4965-82b2-0af25d480aa2">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_cb1a10de-9560-44fa-be51-537f5eda2527">
              <gml:surfaceMember>
For faster browsing, not all history is shown. View entire blame