Grombühl_v4_case_study.gml 6.37 MB
Newer Older
Eric Duminil's avatar
Eric Duminil committed
41001
41002
41003
41004
41005
41006
41007
41008
41009
41010
41011
41012
41013
41014
41015
41016
41017
41018
41019
41020
41021
41022
41023
41024
41025
41026
41027
41028
41029
41030
41031
41032
41033
41034
41035
41036
41037
41038
41039
41040
41041
41042
41043
41044
41045
41046
41047
41048
41049
41050
41051
41052
41053
41054
41055
41056
41057
41058
41059
41060
41061
41062
41063
41064
41065
41066
41067
41068
41069
41070
41071
41072
41073
41074
41075
41076
41077
41078
41079
41080
41081
41082
41083
41084
41085
41086
41087
41088
41089
41090
41091
41092
41093
41094
41095
41096
41097
41098
41099
41100
41101
41102
41103
41104
41105
41106
41107
41108
41109
41110
41111
41112
41113
41114
41115
41116
41117
41118
41119
41120
41121
41122
41123
41124
41125
41126
41127
41128
41129
41130
41131
41132
41133
41134
41135
41136
41137
41138
41139
41140
41141
41142
41143
41144
41145
41146
41147
41148
41149
41150
41151
41152
41153
41154
41155
41156
41157
41158
41159
41160
41161
41162
41163
41164
41165
41166
41167
41168
41169
41170
41171
41172
41173
41174
41175
41176
41177
41178
41179
41180
41181
41182
41183
41184
41185
41186
41187
41188
41189
41190
41191
41192
41193
41194
41195
41196
41197
41198
41199
41200
41201
41202
41203
41204
41205
41206
41207
41208
41209
41210
41211
41212
41213
41214
41215
41216
41217
41218
41219
41220
41221
41222
41223
41224
41225
41226
41227
41228
41229
41230
41231
41232
41233
41234
41235
41236
41237
41238
41239
41240
41241
41242
41243
41244
41245
41246
41247
41248
41249
41250
41251
41252
41253
41254
41255
41256
41257
41258
41259
41260
41261
41262
41263
41264
41265
41266
41267
41268
41269
41270
41271
41272
41273
41274
41275
41276
41277
41278
41279
41280
41281
41282
41283
41284
41285
41286
41287
41288
41289
41290
41291
41292
41293
41294
41295
41296
41297
41298
41299
41300
41301
41302
41303
41304
41305
41306
41307
41308
41309
41310
41311
41312
41313
41314
41315
41316
41317
41318
41319
41320
41321
41322
41323
41324
41325
41326
41327
41328
41329
41330
41331
41332
41333
41334
41335
41336
41337
41338
41339
41340
41341
41342
41343
41344
41345
41346
41347
41348
41349
41350
41351
41352
41353
41354
41355
41356
41357
41358
41359
41360
41361
41362
41363
41364
41365
41366
41367
41368
41369
41370
41371
41372
41373
41374
41375
41376
41377
41378
41379
41380
41381
41382
41383
41384
41385
41386
41387
41388
41389
41390
41391
41392
41393
41394
41395
41396
41397
41398
41399
41400
41401
41402
41403
41404
41405
41406
41407
41408
41409
41410
41411
41412
41413
41414
41415
41416
41417
41418
41419
41420
41421
41422
41423
41424
41425
41426
41427
41428
41429
41430
41431
41432
41433
41434
41435
41436
41437
41438
41439
41440
41441
41442
41443
41444
41445
41446
41447
41448
41449
41450
41451
41452
41453
41454
41455
41456
41457
41458
41459
41460
41461
41462
41463
41464
41465
41466
41467
41468
41469
41470
41471
41472
41473
41474
41475
41476
41477
41478
41479
41480
41481
41482
41483
41484
41485
41486
41487
41488
41489
41490
41491
41492
41493
41494
41495
41496
41497
41498
41499
41500
41501
41502
41503
41504
41505
41506
41507
41508
41509
41510
41511
41512
41513
41514
41515
41516
41517
41518
41519
41520
41521
41522
41523
41524
41525
41526
41527
41528
41529
41530
41531
41532
41533
41534
41535
41536
41537
41538
41539
41540
41541
41542
41543
41544
41545
41546
41547
41548
41549
41550
41551
41552
41553
41554
41555
41556
41557
41558
41559
41560
41561
41562
41563
41564
41565
41566
41567
41568
41569
41570
41571
41572
41573
41574
41575
41576
41577
41578
41579
41580
41581
41582
41583
41584
41585
41586
41587
41588
41589
41590
41591
41592
41593
41594
41595
41596
41597
41598
41599
41600
41601
41602
41603
41604
41605
41606
41607
41608
41609
41610
41611
41612
41613
41614
41615
41616
41617
41618
41619
41620
41621
41622
41623
41624
41625
41626
41627
41628
41629
41630
41631
41632
41633
41634
41635
41636
41637
41638
41639
41640
41641
41642
41643
41644
41645
41646
41647
41648
41649
41650
41651
41652
41653
41654
41655
41656
41657
41658
41659
41660
41661
41662
41663
41664
41665
41666
41667
41668
41669
41670
41671
41672
41673
41674
41675
41676
41677
41678
41679
41680
41681
41682
41683
41684
41685
41686
41687
41688
41689
41690
41691
41692
41693
41694
41695
41696
41697
41698
41699
41700
41701
41702
41703
41704
41705
41706
41707
41708
41709
41710
41711
41712
41713
41714
41715
41716
41717
41718
41719
41720
41721
41722
41723
41724
41725
41726
41727
41728
41729
41730
41731
41732
41733
41734
41735
41736
41737
41738
41739
41740
41741
41742
41743
41744
41745
41746
41747
41748
41749
41750
41751
41752
41753
41754
41755
41756
41757
41758
41759
41760
41761
41762
41763
41764
41765
41766
41767
41768
41769
41770
41771
41772
41773
41774
41775
41776
41777
41778
41779
41780
41781
41782
41783
41784
41785
41786
41787
41788
41789
41790
41791
41792
41793
41794
41795
41796
41797
41798
41799
41800
41801
41802
41803
41804
41805
41806
41807
41808
41809
41810
41811
41812
41813
41814
41815
41816
41817
41818
41819
41820
41821
41822
41823
41824
41825
41826
41827
41828
41829
41830
41831
41832
41833
41834
41835
41836
41837
41838
41839
41840
41841
41842
41843
41844
41845
41846
41847
41848
41849
41850
41851
41852
41853
41854
41855
41856
41857
41858
41859
41860
41861
41862
41863
41864
41865
41866
41867
41868
41869
41870
41871
41872
41873
41874
41875
41876
41877
41878
41879
41880
41881
41882
41883
41884
41885
41886
41887
41888
41889
41890
41891
41892
41893
41894
41895
41896
41897
41898
41899
41900
41901
41902
41903
41904
41905
41906
41907
41908
41909
41910
41911
41912
41913
41914
41915
41916
41917
41918
41919
41920
41921
41922
41923
41924
41925
41926
41927
41928
41929
41930
41931
41932
41933
41934
41935
41936
41937
41938
41939
41940
41941
41942
41943
41944
41945
41946
41947
41948
41949
41950
41951
41952
41953
41954
41955
41956
41957
41958
41959
41960
41961
41962
41963
41964
41965
41966
41967
41968
41969
41970
41971
41972
41973
41974
41975
41976
41977
41978
41979
41980
41981
41982
41983
41984
41985
41986
41987
41988
41989
41990
41991
41992
41993
41994
41995
41996
41997
41998
41999
42000
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605059_997e1c60-e679-4ee7-a3d9-2d3b79e1d20f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9f37ffcc-bd9b-4cce-a330-c96222aaa883">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605059_997e1c60-e679-4ee7-a3d9-2d3b79e1d20f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605059_997e1c60-e679-4ee7-a3d9-2d3b79e1d20f_poly_0_">
                      <gml:posList srsDimension="3">568436.737 5517078.565 12.073000000000008 568432.016 5517084.88 16.486999999999995 568421.527 5517086.426 16.486999999999995 568420.718 5517080.928 12.073000000000008 568436.737 5517078.565 12.073000000000008</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_605059_4d27ddad-e8e4-4469-b02b-2a4de92285c8">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8555b68a-9a9e-4feb-80e0-5f9a860f3a9d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605059_4d27ddad-e8e4-4469-b02b-2a4de92285c8_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605059_4d27ddad-e8e4-4469-b02b-2a4de92285c8_poly_0_">
                      <gml:posList srsDimension="3">568438.235 5517089.084 0.0 568436.737 5517078.565 0.0 568420.718 5517080.928 0.0 568421.527 5517086.426 0.0 568422.337 5517091.921 0.0 568438.306 5517089.577 0.0 568438.235 5517089.084 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
    </bldg:Building>
  </cityObjectMember><cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_605085">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9oebH</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 26, 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>1920</bldg:yearOfConstruction>
      <bldg:roofType>3400</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">18.35</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_6aca1c6e-677d-45f2-87ab-3f594b4a73be">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_e871af47-04e0-4005-8882-cb31315275ea">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605085_7233e8dc-2d05-4deb-87f2-ad09d149f0b9_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605085_2496c2c7-4962-49cf-943e-8f234f54c11f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605085_c0f6873b-44f9-4bf2-9ec0-2c7b2d1d0246_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605085_de1ce399-87b3-4374-b5a8-d7714e7129b0_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605085_ea6d2fb0-571c-42ef-a6f3-0957f5a49e4f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605085_7198b461-39ed-41fe-974d-5c23a2ffc81a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605085_3c1265c7-4ce5-4228-b130-026d4e76f40f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605085_fd7ac9c6-d9ec-4d70-9169-8451e7c42036_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605085_ca377f49-b1ba-4b48-a419-4dd50491cb71_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605085_fb9d2dc3-dd5e-452c-b82e-a42b159c598b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605085_ca8a0a8d-769e-4988-abd7-9214294b4524_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605085_cbee01ab-7aee-4a1f-b4cd-ae343094b72f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605085_266a81ff-ac13-4753-924d-48479cacded1_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605085_f2271751-ea12-4323-8582-17daf6087999_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605085_55cdea02-33e5-4671-afff-a00f078baa09_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605085_6c36b385-a101-45c4-9e94-447a5eba896d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605085_9665700a-8248-4aa1-83ca-921bd543c315_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605085_81d84929-5353-4a5d-89de-c3bd8501499a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605085_536cd19a-8c69-445a-9e4a-60a7a14e3e4c_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605085_fb9d2dc3-dd5e-452c-b82e-a42b159c598b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_627d7a14-0209-40d9-84b0-c5061dbc9779">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605085_fb9d2dc3-dd5e-452c-b82e-a42b159c598b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605085_fb9d2dc3-dd5e-452c-b82e-a42b159c598b_poly_0_">
                      <gml:posList srsDimension="3">568580.063 5517069.319 0.0 568580.063 5517069.319 11.632999999999981 568580.056 5517069.259 11.781999999999982 568580.056 5517069.259 0.0 568580.063 5517069.319 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_605085_ca377f49-b1ba-4b48-a419-4dd50491cb71">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7785ae17-eded-4cd2-9698-d013324114c3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605085_ca377f49-b1ba-4b48-a419-4dd50491cb71_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605085_ca377f49-b1ba-4b48-a419-4dd50491cb71_poly_0_">
                      <gml:posList srsDimension="3">568586.007 5517058.164 11.536999999999978 568586.007 5517058.164 0.0 568586.042 5517058.367 0.0 568587.433 5517066.494 0.0 568587.713 5517068.133 0.0 568587.713 5517068.133 11.402999999999992 568587.433 5517066.494 11.509999999999991 568586.042 5517058.367 12.042000000000002 568586.007 5517058.164 11.536999999999978</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_605085_ca8a0a8d-769e-4988-abd7-9214294b4524">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_48a97707-98a9-409f-af6b-61e46fe4b532">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605085_ca8a0a8d-769e-4988-abd7-9214294b4524_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605085_ca8a0a8d-769e-4988-abd7-9214294b4524_poly_0_">
                      <gml:posList srsDimension="3">568585.38 5517059.255 13.95999999999998 568586.555 5517067.407 13.95999999999998 568582.129 5517063.894 18.25999999999999 568585.38 5517059.255 13.95999999999998</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_605085_3c1265c7-4ce5-4228-b130-026d4e76f40f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ce0ac272-71de-45bd-b3a1-22dcc2703a8c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605085_3c1265c7-4ce5-4228-b130-026d4e76f40f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605085_3c1265c7-4ce5-4228-b130-026d4e76f40f_poly_0_">
                      <gml:posList srsDimension="3">568586.007 5517058.164 0.0 568586.007 5517058.164 11.536999999999978 568579.99 5517059.044 11.531999999999982 568579.99 5517059.044 0.0 568586.007 5517058.164 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_605085_9665700a-8248-4aa1-83ca-921bd543c315">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4b2a89ee-15d1-4495-903f-c235b767a300">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605085_9665700a-8248-4aa1-83ca-921bd543c315_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605085_9665700a-8248-4aa1-83ca-921bd543c315_poly_0_">
                      <gml:posList srsDimension="3">568587.433 5517066.494 0.0 568586.042 5517058.367 0.0 568586.007 5517058.164 0.0 568579.99 5517059.044 0.0 568579.92 5517058.541 0.0 568574.065 5517059.399 0.0 568574.135 5517059.902 0.0 568570.664 5517060.403 0.0 568570.807 5517061.392 0.0 568571.393 5517065.469 0.0 568571.981 5517069.546 0.0 568572.107 5517070.423 0.0 568577.188 5517069.675 0.0 568577.196 5517069.735 0.0 568580.063 5517069.319 0.0 568580.056 5517069.259 0.0 568587.558 5517068.156 0.0 568587.67 5517068.14 0.0 568587.713 5517068.133 0.0 568587.433 5517066.494 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_605085_536cd19a-8c69-445a-9e4a-60a7a14e3e4c">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2c50c568-e4a0-4b09-b5a8-d0fe3d24894c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605085_536cd19a-8c69-445a-9e4a-60a7a14e3e4c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605085_536cd19a-8c69-445a-9e4a-60a7a14e3e4c_poly_0_">
                      <gml:posList srsDimension="3">568579.99 5517059.044 0.0 568579.99 5517059.044 11.531999999999982 568579.92 5517058.541 10.287999999999982 568579.92 5517058.541 0.0 568579.99 5517059.044 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_605085_81d84929-5353-4a5d-89de-c3bd8501499a">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fb36b50f-6a9d-416f-8dc8-fe4f9ea63f52">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605085_81d84929-5353-4a5d-89de-c3bd8501499a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605085_81d84929-5353-4a5d-89de-c3bd8501499a_poly_0_">
                      <gml:posList srsDimension="3">568572.107 5517070.423 0.0 568572.107 5517070.423 11.786999999999978 568577.188 5517069.675 11.792999999999978 568577.188 5517069.675 0.0 568572.107 5517070.423 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_605085_fd7ac9c6-d9ec-4d70-9169-8451e7c42036">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_15b5fa18-6e58-46bd-b1c2-394c4d782143">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605085_fd7ac9c6-d9ec-4d70-9169-8451e7c42036_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605085_fd7ac9c6-d9ec-4d70-9169-8451e7c42036_poly_0_">
                      <gml:posList srsDimension="3">568574.065 5517059.399 0.0 568574.065 5517059.399 10.282999999999987 568574.135 5517059.902 11.527999999999992 568574.135 5517059.902 0.0 568574.065 5517059.399 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_605085_55cdea02-33e5-4671-afff-a00f078baa09">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_bd0db609-0cc2-436f-b146-eb6cffed9922">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605085_55cdea02-33e5-4671-afff-a00f078baa09_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605085_55cdea02-33e5-4671-afff-a00f078baa09_poly_0_">
                      <gml:posList srsDimension="3">568574.135 5517059.902 0.0 568574.135 5517059.902 11.527999999999992 568570.664 5517060.403 11.509999999999991 568570.664 5517060.403 0.0 568574.135 5517059.902 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_605085_de1ce399-87b3-4374-b5a8-d7714e7129b0">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6c04d95c-763a-4732-b806-bdaa9390372c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605085_de1ce399-87b3-4374-b5a8-d7714e7129b0_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605085_de1ce399-87b3-4374-b5a8-d7714e7129b0_poly_0_">
                      <gml:posList srsDimension="3">568574.135 5517059.902 11.527999999999992 568574.065 5517059.399 10.282999999999987 568579.92 5517058.541 10.287999999999982 568579.99 5517059.044 11.531999999999982 568586.007 5517058.164 11.536999999999978 568586.042 5517058.367 12.042000000000002 568585.38 5517059.255 13.95999999999998 568570.807 5517061.392 13.95999999999998 568570.664 5517060.403 11.509999999999991 568574.135 5517059.902 11.527999999999992</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_605085_7198b461-39ed-41fe-974d-5c23a2ffc81a">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_40e83b5d-814f-46fb-a248-cc8ceca575fd">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605085_7198b461-39ed-41fe-974d-5c23a2ffc81a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605085_7198b461-39ed-41fe-974d-5c23a2ffc81a_poly_0_">
                      <gml:posList srsDimension="3">568570.664 5517060.403 11.509999999999991 568570.807 5517061.392 13.95999999999998 568571.393 5517065.469 18.25999999999999 568571.981 5517069.546 13.95999999999998 568572.107 5517070.423 11.786999999999978 568572.107 5517070.423 0.0 568571.981 5517069.546 0.0 568571.393 5517065.469 0.0 568570.807 5517061.392 0.0 568570.664 5517060.403 0.0 568570.664 5517060.403 11.509999999999991</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_605085_ea6d2fb0-571c-42ef-a6f3-0957f5a49e4f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c62d84a3-f48f-4f69-8abb-d5e07b3e5a43">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605085_ea6d2fb0-571c-42ef-a6f3-0957f5a49e4f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605085_ea6d2fb0-571c-42ef-a6f3-0957f5a49e4f_poly_0_">
                      <gml:posList srsDimension="3">568585.38 5517059.255 13.95999999999998 568582.129 5517063.894 18.25999999999999 568571.393 5517065.469 18.25999999999999 568570.807 5517061.392 13.95999999999998 568585.38 5517059.255 13.95999999999998</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_605085_6c36b385-a101-45c4-9e94-447a5eba896d">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_79d05895-1206-4369-bd24-f04e4f07fba9">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605085_6c36b385-a101-45c4-9e94-447a5eba896d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605085_6c36b385-a101-45c4-9e94-447a5eba896d_poly_0_">
                      <gml:posList srsDimension="3">568577.188 5517069.675 0.0 568577.188 5517069.675 11.792999999999978 568577.196 5517069.735 11.643999999999977 568577.196 5517069.735 0.0 568577.188 5517069.675 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605085_cbee01ab-7aee-4a1f-b4cd-ae343094b72f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_84189b17-8ffe-4ab8-a576-b5e1449b15c6">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605085_cbee01ab-7aee-4a1f-b4cd-ae343094b72f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605085_cbee01ab-7aee-4a1f-b4cd-ae343094b72f_poly_0_">
                      <gml:posList srsDimension="3">568587.558 5517068.156 11.786999999999978 568587.67 5517068.14 11.509999999999991 568587.713 5517068.133 11.402999999999992 568587.713 5517068.133 0.0 568587.67 5517068.14 0.0 568587.558 5517068.156 0.0 568580.056 5517069.259 0.0 568580.056 5517069.259 11.781999999999982 568587.558 5517068.156 11.786999999999978</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_605085_2496c2c7-4962-49cf-943e-8f234f54c11f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3a37b505-384b-443b-9c72-1f7fd62ef377">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605085_2496c2c7-4962-49cf-943e-8f234f54c11f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605085_2496c2c7-4962-49cf-943e-8f234f54c11f_poly_0_">
                      <gml:posList srsDimension="3">568579.92 5517058.541 0.0 568579.92 5517058.541 10.287999999999982 568574.065 5517059.399 10.282999999999987 568574.065 5517059.399 0.0 568579.92 5517058.541 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_605085_7233e8dc-2d05-4deb-87f2-ad09d149f0b9">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_37a6cb9b-a41b-4f50-973a-2579515f4a64">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605085_7233e8dc-2d05-4deb-87f2-ad09d149f0b9_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605085_7233e8dc-2d05-4deb-87f2-ad09d149f0b9_poly_0_">
                      <gml:posList srsDimension="3">568586.042 5517058.367 12.042000000000002 568587.433 5517066.494 11.509999999999991 568587.713 5517068.133 11.402999999999992 568587.67 5517068.14 11.509999999999991 568587.558 5517068.156 11.786999999999978 568586.555 5517067.407 13.95999999999998 568585.38 5517059.255 13.95999999999998 568586.042 5517058.367 12.042000000000002</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_605085_c0f6873b-44f9-4bf2-9ec0-2c7b2d1d0246">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fd47aa2e-375c-4067-a6b3-a58b926dd814">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605085_c0f6873b-44f9-4bf2-9ec0-2c7b2d1d0246_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605085_c0f6873b-44f9-4bf2-9ec0-2c7b2d1d0246_poly_0_">
                      <gml:posList srsDimension="3">568577.196 5517069.735 0.0 568577.196 5517069.735 11.643999999999977 568580.063 5517069.319 11.632999999999981 568580.063 5517069.319 0.0 568577.196 5517069.735 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_605085_f2271751-ea12-4323-8582-17daf6087999">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7255df1b-69c3-44a9-9e51-180955a9372d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605085_f2271751-ea12-4323-8582-17daf6087999_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605085_f2271751-ea12-4323-8582-17daf6087999_poly_0_">
                      <gml:posList srsDimension="3">568586.555 5517067.407 13.95999999999998 568587.558 5517068.156 11.786999999999978 568580.056 5517069.259 11.781999999999982 568580.063 5517069.319 11.632999999999981 568577.196 5517069.735 11.643999999999977 568577.188 5517069.675 11.792999999999978 568572.107 5517070.423 11.786999999999978 568571.981 5517069.546 13.95999999999998 568586.555 5517067.407 13.95999999999998</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_605085_266a81ff-ac13-4753-924d-48479cacded1">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_79bc65ad-a8ad-4455-81d2-21361e9e419a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605085_266a81ff-ac13-4753-924d-48479cacded1_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605085_266a81ff-ac13-4753-924d-48479cacded1_poly_0_">
                      <gml:posList srsDimension="3">568582.129 5517063.894 18.25999999999999 568586.555 5517067.407 13.95999999999998 568571.981 5517069.546 13.95999999999998 568571.393 5517065.469 18.25999999999999 568582.129 5517063.894 18.25999999999999</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_605838">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9pI9T</name>
        </externalObject>
      </externalReference>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2019-09-25</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_2000</bldg:function>
      <bldg:roofType>2100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">4.455</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_b8fc9c17-8418-4513-b506-24c52887971c">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_06d0af8b-8ce1-4f0c-8bbe-a073e8173205">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605838_81ee2a95-fa81-478c-abb1-2c73c0a615ad_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605838_e075d4ae-ae4a-4425-bde0-7c89dfc9975c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605838_4e6a8f83-714e-4241-a364-5c1a8a52b075_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605838_59194cd8-4cbf-42c4-bf1b-25f6ddbf3cfe_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605838_4372de8b-4317-48bf-9177-260a00d1c20c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605838_2d7319b2-ef8d-43f9-a25d-4e83c04feb64_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605838_e7af7a40-3f21-4f05-9757-b0148578446b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605838_80d12925-4409-4751-94f3-2d534b457333_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605838_9172de83-e3a3-438c-9d90-8ec1dbd6f135_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605838_2d7319b2-ef8d-43f9-a25d-4e83c04feb64">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_901a6c17-ec48-43fc-8771-0b525a62e7e8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605838_2d7319b2-ef8d-43f9-a25d-4e83c04feb64_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605838_2d7319b2-ef8d-43f9-a25d-4e83c04feb64_poly_0_">
                      <gml:posList srsDimension="3">568172.171 5517066.879 4.409999999999997 568173.658 5517066.708 4.193000000000012 568177.9 5517066.216 3.5759999999999934 568178.697 5517071.763 3.569999999999993 568172.982 5517072.565 4.405000000000001 568172.64 5517072.612 4.4550000000000125 568171.864 5517066.952 4.4550000000000125 568171.859 5517066.916 4.4550000000000125 568172.171 5517066.879 4.409999999999997</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_605838_4372de8b-4317-48bf-9177-260a00d1c20c">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b4de80f1-0bc7-4ee3-a109-baa52f8c4336">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605838_4372de8b-4317-48bf-9177-260a00d1c20c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605838_4372de8b-4317-48bf-9177-260a00d1c20c_poly_0_">
                      <gml:posList srsDimension="3">568172.982 5517072.565 0.0 568172.982 5517072.565 4.405000000000001 568178.697 5517071.763 3.569999999999993 568178.697 5517071.763 0.0 568172.982 5517072.565 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_605838_81ee2a95-fa81-478c-abb1-2c73c0a615ad">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_bbcc1259-fe07-4f83-9bfb-c0d3180ed49f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605838_81ee2a95-fa81-478c-abb1-2c73c0a615ad_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605838_81ee2a95-fa81-478c-abb1-2c73c0a615ad_poly_0_">
                      <gml:posList srsDimension="3">568171.859 5517066.916 4.4550000000000125 568171.864 5517066.952 4.4550000000000125 568172.64 5517072.612 4.4550000000000125 568172.64 5517072.612 0.0 568171.864 5517066.952 0.0 568171.859 5517066.916 0.0 568171.859 5517066.916 4.4550000000000125</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_605838_e7af7a40-3f21-4f05-9757-b0148578446b">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d3ae5171-bdbf-4787-b92e-1639cb1a40cd">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605838_e7af7a40-3f21-4f05-9757-b0148578446b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605838_e7af7a40-3f21-4f05-9757-b0148578446b_poly_0_">
                      <gml:posList srsDimension="3">568172.64 5517072.612 0.0 568172.64 5517072.612 4.4550000000000125 568172.982 5517072.565 4.405000000000001 568172.982 5517072.565 0.0 568172.64 5517072.612 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_605838_9172de83-e3a3-438c-9d90-8ec1dbd6f135">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_35246434-3deb-4162-8881-be77feae915b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605838_9172de83-e3a3-438c-9d90-8ec1dbd6f135_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605838_9172de83-e3a3-438c-9d90-8ec1dbd6f135_poly_0_">
                      <gml:posList srsDimension="3">568173.658 5517066.708 0.0 568173.658 5517066.708 4.193000000000012 568172.171 5517066.879 4.409999999999997 568172.171 5517066.879 0.0 568173.658 5517066.708 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_605838_4e6a8f83-714e-4241-a364-5c1a8a52b075">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d26cd993-d725-4066-b766-f3327dd12cfb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605838_4e6a8f83-714e-4241-a364-5c1a8a52b075_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605838_4e6a8f83-714e-4241-a364-5c1a8a52b075_poly_0_">
                      <gml:posList srsDimension="3">568172.171 5517066.879 0.0 568172.171 5517066.879 4.409999999999997 568171.859 5517066.916 4.4550000000000125 568171.859 5517066.916 0.0 568172.171 5517066.879 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_605838_e075d4ae-ae4a-4425-bde0-7c89dfc9975c">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9293584e-57c3-455e-8986-94c19512b078">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605838_e075d4ae-ae4a-4425-bde0-7c89dfc9975c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605838_e075d4ae-ae4a-4425-bde0-7c89dfc9975c_poly_0_">
                      <gml:posList srsDimension="3">568178.697 5517071.763 0.0 568178.697 5517071.763 3.569999999999993 568177.9 5517066.216 3.5759999999999934 568177.9 5517066.216 0.0 568178.697 5517071.763 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_605838_80d12925-4409-4751-94f3-2d534b457333">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_584aa90f-da24-4e2c-91ce-2e94aadc7eb5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605838_80d12925-4409-4751-94f3-2d534b457333_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605838_80d12925-4409-4751-94f3-2d534b457333_poly_0_">
                      <gml:posList srsDimension="3">568177.9 5517066.216 0.0 568173.658 5517066.708 0.0 568172.171 5517066.879 0.0 568171.859 5517066.916 0.0 568171.864 5517066.952 0.0 568172.64 5517072.612 0.0 568172.982 5517072.565 0.0 568178.697 5517071.763 0.0 568177.9 5517066.216 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_605838_59194cd8-4cbf-42c4-bf1b-25f6ddbf3cfe">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_42a36a3a-1a70-4971-82af-509448bd7953">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605838_59194cd8-4cbf-42c4-bf1b-25f6ddbf3cfe_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605838_59194cd8-4cbf-42c4-bf1b-25f6ddbf3cfe_poly_0_">
                      <gml:posList srsDimension="3">568177.9 5517066.216 0.0 568177.9 5517066.216 3.5759999999999934 568173.658 5517066.708 4.193000000000012 568173.658 5517066.708 0.0 568177.9 5517066.216 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_605145">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9pJaH</name>
        </externalObject>
      </externalReference>
      <gen:stringAttribute name="comment">
        <gen:value>CityGML from BKG LoD2_32_56[68]_5516_2_BY.xml, with yearOfConstruction from Stadt_Würzburg_Wohngebäude_Baujahr_Untersuchungsgebiet.xlsx, 2023-02-22</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="address">
        <gen:value>Scharoldstraße 2, 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_9998</bldg:function>
      <bldg:yearOfConstruction>1950</bldg:yearOfConstruction>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">16.55</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_83b12a7f-223b-42a0-9be1-e04a436849d0">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_158d63e8-aaff-4af5-a147-30f29e9f4af1">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_97a9ce00-7af5-4775-a103-386736dc9e81_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_a3366e82-5364-4f3d-ab55-f0d8efabc69e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_d20adefe-37fc-42d8-96f0-6a97fb6af506_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_e11d538e-f3b9-4738-805b-aea704a7cd62_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_7048e918-4d29-46af-a3a4-ba5368eb7bec_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_57467f16-a69b-4606-8f38-6c45f87c1caf_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_14bb806f-a78d-45f7-b8bd-a4a85e90925d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_555f4eb2-05c8-4610-bf0e-1bc6403b1f8f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_79edb879-7bed-48f3-98e7-fb88120d6bba_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_9ac8c19b-2249-494b-9228-923a9f272690_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_3724ea86-3d14-4ff2-891e-e2cbf16ca027_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_e2c6fe8a-a80a-4a71-905f-399e13b27d8f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_01431868-3325-4910-9cbc-8407f586437c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_980a1459-0981-47b6-88a1-fc8be6981684_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_45ef6dbe-8ece-419a-9051-eb6f4c543de5_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_d8d326bd-f101-4e59-9446-1278e37dd1f1_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_5da5c09c-b5f4-4692-8296-0e85956555d2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_0ba79173-b82a-4bb9-8b71-a5a63a3f49c1_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_2269cd15-d274-4acc-a105-7df324b09907_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_a287ea66-ddfb-41ed-b09f-f9c444fb887f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_e0a152fc-180d-464b-88d3-264a537a61eb_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_9721f7f7-fc00-435e-8323-6d48988e2742_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_f40a7dfd-9d65-4180-a8aa-6df16d17c684_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_b99dab0c-7d3a-4f74-806d-0503c8c6f5e3_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_063d7d61-f935-482a-b211-bfdec7d30841_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_af9cb81e-bbbf-4470-8984-2cca1e4f30c5_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605145_9c71ebd6-4c4a-4750-a239-7ee5ac0cb251_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605145_2269cd15-d274-4acc-a105-7df324b09907">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c83682f4-92a6-4460-9b52-ae680781830c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_2269cd15-d274-4acc-a105-7df324b09907_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_2269cd15-d274-4acc-a105-7df324b09907_poly_0_">
                      <gml:posList srsDimension="3">568253.294 5517074.115 0.0 568253.332 5517074.126 0.0 568255.23 5517074.713 0.0 568255.23 5517074.713 12.02000000000001 568253.332 5517074.126 12.02000000000001 568253.332 5517074.126 12.420000000000016 568253.294 5517074.115 12.443000000000012 568253.294 5517074.115 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_605145_0ba79173-b82a-4bb9-8b71-a5a63a3f49c1">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_01ad26da-700f-4a4a-bb33-0e2c2f2effe0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_0ba79173-b82a-4bb9-8b71-a5a63a3f49c1_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_0ba79173-b82a-4bb9-8b71-a5a63a3f49c1_poly_0_">
                      <gml:posList srsDimension="3">568253.356 5517075.653 12.02000000000001 568253.356 5517075.653 12.420000000000016 568253.332 5517074.126 12.420000000000016 568253.332 5517074.126 12.02000000000001 568253.356 5517075.653 12.02000000000001</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_605145_e0a152fc-180d-464b-88d3-264a537a61eb">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7e33d9a2-7e2a-4dc4-b738-86640d6c4d78">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_e0a152fc-180d-464b-88d3-264a537a61eb_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_e0a152fc-180d-464b-88d3-264a537a61eb_poly_0_">
                      <gml:posList srsDimension="3">568242.387 5517083.989 12.420000000000016 568242.48 5517084.018 12.457000000000022 568245.37 5517084.909 12.466000000000008 568245.37 5517084.909 0.0 568242.48 5517084.018 0.0 568242.387 5517083.989 0.0 568242.387 5517083.989 12.420000000000016</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_605145_a287ea66-ddfb-41ed-b09f-f9c444fb887f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1c11aa6f-f65c-46a3-863c-552b14bd3ce1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_a287ea66-ddfb-41ed-b09f-f9c444fb887f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_a287ea66-ddfb-41ed-b09f-f9c444fb887f_poly_0_">
                      <gml:posList srsDimension="3">568258.935 5517077.552 12.52800000000002 568258.935 5517077.552 0.0 568257.295 5517082.795 0.0 568255.687 5517087.935 0.0 568255.687 5517087.935 12.608000000000004 568257.295 5517082.795 16.548000000000002 568258.935 5517077.552 12.52800000000002</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_605145_45ef6dbe-8ece-419a-9051-eb6f4c543de5">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7033a3ba-5152-48ad-858b-3464a5f844db">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_45ef6dbe-8ece-419a-9051-eb6f4c543de5_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_45ef6dbe-8ece-419a-9051-eb6f4c543de5_poly_0_">
                      <gml:posList srsDimension="3">568254.748 5517076.088 12.42100000000002 568254.748 5517076.088 12.02000000000001 568255.23 5517074.713 12.02000000000001 568255.23 5517074.713 0.0 568254.748 5517076.088 0.0 568254.687 5517076.261 0.0 568254.687 5517076.261 12.555000000000007 568254.748 5517076.088 12.42100000000002</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_605145_d8d326bd-f101-4e59-9446-1278e37dd1f1">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b63d5fcc-3617-4be0-be3f-ac66fda4b761">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_d8d326bd-f101-4e59-9446-1278e37dd1f1_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_d8d326bd-f101-4e59-9446-1278e37dd1f1_poly_0_">
                      <gml:posList srsDimension="3">568246.185 5517068.635 0.0 568246.185 5517068.635 12.504000000000019 568246.179 5517068.555 12.454000000000008 568246.179 5517068.555 0.0 568246.185 5517068.635 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_605145_5da5c09c-b5f4-4692-8296-0e85956555d2">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_236ab68d-748c-4c10-8899-118c3a900b9a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_5da5c09c-b5f4-4692-8296-0e85956555d2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_5da5c09c-b5f4-4692-8296-0e85956555d2_poly_0_">
                      <gml:posList srsDimension="3">568240.318 5517078.023 0.0 568240.318 5517078.023 12.54000000000002 568240.177 5517078.028 12.453000000000003 568240.177 5517078.028 0.0 568240.318 5517078.023 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_605145_9c71ebd6-4c4a-4750-a239-7ee5ac0cb251">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7555a24a-4600-45d2-8871-3c292e7bb4d8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_9c71ebd6-4c4a-4750-a239-7ee5ac0cb251_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_9c71ebd6-4c4a-4750-a239-7ee5ac0cb251_poly_0_">
                      <gml:posList srsDimension="3">568254.748 5517076.088 12.02000000000001 568254.748 5517076.088 12.42100000000002 568253.356 5517075.653 12.420000000000016 568253.356 5517075.653 12.02000000000001 568254.748 5517076.088 12.02000000000001</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_605145_97a9ce00-7af5-4775-a103-386736dc9e81">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6b50165b-ec2d-4412-9a05-ecb16bba2680">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_97a9ce00-7af5-4775-a103-386736dc9e81_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_97a9ce00-7af5-4775-a103-386736dc9e81_poly_0_">
                      <gml:posList srsDimension="3">568258.935 5517077.552 0.0 568258.935 5517077.552 12.52800000000002 568254.687 5517076.261 12.555000000000007 568254.687 5517076.261 0.0 568258.935 5517077.552 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_605145_af9cb81e-bbbf-4470-8984-2cca1e4f30c5">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c3ba65a8-60e6-4936-a990-a877b8339114">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_af9cb81e-bbbf-4470-8984-2cca1e4f30c5_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_af9cb81e-bbbf-4470-8984-2cca1e4f30c5_poly_0_">
                      <gml:posList srsDimension="3">568246.784 5517079.506 16.55000000000001 568242.48 5517084.018 12.457000000000022 568242.387 5517083.989 12.420000000000016 568240.231 5517081.171 12.449000000000012 568240.23 5517081.158 12.454000000000008 568246.784 5517079.506 16.55000000000001</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_605145_d20adefe-37fc-42d8-96f0-6a97fb6af506">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_910a851f-7231-46e4-a027-3aa6c0c60a64">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_d20adefe-37fc-42d8-96f0-6a97fb6af506_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_d20adefe-37fc-42d8-96f0-6a97fb6af506_poly_0_">
                      <gml:posList srsDimension="3">568245.37 5517084.909 0.0 568245.37 5517084.909 12.466000000000008 568245.428 5517084.712 12.617000000000019 568245.428 5517084.712 0.0 568245.37 5517084.909 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_605145_a3366e82-5364-4f3d-ab55-f0d8efabc69e">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_bba6ab99-4058-4305-9369-8b8a95e2beb3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_a3366e82-5364-4f3d-ab55-f0d8efabc69e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_a3366e82-5364-4f3d-ab55-f0d8efabc69e_poly_0_">
                      <gml:posList srsDimension="3">568240.177 5517078.028 12.453000000000003 568240.23 5517081.158 12.454000000000008 568240.231 5517081.171 12.449000000000012 568240.231 5517081.171 0.0 568240.23 5517081.158 0.0 568240.177 5517078.028 0.0 568240.177 5517078.028 12.453000000000003</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_605145_f40a7dfd-9d65-4180-a8aa-6df16d17c684">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5bdcec86-d64f-4d91-87e4-5513e9a0af4f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_f40a7dfd-9d65-4180-a8aa-6df16d17c684_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_f40a7dfd-9d65-4180-a8aa-6df16d17c684_poly_0_">
                      <gml:posList srsDimension="3">568240.089 5517072.781 0.0 568240.089 5517072.781 12.451000000000022 568240.229 5517072.777 12.538000000000011 568240.229 5517072.777 0.0 568240.089 5517072.781 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_605145_9721f7f7-fc00-435e-8323-6d48988e2742">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8d8c7631-e303-4420-ab54-05cd4caad8f5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_9721f7f7-fc00-435e-8323-6d48988e2742_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_9721f7f7-fc00-435e-8323-6d48988e2742_poly_0_">
                      <gml:posList srsDimension="3">568253.109 5517068.522 0.0 568253.239 5517068.52 0.0 568253.239 5517068.52 12.420000000000016 568253.109 5517068.522 12.501000000000005 568246.185 5517068.635 12.504000000000019 568246.185 5517068.635 0.0 568253.109 5517068.522 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_605145_063d7d61-f935-482a-b211-bfdec7d30841">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9906a900-e2fa-4493-98db-a71b04323994">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_063d7d61-f935-482a-b211-bfdec7d30841_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_063d7d61-f935-482a-b211-bfdec7d30841_poly_0_">
                      <gml:posList srsDimension="3">568246.179 5517068.555 12.454000000000008 568246.185 5517068.635 12.504000000000019 568253.109 5517068.522 12.501000000000005 568246.713 5517075.127 16.55000000000001 568240.025 5517068.647 12.454000000000008 568246.179 5517068.555 12.454000000000008</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_605145_b99dab0c-7d3a-4f74-806d-0503c8c6f5e3">
For faster browsing, not all history is shown. View entire blame