Grombühl_v4_case_study.gml 6.37 MB
Newer Older
Eric Duminil's avatar
Eric Duminil committed
28001
28002
28003
28004
28005
28006
28007
28008
28009
28010
28011
28012
28013
28014
28015
28016
28017
28018
28019
28020
28021
28022
28023
28024
28025
28026
28027
28028
28029
28030
28031
28032
28033
28034
28035
28036
28037
28038
28039
28040
28041
28042
28043
28044
28045
28046
28047
28048
28049
28050
28051
28052
28053
28054
28055
28056
28057
28058
28059
28060
28061
28062
28063
28064
28065
28066
28067
28068
28069
28070
28071
28072
28073
28074
28075
28076
28077
28078
28079
28080
28081
28082
28083
28084
28085
28086
28087
28088
28089
28090
28091
28092
28093
28094
28095
28096
28097
28098
28099
28100
28101
28102
28103
28104
28105
28106
28107
28108
28109
28110
28111
28112
28113
28114
28115
28116
28117
28118
28119
28120
28121
28122
28123
28124
28125
28126
28127
28128
28129
28130
28131
28132
28133
28134
28135
28136
28137
28138
28139
28140
28141
28142
28143
28144
28145
28146
28147
28148
28149
28150
28151
28152
28153
28154
28155
28156
28157
28158
28159
28160
28161
28162
28163
28164
28165
28166
28167
28168
28169
28170
28171
28172
28173
28174
28175
28176
28177
28178
28179
28180
28181
28182
28183
28184
28185
28186
28187
28188
28189
28190
28191
28192
28193
28194
28195
28196
28197
28198
28199
28200
28201
28202
28203
28204
28205
28206
28207
28208
28209
28210
28211
28212
28213
28214
28215
28216
28217
28218
28219
28220
28221
28222
28223
28224
28225
28226
28227
28228
28229
28230
28231
28232
28233
28234
28235
28236
28237
28238
28239
28240
28241
28242
28243
28244
28245
28246
28247
28248
28249
28250
28251
28252
28253
28254
28255
28256
28257
28258
28259
28260
28261
28262
28263
28264
28265
28266
28267
28268
28269
28270
28271
28272
28273
28274
28275
28276
28277
28278
28279
28280
28281
28282
28283
28284
28285
28286
28287
28288
28289
28290
28291
28292
28293
28294
28295
28296
28297
28298
28299
28300
28301
28302
28303
28304
28305
28306
28307
28308
28309
28310
28311
28312
28313
28314
28315
28316
28317
28318
28319
28320
28321
28322
28323
28324
28325
28326
28327
28328
28329
28330
28331
28332
28333
28334
28335
28336
28337
28338
28339
28340
28341
28342
28343
28344
28345
28346
28347
28348
28349
28350
28351
28352
28353
28354
28355
28356
28357
28358
28359
28360
28361
28362
28363
28364
28365
28366
28367
28368
28369
28370
28371
28372
28373
28374
28375
28376
28377
28378
28379
28380
28381
28382
28383
28384
28385
28386
28387
28388
28389
28390
28391
28392
28393
28394
28395
28396
28397
28398
28399
28400
28401
28402
28403
28404
28405
28406
28407
28408
28409
28410
28411
28412
28413
28414
28415
28416
28417
28418
28419
28420
28421
28422
28423
28424
28425
28426
28427
28428
28429
28430
28431
28432
28433
28434
28435
28436
28437
28438
28439
28440
28441
28442
28443
28444
28445
28446
28447
28448
28449
28450
28451
28452
28453
28454
28455
28456
28457
28458
28459
28460
28461
28462
28463
28464
28465
28466
28467
28468
28469
28470
28471
28472
28473
28474
28475
28476
28477
28478
28479
28480
28481
28482
28483
28484
28485
28486
28487
28488
28489
28490
28491
28492
28493
28494
28495
28496
28497
28498
28499
28500
28501
28502
28503
28504
28505
28506
28507
28508
28509
28510
28511
28512
28513
28514
28515
28516
28517
28518
28519
28520
28521
28522
28523
28524
28525
28526
28527
28528
28529
28530
28531
28532
28533
28534
28535
28536
28537
28538
28539
28540
28541
28542
28543
28544
28545
28546
28547
28548
28549
28550
28551
28552
28553
28554
28555
28556
28557
28558
28559
28560
28561
28562
28563
28564
28565
28566
28567
28568
28569
28570
28571
28572
28573
28574
28575
28576
28577
28578
28579
28580
28581
28582
28583
28584
28585
28586
28587
28588
28589
28590
28591
28592
28593
28594
28595
28596
28597
28598
28599
28600
28601
28602
28603
28604
28605
28606
28607
28608
28609
28610
28611
28612
28613
28614
28615
28616
28617
28618
28619
28620
28621
28622
28623
28624
28625
28626
28627
28628
28629
28630
28631
28632
28633
28634
28635
28636
28637
28638
28639
28640
28641
28642
28643
28644
28645
28646
28647
28648
28649
28650
28651
28652
28653
28654
28655
28656
28657
28658
28659
28660
28661
28662
28663
28664
28665
28666
28667
28668
28669
28670
28671
28672
28673
28674
28675
28676
28677
28678
28679
28680
28681
28682
28683
28684
28685
28686
28687
28688
28689
28690
28691
28692
28693
28694
28695
28696
28697
28698
28699
28700
28701
28702
28703
28704
28705
28706
28707
28708
28709
28710
28711
28712
28713
28714
28715
28716
28717
28718
28719
28720
28721
28722
28723
28724
28725
28726
28727
28728
28729
28730
28731
28732
28733
28734
28735
28736
28737
28738
28739
28740
28741
28742
28743
28744
28745
28746
28747
28748
28749
28750
28751
28752
28753
28754
28755
28756
28757
28758
28759
28760
28761
28762
28763
28764
28765
28766
28767
28768
28769
28770
28771
28772
28773
28774
28775
28776
28777
28778
28779
28780
28781
28782
28783
28784
28785
28786
28787
28788
28789
28790
28791
28792
28793
28794
28795
28796
28797
28798
28799
28800
28801
28802
28803
28804
28805
28806
28807
28808
28809
28810
28811
28812
28813
28814
28815
28816
28817
28818
28819
28820
28821
28822
28823
28824
28825
28826
28827
28828
28829
28830
28831
28832
28833
28834
28835
28836
28837
28838
28839
28840
28841
28842
28843
28844
28845
28846
28847
28848
28849
28850
28851
28852
28853
28854
28855
28856
28857
28858
28859
28860
28861
28862
28863
28864
28865
28866
28867
28868
28869
28870
28871
28872
28873
28874
28875
28876
28877
28878
28879
28880
28881
28882
28883
28884
28885
28886
28887
28888
28889
28890
28891
28892
28893
28894
28895
28896
28897
28898
28899
28900
28901
28902
28903
28904
28905
28906
28907
28908
28909
28910
28911
28912
28913
28914
28915
28916
28917
28918
28919
28920
28921
28922
28923
28924
28925
28926
28927
28928
28929
28930
28931
28932
28933
28934
28935
28936
28937
28938
28939
28940
28941
28942
28943
28944
28945
28946
28947
28948
28949
28950
28951
28952
28953
28954
28955
28956
28957
28958
28959
28960
28961
28962
28963
28964
28965
28966
28967
28968
28969
28970
28971
28972
28973
28974
28975
28976
28977
28978
28979
28980
28981
28982
28983
28984
28985
28986
28987
28988
28989
28990
28991
28992
28993
28994
28995
28996
28997
28998
28999
29000
                <gml:Polygon gml:id="DEBY_LOD2_605042_61823202-00b6-4965-82b2-0af25d480aa2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605042_61823202-00b6-4965-82b2-0af25d480aa2_poly_0_">
                      <gml:posList srsDimension="3">568359.596 5517120.144 0.0 568359.596 5517120.144 9.831999999999994 568360.991 5517130.047 9.831999999999994 568360.991 5517130.047 0.0 568359.596 5517120.144 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_605169">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9pJCB</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>Matterstockstraße 36, 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>1953</bldg:yearOfConstruction>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">16.844</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_5aa36283-d656-43ba-bccc-33212d24e27d">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_3a6cd4aa-4050-4204-ac37-e494bb1a7e1e">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605169_65e7439a-09d7-4c7a-92d9-c92380840458_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605169_6ea2c28a-77fe-43aa-80be-7b6fb54ddab1_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605169_ece3fa2c-60fc-4988-90bf-8ed8dc5e6a27_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605169_71882ecb-28bc-42e7-ac6e-b9eb87f4dd5b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605169_632f347e-7a53-402c-93ca-4be89e143ff7_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605169_2343414a-36fb-4bf7-98a2-8e04dd13b10b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605169_9de8c303-74cc-4a60-a72a-29c501973438_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605169_6896e6c7-9e19-4cc3-9e23-bd99dcceed02_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605169_92e19bf5-aefc-4aab-87ca-7a03e96f27fc_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605169_dcaaae44-8cf2-49e6-91e2-a344d910ccf7_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605169_0ce0a11d-59a1-43c1-84f3-ef056b5ee931_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605169_ade4a76a-475e-4612-ac91-d093ef950410_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605169_cdec2618-e5ef-4bdb-a252-b75fa8bd20bc_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605169_2709de16-24de-4299-9b6a-9b9dc8ae9c3a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605169_d009b9e6-88dc-4308-a5e7-fb1b171dad58_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605169_7182290f-81b5-494e-91c8-2d225ebf739c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605169_c42ceccf-971f-4b0f-b96a-2ae4c5e8bdbc_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605169_2343414a-36fb-4bf7-98a2-8e04dd13b10b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ff598ae6-a21c-4d3e-ac0f-0e38b6494988">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605169_2343414a-36fb-4bf7-98a2-8e04dd13b10b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605169_2343414a-36fb-4bf7-98a2-8e04dd13b10b_poly_0_">
                      <gml:posList srsDimension="3">568178.76 5517086.362 16.843999999999994 568183.988 5517085.424 16.843999999999994 568190.085 5517089.586 13.263000000000005 568185.008 5517090.504 13.257000000000005 568184.974 5517090.353 13.365000000000009 568179.652 5517091.302 13.367999999999995 568176.038 5517091.947 13.370000000000005 568175.195 5517087.0 16.843999999999994 568178.76 5517086.362 16.843999999999994</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_605169_632f347e-7a53-402c-93ca-4be89e143ff7">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9eb443de-ccde-42cf-a47d-fd5a25ecd24d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605169_632f347e-7a53-402c-93ca-4be89e143ff7_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605169_632f347e-7a53-402c-93ca-4be89e143ff7_poly_0_">
                      <gml:posList srsDimension="3">568186.669 5517072.771 0.0 568186.873 5517072.941 0.0 568187.008 5517073.055 0.0 568187.008 5517073.055 13.319999999999993 568186.873 5517072.941 13.396999999999991 568186.669 5517072.771 13.257000000000005 568186.669 5517072.771 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_605169_7182290f-81b5-494e-91c8-2d225ebf739c">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8b97897b-4b05-46e7-a3c6-5f82bc354312">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605169_7182290f-81b5-494e-91c8-2d225ebf739c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605169_7182290f-81b5-494e-91c8-2d225ebf739c_poly_0_">
                      <gml:posList srsDimension="3">568179.652 5517091.302 13.367999999999995 568184.974 5517090.353 13.365000000000009 568184.974 5517090.353 0.0 568179.652 5517091.302 0.0 568176.038 5517091.947 0.0 568176.038 5517091.947 13.370000000000005 568179.652 5517091.302 13.367999999999995</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_605169_c42ceccf-971f-4b0f-b96a-2ae4c5e8bdbc">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_0c4e56c9-c546-43d0-9fcd-276c00dec1f4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605169_c42ceccf-971f-4b0f-b96a-2ae4c5e8bdbc_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605169_c42ceccf-971f-4b0f-b96a-2ae4c5e8bdbc_poly_0_">
                      <gml:posList srsDimension="3">568189.034 5517083.891 0.0 568189.034 5517083.891 13.272999999999996 568188.943 5517083.908 13.336000000000013 568188.943 5517083.908 0.0 568189.034 5517083.891 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_605169_9de8c303-74cc-4a60-a72a-29c501973438">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5e9b0714-1729-498b-a2bb-fbdbe68c1882">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605169_9de8c303-74cc-4a60-a72a-29c501973438_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605169_9de8c303-74cc-4a60-a72a-29c501973438_poly_0_">
                      <gml:posList srsDimension="3">568184.974 5517090.353 0.0 568184.974 5517090.353 13.365000000000009 568185.008 5517090.504 13.257000000000005 568185.008 5517090.504 0.0 568184.974 5517090.353 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_605169_ece3fa2c-60fc-4988-90bf-8ed8dc5e6a27">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_63e09ae6-c470-4987-b56b-34b5add1f94e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605169_ece3fa2c-60fc-4988-90bf-8ed8dc5e6a27_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605169_ece3fa2c-60fc-4988-90bf-8ed8dc5e6a27_poly_0_">
                      <gml:posList srsDimension="3">568186.669 5517072.771 13.257000000000005 568186.873 5517072.941 13.396999999999991 568182.8 5517078.849 16.843999999999994 568176.693 5517074.638 13.257000000000005 568186.669 5517072.771 13.257000000000005</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_605169_2709de16-24de-4299-9b6a-9b9dc8ae9c3a">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4cecd407-837d-4128-8508-949897e2ee0f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605169_2709de16-24de-4299-9b6a-9b9dc8ae9c3a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605169_2709de16-24de-4299-9b6a-9b9dc8ae9c3a_poly_0_">
                      <gml:posList srsDimension="3">568185.008 5517090.504 0.0 568185.008 5517090.504 13.257000000000005 568190.085 5517089.586 13.263000000000005 568190.085 5517089.586 0.0 568185.008 5517090.504 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_605169_d009b9e6-88dc-4308-a5e7-fb1b171dad58">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_96d740be-95b7-42d3-bceb-3afb0ce4d3e7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605169_d009b9e6-88dc-4308-a5e7-fb1b171dad58_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605169_d009b9e6-88dc-4308-a5e7-fb1b171dad58_poly_0_">
                      <gml:posList srsDimension="3">568176.645 5517074.647 0.0 568176.693 5517074.638 0.0 568186.669 5517072.771 0.0 568186.669 5517072.771 13.257000000000005 568176.693 5517074.638 13.257000000000005 568176.645 5517074.647 13.223000000000013 568176.62 5517074.651 13.206000000000017 568176.62 5517074.651 0.0 568176.645 5517074.647 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_605169_71882ecb-28bc-42e7-ac6e-b9eb87f4dd5b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7c00d7b9-f795-48a2-a185-743151848aa7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605169_71882ecb-28bc-42e7-ac6e-b9eb87f4dd5b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605169_71882ecb-28bc-42e7-ac6e-b9eb87f4dd5b_poly_0_">
                      <gml:posList srsDimension="3">568177.838 5517081.252 13.248999999999995 568177.877 5517081.245 13.25 568183.988 5517085.424 16.843999999999994 568178.76 5517086.362 16.843999999999994 568175.195 5517087.0 16.843999999999994 568174.32 5517081.873 13.242999999999995 568177.838 5517081.252 13.248999999999995</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_605169_ade4a76a-475e-4612-ac91-d093ef950410">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5b1d56d9-94da-4d5c-831e-dfaaa27e194f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605169_ade4a76a-475e-4612-ac91-d093ef950410_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605169_ade4a76a-475e-4612-ac91-d093ef950410_poly_0_">
                      <gml:posList srsDimension="3">568176.645 5517074.647 13.223000000000013 568176.693 5517074.638 13.257000000000005 568182.8 5517078.849 16.843999999999994 568183.058 5517080.277 16.843999999999994 568183.988 5517085.424 16.843999999999994 568177.877 5517081.245 13.25 568177.87 5517081.207 13.25 568177.09 5517077.117 13.223000000000013 568176.62 5517074.651 13.206000000000017 568176.645 5517074.647 13.223000000000013</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_605169_0ce0a11d-59a1-43c1-84f3-ef056b5ee931">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_90b5424e-0d22-4457-8053-18ad0130ca8b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605169_0ce0a11d-59a1-43c1-84f3-ef056b5ee931_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605169_0ce0a11d-59a1-43c1-84f3-ef056b5ee931_poly_0_">
                      <gml:posList srsDimension="3">568186.873 5517072.941 13.396999999999991 568187.008 5517073.055 13.319999999999993 568188.133 5517079.367 13.329000000000008 568188.943 5517083.908 13.336000000000013 568189.034 5517083.891 13.272999999999996 568190.085 5517089.586 13.263000000000005 568183.988 5517085.424 16.843999999999994 568183.058 5517080.277 16.843999999999994 568182.8 5517078.849 16.843999999999994 568186.873 5517072.941 13.396999999999991</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_605169_cdec2618-e5ef-4bdb-a252-b75fa8bd20bc">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c259fa8a-a2f4-46b0-b544-1db2ed43df64">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605169_cdec2618-e5ef-4bdb-a252-b75fa8bd20bc_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605169_cdec2618-e5ef-4bdb-a252-b75fa8bd20bc_poly_0_">
                      <gml:posList srsDimension="3">568189.034 5517083.891 0.0 568188.943 5517083.908 0.0 568188.133 5517079.367 0.0 568187.008 5517073.055 0.0 568186.873 5517072.941 0.0 568186.669 5517072.771 0.0 568176.693 5517074.638 0.0 568176.645 5517074.647 0.0 568176.62 5517074.651 0.0 568177.09 5517077.117 0.0 568177.87 5517081.207 0.0 568177.877 5517081.245 0.0 568177.838 5517081.252 0.0 568174.32 5517081.873 0.0 568175.195 5517087.0 0.0 568176.038 5517091.947 0.0 568179.652 5517091.302 0.0 568184.974 5517090.353 0.0 568185.008 5517090.504 0.0 568190.085 5517089.586 0.0 568189.034 5517083.891 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_605169_6ea2c28a-77fe-43aa-80be-7b6fb54ddab1">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5d066bf8-7413-4f69-ad85-b8672125af04">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605169_6ea2c28a-77fe-43aa-80be-7b6fb54ddab1_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605169_6ea2c28a-77fe-43aa-80be-7b6fb54ddab1_poly_0_">
                      <gml:posList srsDimension="3">568177.838 5517081.252 0.0 568177.877 5517081.245 0.0 568177.877 5517081.245 13.25 568177.838 5517081.252 13.248999999999995 568174.32 5517081.873 13.242999999999995 568174.32 5517081.873 0.0 568177.838 5517081.252 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_605169_65e7439a-09d7-4c7a-92d9-c92380840458">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ab2232cf-b20a-4f92-93e6-4da94bba5f88">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605169_65e7439a-09d7-4c7a-92d9-c92380840458_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605169_65e7439a-09d7-4c7a-92d9-c92380840458_poly_0_">
                      <gml:posList srsDimension="3">568174.32 5517081.873 13.242999999999995 568175.195 5517087.0 16.843999999999994 568176.038 5517091.947 13.370000000000005 568176.038 5517091.947 0.0 568175.195 5517087.0 0.0 568174.32 5517081.873 0.0 568174.32 5517081.873 13.242999999999995</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_605169_92e19bf5-aefc-4aab-87ca-7a03e96f27fc">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_750e99c2-3073-4947-ad65-3439b0c2bb89">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605169_92e19bf5-aefc-4aab-87ca-7a03e96f27fc_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605169_92e19bf5-aefc-4aab-87ca-7a03e96f27fc_poly_0_">
                      <gml:posList srsDimension="3">568176.62 5517074.651 13.206000000000017 568177.09 5517077.117 13.223000000000013 568177.87 5517081.207 13.25 568177.877 5517081.245 13.25 568177.877 5517081.245 0.0 568177.87 5517081.207 0.0 568177.09 5517077.117 0.0 568176.62 5517074.651 0.0 568176.62 5517074.651 13.206000000000017</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_605169_6896e6c7-9e19-4cc3-9e23-bd99dcceed02">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1b059a96-e7ae-489f-aecb-e8ff3b8ff9c0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605169_6896e6c7-9e19-4cc3-9e23-bd99dcceed02_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605169_6896e6c7-9e19-4cc3-9e23-bd99dcceed02_poly_0_">
                      <gml:posList srsDimension="3">568190.085 5517089.586 0.0 568190.085 5517089.586 13.263000000000005 568189.034 5517083.891 13.272999999999996 568189.034 5517083.891 0.0 568190.085 5517089.586 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_605169_dcaaae44-8cf2-49e6-91e2-a344d910ccf7">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2bd3dcf3-7293-41bd-9ed3-f533fb204502">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605169_dcaaae44-8cf2-49e6-91e2-a344d910ccf7_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605169_dcaaae44-8cf2-49e6-91e2-a344d910ccf7_poly_0_">
                      <gml:posList srsDimension="3">568187.008 5517073.055 0.0 568188.133 5517079.367 0.0 568188.943 5517083.908 0.0 568188.943 5517083.908 13.336000000000013 568188.133 5517079.367 13.329000000000008 568187.008 5517073.055 13.319999999999993 568187.008 5517073.055 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_605810">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odkb</name>
        </externalObject>
      </externalReference>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2019-09-25</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_2000</bldg:function>
      <bldg:roofType>1000</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">2.882</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_7b594b66-7f60-4cce-91e2-0ee5c3dec760">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_d969e345-12ca-46c9-a597-ce6a2d92f597">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605810_c816965b-c224-44e2-8a0f-10745b174e0e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605810_9d340818-79c7-499b-90b4-5d901ca9669f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605810_cfc21c88-8f91-4b6b-8ddb-b59ca023b2ea_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605810_9fd32125-4952-4e92-962d-7cfa134d0f69_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605810_10f4792b-075c-43e9-a3ec-a4fb4329af47_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605810_efed4922-7f68-4323-9c75-e18ec9da5dc3_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="DEBY_LOD2_605810_cfc21c88-8f91-4b6b-8ddb-b59ca023b2ea">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8c839e3b-c527-4f78-9529-d02f18dca2d5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605810_cfc21c88-8f91-4b6b-8ddb-b59ca023b2ea_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605810_cfc21c88-8f91-4b6b-8ddb-b59ca023b2ea_poly_0_">
                      <gml:posList srsDimension="3">568377.958 5516984.396 0.0 568380.51 5516998.131 0.0 568385.909 5516997.159 0.0 568383.37 5516983.394 0.0 568377.958 5516984.396 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_605810_9d340818-79c7-499b-90b4-5d901ca9669f">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b4ca4983-77e2-405a-9145-3d1ae51234b6">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605810_9d340818-79c7-499b-90b4-5d901ca9669f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605810_9d340818-79c7-499b-90b4-5d901ca9669f_poly_0_">
                      <gml:posList srsDimension="3">568380.51 5516998.131 0.0 568380.51 5516998.131 2.882000000000005 568385.909 5516997.159 2.882000000000005 568385.909 5516997.159 0.0 568380.51 5516998.131 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_605810_9fd32125-4952-4e92-962d-7cfa134d0f69">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8416efa0-70f0-4178-bf2f-c28937b71101">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605810_9fd32125-4952-4e92-962d-7cfa134d0f69_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605810_9fd32125-4952-4e92-962d-7cfa134d0f69_poly_0_">
                      <gml:posList srsDimension="3">568377.958 5516984.396 0.0 568377.958 5516984.396 2.882000000000005 568380.51 5516998.131 2.882000000000005 568380.51 5516998.131 0.0 568377.958 5516984.396 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_605810_10f4792b-075c-43e9-a3ec-a4fb4329af47">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_16705858-eefa-489a-9430-3cd7bd6ccb05">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605810_10f4792b-075c-43e9-a3ec-a4fb4329af47_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605810_10f4792b-075c-43e9-a3ec-a4fb4329af47_poly_0_">
                      <gml:posList srsDimension="3">568383.37 5516983.394 0.0 568383.37 5516983.394 2.882000000000005 568377.958 5516984.396 2.882000000000005 568377.958 5516984.396 0.0 568383.37 5516983.394 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_605810_efed4922-7f68-4323-9c75-e18ec9da5dc3">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1d1b78e4-eed7-4ab0-bae3-0b5ea25acfde">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605810_efed4922-7f68-4323-9c75-e18ec9da5dc3_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605810_efed4922-7f68-4323-9c75-e18ec9da5dc3_poly_0_">
                      <gml:posList srsDimension="3">568383.37 5516983.394 2.882000000000005 568385.909 5516997.159 2.882000000000005 568380.51 5516998.131 2.882000000000005 568377.958 5516984.396 2.882000000000005 568383.37 5516983.394 2.882000000000005</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_605810_c816965b-c224-44e2-8a0f-10745b174e0e">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6c4426e3-9dc5-4f3f-b44f-ffff163f2489">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605810_c816965b-c224-44e2-8a0f-10745b174e0e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605810_c816965b-c224-44e2-8a0f-10745b174e0e_poly_0_">
                      <gml:posList srsDimension="3">568385.909 5516997.159 0.0 568385.909 5516997.159 2.882000000000005 568383.37 5516983.394 2.882000000000005 568383.37 5516983.394 0.0 568385.909 5516997.159 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_605740">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9oeGE</name>
        </externalObject>
      </externalReference>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2019-09-25</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_2000</bldg:function>
      <bldg:roofType>1000</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">2.341</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_366f9395-de98-43a2-b535-8d13ec624a35">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_2ae8a2dd-3a24-409a-b7ce-95fbca436dec">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605740_302e85a8-72bc-4ded-90fc-7d855a1c82ac_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605740_05ef4af9-d51d-4744-9428-b6cf79cce4e2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605740_579cfd8c-fcac-4817-8e94-3e851ff6367b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605740_228cb3d6-5b0f-4173-9377-e4e372f930b3_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605740_139a1f0c-409b-45fc-8a34-44e797237e39_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605740_e993d019-56c2-4219-949f-bf6fa98ceaf6_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605740_54c79ecb-5bc8-48bd-95b4-640bd946a273_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605740_739a2964-eb7a-4345-9744-6f93d4b511bd_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605740_63511fb3-ba4f-40db-b0ce-c5e3d7d8779d_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605740_139a1f0c-409b-45fc-8a34-44e797237e39">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d0bb36cc-3a26-4fa6-9c68-225fa699f515">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605740_139a1f0c-409b-45fc-8a34-44e797237e39_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605740_139a1f0c-409b-45fc-8a34-44e797237e39_poly_0_">
                      <gml:posList srsDimension="3">568664.174 5517113.007 0.0 568664.174 5517113.007 2.3409999999999798 568663.424 5517107.536 2.3409999999999798 568663.424 5517107.536 0.0 568664.174 5517113.007 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_605740_63511fb3-ba4f-40db-b0ce-c5e3d7d8779d">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e0375a73-40fc-4e3c-a474-76e501773a1a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605740_63511fb3-ba4f-40db-b0ce-c5e3d7d8779d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605740_63511fb3-ba4f-40db-b0ce-c5e3d7d8779d_poly_0_">
                      <gml:posList srsDimension="3">568655.734 5517111.21 0.0 568655.734 5517111.21 2.3409999999999798 568656.225 5517114.151 2.3409999999999798 568656.225 5517114.151 0.0 568655.734 5517111.21 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_605740_302e85a8-72bc-4ded-90fc-7d855a1c82ac">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1d7af2af-54af-48f9-9a51-0e02a75ca5c1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605740_302e85a8-72bc-4ded-90fc-7d855a1c82ac_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605740_302e85a8-72bc-4ded-90fc-7d855a1c82ac_poly_0_">
                      <gml:posList srsDimension="3">568664.245 5517113.49 0.0 568664.245 5517113.49 2.3409999999999798 568664.174 5517113.007 2.3409999999999798 568664.174 5517113.007 0.0 568664.245 5517113.49 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_605740_54c79ecb-5bc8-48bd-95b4-640bd946a273">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8bc864f6-4f28-472d-a73b-7a2b6b16281b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605740_54c79ecb-5bc8-48bd-95b4-640bd946a273_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605740_54c79ecb-5bc8-48bd-95b4-640bd946a273_poly_0_">
                      <gml:posList srsDimension="3">568655.337 5517108.722 0.0 568663.424 5517107.536 0.0 568663.424 5517107.536 2.3409999999999798 568655.337 5517108.722 2.3409999999999798 568655.324 5517108.723 2.3409999999999798 568655.324 5517108.723 0.0 568655.337 5517108.722 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_605740_05ef4af9-d51d-4744-9428-b6cf79cce4e2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1a303c85-8e6a-4f45-a66d-ead2d80583dc">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605740_05ef4af9-d51d-4744-9428-b6cf79cce4e2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605740_05ef4af9-d51d-4744-9428-b6cf79cce4e2_poly_0_">
                      <gml:posList srsDimension="3">568664.174 5517113.007 0.0 568663.424 5517107.536 0.0 568655.337 5517108.722 0.0 568655.324 5517108.723 0.0 568655.403 5517109.2 0.0 568655.734 5517111.21 0.0 568656.225 5517114.151 0.0 568656.315 5517114.645 0.0 568664.245 5517113.49 0.0 568664.174 5517113.007 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_605740_e993d019-56c2-4219-949f-bf6fa98ceaf6">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_688a2efd-a82d-430e-9c01-2e28af906d11">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605740_e993d019-56c2-4219-949f-bf6fa98ceaf6_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605740_e993d019-56c2-4219-949f-bf6fa98ceaf6_poly_0_">
                      <gml:posList srsDimension="3">568656.315 5517114.645 0.0 568656.315 5517114.645 2.3409999999999798 568664.245 5517113.49 2.3409999999999798 568664.245 5517113.49 0.0 568656.315 5517114.645 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_605740_739a2964-eb7a-4345-9744-6f93d4b511bd">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_09f9a599-ea4e-42d3-b733-05040c90a795">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605740_739a2964-eb7a-4345-9744-6f93d4b511bd_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605740_739a2964-eb7a-4345-9744-6f93d4b511bd_poly_0_">
                      <gml:posList srsDimension="3">568656.225 5517114.151 0.0 568656.225 5517114.151 2.3409999999999798 568656.315 5517114.645 2.3409999999999798 568656.315 5517114.645 0.0 568656.225 5517114.151 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_605740_579cfd8c-fcac-4817-8e94-3e851ff6367b">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2df62b5d-1509-4af2-af95-891410694650">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605740_579cfd8c-fcac-4817-8e94-3e851ff6367b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605740_579cfd8c-fcac-4817-8e94-3e851ff6367b_poly_0_">
                      <gml:posList srsDimension="3">568655.324 5517108.723 2.3409999999999798 568655.403 5517109.2 2.3409999999999798 568655.734 5517111.21 2.3409999999999798 568655.734 5517111.21 0.0 568655.403 5517109.2 0.0 568655.324 5517108.723 0.0 568655.324 5517108.723 2.3409999999999798</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_605740_228cb3d6-5b0f-4173-9377-e4e372f930b3">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_960fdc45-7f7b-45fc-b01b-bafe97c569b5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605740_228cb3d6-5b0f-4173-9377-e4e372f930b3_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605740_228cb3d6-5b0f-4173-9377-e4e372f930b3_poly_0_">
                      <gml:posList srsDimension="3">568655.337 5517108.722 2.3409999999999798 568663.424 5517107.536 2.3409999999999798 568664.174 5517113.007 2.3409999999999798 568664.245 5517113.49 2.3409999999999798 568656.315 5517114.645 2.3409999999999798 568656.225 5517114.151 2.3409999999999798 568655.734 5517111.21 2.3409999999999798 568655.403 5517109.2 2.3409999999999798 568655.324 5517108.723 2.3409999999999798 568655.337 5517108.722 2.3409999999999798</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_605016">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odzL</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>Josef-Schneider-Straße 9c, 97080, Würzburg</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2019-09-24</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_1000</bldg:function>
      <bldg:yearOfConstruction>1955</bldg:yearOfConstruction>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">15.183</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_3c57c117-a1fb-4794-b0ee-6acd2182eed7">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_dbcce1de-d254-4cce-8641-d8a45f9b5d72">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605016_cb543d69-fe01-4c06-9637-0cf2d97d28d7_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605016_38805e2a-f446-40fe-a6bf-c6a4b4fc303a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605016_d4257513-7e5a-4fb3-80b1-c46630f398a0_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605016_1795d50e-796d-4ccc-8cf0-d3afc33f0d3e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605016_b62342ca-69df-4947-a4cb-d108cf2e5918_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605016_3bd6741a-c82e-4b53-98b2-a828cc4e5c02_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605016_fccc4f93-56a5-49fd-b6ea-ba29282d6d36_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605016_21f16c28-ba24-4737-8b39-456237c15f45_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605016_09e0f159-61a5-47fa-a2fd-89bf0508c9d1_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605016_567ecbc4-317a-4b43-8626-a20c9b54ff60_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605016_fccc4f93-56a5-49fd-b6ea-ba29282d6d36">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a945919f-3b45-4edd-802c-1cd4623b19ac">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605016_fccc4f93-56a5-49fd-b6ea-ba29282d6d36_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605016_fccc4f93-56a5-49fd-b6ea-ba29282d6d36_poly_0_">
                      <gml:posList srsDimension="3">568707.319 5517158.381 0.0 568708.453 5517158.186 0.0 568708.453 5517158.186 11.475999999999999 568707.319 5517158.381 12.156000000000006 568707.275 5517158.388 12.181999999999988 568707.275 5517158.388 0.0 568707.319 5517158.381 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_605016_d4257513-7e5a-4fb3-80b1-c46630f398a0">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_412c8ffe-0f94-4a3c-8362-4f39b2b3c9d5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605016_d4257513-7e5a-4fb3-80b1-c46630f398a0_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605016_d4257513-7e5a-4fb3-80b1-c46630f398a0_poly_0_">
                      <gml:posList srsDimension="3">568708.502 5517158.468 0.0 568708.502 5517158.468 11.477000000000004 568708.453 5517158.186 11.475999999999999 568708.453 5517158.186 0.0 568708.502 5517158.468 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_605016_09e0f159-61a5-47fa-a2fd-89bf0508c9d1">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9476e51c-9772-42cc-b6cf-3ff8c7cacc5f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605016_09e0f159-61a5-47fa-a2fd-89bf0508c9d1_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605016_09e0f159-61a5-47fa-a2fd-89bf0508c9d1_poly_0_">
                      <gml:posList srsDimension="3">568694.925 5517117.358 0.0 568697.714 5517116.892 0.0 568699.981 5517116.512 0.0 568699.981 5517116.512 12.156000000000006 568697.714 5517116.892 13.513000000000005 568694.925 5517117.358 15.182999999999993 568691.392 5517117.948 13.067000000000007 568691.392 5517117.948 0.0 568694.925 5517117.358 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_605016_21f16c28-ba24-4737-8b39-456237c15f45">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c2059019-5570-4443-9edb-b05150f8f91d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605016_21f16c28-ba24-4737-8b39-456237c15f45_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605016_21f16c28-ba24-4737-8b39-456237c15f45_poly_0_">
                      <gml:posList srsDimension="3">568689.921 5517118.209 12.185000000000002 568689.947 5517118.355 12.185000000000002 568697.345 5517160.57 12.185000000000002 568697.345 5517160.57 0.0 568689.947 5517118.355 0.0 568689.921 5517118.209 0.0 568689.921 5517118.209 12.185000000000002</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_605016_1795d50e-796d-4ccc-8cf0-d3afc33f0d3e">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_dce6c839-a34a-4865-973e-a96d6b137fc3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605016_1795d50e-796d-4ccc-8cf0-d3afc33f0d3e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605016_1795d50e-796d-4ccc-8cf0-d3afc33f0d3e_poly_0_">
                      <gml:posList srsDimension="3">568708.453 5517158.186 0.0 568707.319 5517158.381 0.0 568707.275 5517158.388 0.0 568699.981 5517116.512 0.0 568697.714 5517116.892 0.0 568694.925 5517117.358 0.0 568691.392 5517117.948 0.0 568689.921 5517118.209 0.0 568689.947 5517118.355 0.0 568697.345 5517160.57 0.0 568702.334 5517159.63 0.0 568707.371 5517158.68 0.0 568708.502 5517158.468 0.0 568708.453 5517158.186 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_605016_567ecbc4-317a-4b43-8626-a20c9b54ff60">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fd09d681-0952-474f-8357-aa85addbb7b7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605016_567ecbc4-317a-4b43-8626-a20c9b54ff60_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605016_567ecbc4-317a-4b43-8626-a20c9b54ff60_poly_0_">
                      <gml:posList srsDimension="3">568707.275 5517158.388 0.0 568707.275 5517158.388 12.181999999999988 568699.981 5517116.512 12.156000000000006 568699.981 5517116.512 0.0 568707.275 5517158.388 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_605016_b62342ca-69df-4947-a4cb-d108cf2e5918">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_64cab926-bc04-4744-8aa2-4135812921c4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605016_b62342ca-69df-4947-a4cb-d108cf2e5918_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605016_b62342ca-69df-4947-a4cb-d108cf2e5918_poly_0_">
                      <gml:posList srsDimension="3">568691.392 5517117.948 13.067000000000007 568694.925 5517117.358 15.182999999999993 568694.934 5517117.416 15.182999999999993 568702.334 5517159.63 15.182999999999993 568697.345 5517160.57 12.185000000000002 568689.947 5517118.355 12.185000000000002 568689.921 5517118.209 12.185000000000002 568691.392 5517117.948 13.067000000000007</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_605016_cb543d69-fe01-4c06-9637-0cf2d97d28d7">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_369f0c3d-7e0a-4658-a992-00e4a64e3fc1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605016_cb543d69-fe01-4c06-9637-0cf2d97d28d7_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605016_cb543d69-fe01-4c06-9637-0cf2d97d28d7_poly_0_">
                      <gml:posList srsDimension="3">568691.392 5517117.948 0.0 568691.392 5517117.948 13.067000000000007 568689.921 5517118.209 12.185000000000002 568689.921 5517118.209 0.0 568691.392 5517117.948 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_605016_38805e2a-f446-40fe-a6bf-c6a4b4fc303a">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a40dd8b3-cf18-41a3-b8e5-f81f396d8e91">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605016_38805e2a-f446-40fe-a6bf-c6a4b4fc303a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605016_38805e2a-f446-40fe-a6bf-c6a4b4fc303a_poly_0_">
                      <gml:posList srsDimension="3">568697.714 5517116.892 13.513000000000005 568699.981 5517116.512 12.156000000000006 568707.275 5517158.388 12.181999999999988 568707.319 5517158.381 12.156000000000006 568708.453 5517158.186 11.475999999999999 568708.502 5517158.468 11.477000000000004 568707.371 5517158.68 12.156000000000006 568702.334 5517159.63 15.182999999999993 568694.934 5517117.416 15.182999999999993 568694.925 5517117.358 15.182999999999993 568697.714 5517116.892 13.513000000000005</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_605016_3bd6741a-c82e-4b53-98b2-a828cc4e5c02">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_146d41c6-bfcf-42aa-998d-d09f375a0c34">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605016_3bd6741a-c82e-4b53-98b2-a828cc4e5c02_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605016_3bd6741a-c82e-4b53-98b2-a828cc4e5c02_poly_0_">
                      <gml:posList srsDimension="3">568702.334 5517159.63 15.182999999999993 568707.371 5517158.68 12.156000000000006 568708.502 5517158.468 11.477000000000004 568708.502 5517158.468 0.0 568707.371 5517158.68 0.0 568702.334 5517159.63 0.0 568697.345 5517160.57 0.0 568697.345 5517160.57 12.185000000000002 568702.334 5517159.63 15.182999999999993</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_605106">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odGo</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>Reiserstraße 4, 97080, Würzburg</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
For faster browsing, not all history is shown. View entire blame