Grombühl_v4_case_study.gml 6.37 MB
Newer Older
Eric Duminil's avatar
Eric Duminil committed
42001
42002
42003
42004
42005
42006
42007
42008
42009
42010
42011
42012
42013
42014
42015
42016
42017
42018
42019
42020
42021
42022
42023
42024
42025
42026
42027
42028
42029
42030
42031
42032
42033
42034
42035
42036
42037
42038
42039
42040
42041
42042
42043
42044
42045
42046
42047
42048
42049
42050
42051
42052
42053
42054
42055
42056
42057
42058
42059
42060
42061
42062
42063
42064
42065
42066
42067
42068
42069
42070
42071
42072
42073
42074
42075
42076
42077
42078
42079
42080
42081
42082
42083
42084
42085
42086
42087
42088
42089
42090
42091
42092
42093
42094
42095
42096
42097
42098
42099
42100
42101
42102
42103
42104
42105
42106
42107
42108
42109
42110
42111
42112
42113
42114
42115
42116
42117
42118
42119
42120
42121
42122
42123
42124
42125
42126
42127
42128
42129
42130
42131
42132
42133
42134
42135
42136
42137
42138
42139
42140
42141
42142
42143
42144
42145
42146
42147
42148
42149
42150
42151
42152
42153
42154
42155
42156
42157
42158
42159
42160
42161
42162
42163
42164
42165
42166
42167
42168
42169
42170
42171
42172
42173
42174
42175
42176
42177
42178
42179
42180
42181
42182
42183
42184
42185
42186
42187
42188
42189
42190
42191
42192
42193
42194
42195
42196
42197
42198
42199
42200
42201
42202
42203
42204
42205
42206
42207
42208
42209
42210
42211
42212
42213
42214
42215
42216
42217
42218
42219
42220
42221
42222
42223
42224
42225
42226
42227
42228
42229
42230
42231
42232
42233
42234
42235
42236
42237
42238
42239
42240
42241
42242
42243
42244
42245
42246
42247
42248
42249
42250
42251
42252
42253
42254
42255
42256
42257
42258
42259
42260
42261
42262
42263
42264
42265
42266
42267
42268
42269
42270
42271
42272
42273
42274
42275
42276
42277
42278
42279
42280
42281
42282
42283
42284
42285
42286
42287
42288
42289
42290
42291
42292
42293
42294
42295
42296
42297
42298
42299
42300
42301
42302
42303
42304
42305
42306
42307
42308
42309
42310
42311
42312
42313
42314
42315
42316
42317
42318
42319
42320
42321
42322
42323
42324
42325
42326
42327
42328
42329
42330
42331
42332
42333
42334
42335
42336
42337
42338
42339
42340
42341
42342
42343
42344
42345
42346
42347
42348
42349
42350
42351
42352
42353
42354
42355
42356
42357
42358
42359
42360
42361
42362
42363
42364
42365
42366
42367
42368
42369
42370
42371
42372
42373
42374
42375
42376
42377
42378
42379
42380
42381
42382
42383
42384
42385
42386
42387
42388
42389
42390
42391
42392
42393
42394
42395
42396
42397
42398
42399
42400
42401
42402
42403
42404
42405
42406
42407
42408
42409
42410
42411
42412
42413
42414
42415
42416
42417
42418
42419
42420
42421
42422
42423
42424
42425
42426
42427
42428
42429
42430
42431
42432
42433
42434
42435
42436
42437
42438
42439
42440
42441
42442
42443
42444
42445
42446
42447
42448
42449
42450
42451
42452
42453
42454
42455
42456
42457
42458
42459
42460
42461
42462
42463
42464
42465
42466
42467
42468
42469
42470
42471
42472
42473
42474
42475
42476
42477
42478
42479
42480
42481
42482
42483
42484
42485
42486
42487
42488
42489
42490
42491
42492
42493
42494
42495
42496
42497
42498
42499
42500
42501
42502
42503
42504
42505
42506
42507
42508
42509
42510
42511
42512
42513
42514
42515
42516
42517
42518
42519
42520
42521
42522
42523
42524
42525
42526
42527
42528
42529
42530
42531
42532
42533
42534
42535
42536
42537
42538
42539
42540
42541
42542
42543
42544
42545
42546
42547
42548
42549
42550
42551
42552
42553
42554
42555
42556
42557
42558
42559
42560
42561
42562
42563
42564
42565
42566
42567
42568
42569
42570
42571
42572
42573
42574
42575
42576
42577
42578
42579
42580
42581
42582
42583
42584
42585
42586
42587
42588
42589
42590
42591
42592
42593
42594
42595
42596
42597
42598
42599
42600
42601
42602
42603
42604
42605
42606
42607
42608
42609
42610
42611
42612
42613
42614
42615
42616
42617
42618
42619
42620
42621
42622
42623
42624
42625
42626
42627
42628
42629
42630
42631
42632
42633
42634
42635
42636
42637
42638
42639
42640
42641
42642
42643
42644
42645
42646
42647
42648
42649
42650
42651
42652
42653
42654
42655
42656
42657
42658
42659
42660
42661
42662
42663
42664
42665
42666
42667
42668
42669
42670
42671
42672
42673
42674
42675
42676
42677
42678
42679
42680
42681
42682
42683
42684
42685
42686
42687
42688
42689
42690
42691
42692
42693
42694
42695
42696
42697
42698
42699
42700
42701
42702
42703
42704
42705
42706
42707
42708
42709
42710
42711
42712
42713
42714
42715
42716
42717
42718
42719
42720
42721
42722
42723
42724
42725
42726
42727
42728
42729
42730
42731
42732
42733
42734
42735
42736
42737
42738
42739
42740
42741
42742
42743
42744
42745
42746
42747
42748
42749
42750
42751
42752
42753
42754
42755
42756
42757
42758
42759
42760
42761
42762
42763
42764
42765
42766
42767
42768
42769
42770
42771
42772
42773
42774
42775
42776
42777
42778
42779
42780
42781
42782
42783
42784
42785
42786
42787
42788
42789
42790
42791
42792
42793
42794
42795
42796
42797
42798
42799
42800
42801
42802
42803
42804
42805
42806
42807
42808
42809
42810
42811
42812
42813
42814
42815
42816
42817
42818
42819
42820
42821
42822
42823
42824
42825
42826
42827
42828
42829
42830
42831
42832
42833
42834
42835
42836
42837
42838
42839
42840
42841
42842
42843
42844
42845
42846
42847
42848
42849
42850
42851
42852
42853
42854
42855
42856
42857
42858
42859
42860
42861
42862
42863
42864
42865
42866
42867
42868
42869
42870
42871
42872
42873
42874
42875
42876
42877
42878
42879
42880
42881
42882
42883
42884
42885
42886
42887
42888
42889
42890
42891
42892
42893
42894
42895
42896
42897
42898
42899
42900
42901
42902
42903
42904
42905
42906
42907
42908
42909
42910
42911
42912
42913
42914
42915
42916
42917
42918
42919
42920
42921
42922
42923
42924
42925
42926
42927
42928
42929
42930
42931
42932
42933
42934
42935
42936
42937
42938
42939
42940
42941
42942
42943
42944
42945
42946
42947
42948
42949
42950
42951
42952
42953
42954
42955
42956
42957
42958
42959
42960
42961
42962
42963
42964
42965
42966
42967
42968
42969
42970
42971
42972
42973
42974
42975
42976
42977
42978
42979
42980
42981
42982
42983
42984
42985
42986
42987
42988
42989
42990
42991
42992
42993
42994
42995
42996
42997
42998
42999
43000
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_274cbd58-b6af-4e6c-9fa8-40392958589f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_b99dab0c-7d3a-4f74-806d-0503c8c6f5e3_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_b99dab0c-7d3a-4f74-806d-0503c8c6f5e3_poly_0_">
                      <gml:posList srsDimension="3">568253.356 5517075.653 12.420000000000016 568254.748 5517076.088 12.42100000000002 568254.687 5517076.261 12.555000000000007 568258.935 5517077.552 12.52800000000002 568257.295 5517082.795 16.548000000000002 568253.454 5517081.593 16.55000000000001 568246.784 5517079.506 16.55000000000001 568253.356 5517075.653 12.420000000000016</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_57467f16-a69b-4606-8f38-6c45f87c1caf">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8b81b166-da6a-4ee1-a5a4-1ff11746757a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_57467f16-a69b-4606-8f38-6c45f87c1caf_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_57467f16-a69b-4606-8f38-6c45f87c1caf_poly_0_">
                      <gml:posList srsDimension="3">568246.179 5517068.555 0.0 568246.179 5517068.555 12.454000000000008 568240.025 5517068.647 12.454000000000008 568240.025 5517068.647 0.0 568246.179 5517068.555 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_14bb806f-a78d-45f7-b8bd-a4a85e90925d">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7e2e5a96-a54c-4eb4-943d-6f449c05c8bb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_14bb806f-a78d-45f7-b8bd-a4a85e90925d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_14bb806f-a78d-45f7-b8bd-a4a85e90925d_poly_0_">
                      <gml:posList srsDimension="3">568255.23 5517074.713 12.02000000000001 568254.748 5517076.088 12.02000000000001 568253.356 5517075.653 12.02000000000001 568253.332 5517074.126 12.02000000000001 568255.23 5517074.713 12.02000000000001</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_79edb879-7bed-48f3-98e7-fb88120d6bba">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_37b5cab6-7d24-43b3-a3ac-cca0df35bd30">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_79edb879-7bed-48f3-98e7-fb88120d6bba_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_79edb879-7bed-48f3-98e7-fb88120d6bba_poly_0_">
                      <gml:posList srsDimension="3">568245.428 5517084.712 12.617000000000019 568253.547 5517087.263 12.609000000000009 568255.687 5517087.935 12.608000000000004 568255.687 5517087.935 0.0 568253.547 5517087.263 0.0 568245.428 5517084.712 0.0 568245.428 5517084.712 12.617000000000019</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_555f4eb2-05c8-4610-bf0e-1bc6403b1f8f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b4b9a17b-19d6-4aa0-a627-e8f6dc3fd237">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_555f4eb2-05c8-4610-bf0e-1bc6403b1f8f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_555f4eb2-05c8-4610-bf0e-1bc6403b1f8f_poly_0_">
                      <gml:posList srsDimension="3">568253.109 5517068.522 12.501000000000005 568253.239 5517068.52 12.420000000000016 568253.294 5517074.115 12.443000000000012 568253.332 5517074.126 12.420000000000016 568253.356 5517075.653 12.420000000000016 568246.784 5517079.506 16.55000000000001 568246.723 5517075.756 16.55000000000001 568246.713 5517075.127 16.55000000000001 568253.109 5517068.522 12.501000000000005</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_e11d538e-f3b9-4738-805b-aea704a7cd62">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_98ed2e34-812d-4a87-9379-fe1c44dcc2b8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_e11d538e-f3b9-4738-805b-aea704a7cd62_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_e11d538e-f3b9-4738-805b-aea704a7cd62_poly_0_">
                      <gml:posList srsDimension="3">568240.025 5517068.647 0.0 568240.025 5517068.647 12.454000000000008 568240.089 5517072.781 12.451000000000022 568240.089 5517072.781 0.0 568240.025 5517068.647 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_605145_7048e918-4d29-46af-a3a4-ba5368eb7bec">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5c1882aa-b2f8-4170-aa6a-a1db885ceeb7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_7048e918-4d29-46af-a3a4-ba5368eb7bec_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_7048e918-4d29-46af-a3a4-ba5368eb7bec_poly_0_">
                      <gml:posList srsDimension="3">568254.687 5517076.261 0.0 568254.748 5517076.088 0.0 568255.23 5517074.713 0.0 568253.332 5517074.126 0.0 568253.294 5517074.115 0.0 568253.239 5517068.52 0.0 568253.109 5517068.522 0.0 568246.185 5517068.635 0.0 568246.179 5517068.555 0.0 568240.025 5517068.647 0.0 568240.089 5517072.781 0.0 568240.229 5517072.777 0.0 568240.281 5517075.858 0.0 568240.318 5517078.023 0.0 568240.177 5517078.028 0.0 568240.23 5517081.158 0.0 568240.231 5517081.171 0.0 568242.387 5517083.989 0.0 568242.48 5517084.018 0.0 568245.37 5517084.909 0.0 568245.428 5517084.712 0.0 568253.547 5517087.263 0.0 568255.687 5517087.935 0.0 568257.295 5517082.795 0.0 568258.935 5517077.552 0.0 568254.687 5517076.261 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_605145_980a1459-0981-47b6-88a1-fc8be6981684">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6193dd4f-c110-4c37-b567-111d11a7aad6">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_980a1459-0981-47b6-88a1-fc8be6981684_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_980a1459-0981-47b6-88a1-fc8be6981684_poly_0_">
                      <gml:posList srsDimension="3">568240.231 5517081.171 0.0 568240.231 5517081.171 12.449000000000012 568242.387 5517083.989 12.420000000000016 568242.387 5517083.989 0.0 568240.231 5517081.171 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_01431868-3325-4910-9cbc-8407f586437c">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_52c3a76d-8677-45a2-9ac4-57d05abc1102">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_01431868-3325-4910-9cbc-8407f586437c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_01431868-3325-4910-9cbc-8407f586437c_poly_0_">
                      <gml:posList srsDimension="3">568240.229 5517072.777 12.538000000000011 568240.281 5517075.858 12.539000000000016 568240.318 5517078.023 12.54000000000002 568240.318 5517078.023 0.0 568240.281 5517075.858 0.0 568240.229 5517072.777 0.0 568240.229 5517072.777 12.538000000000011</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_9ac8c19b-2249-494b-9228-923a9f272690">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_50c4b467-1902-40c6-8061-3adca3c9341b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_9ac8c19b-2249-494b-9228-923a9f272690_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_9ac8c19b-2249-494b-9228-923a9f272690_poly_0_">
                      <gml:posList srsDimension="3">568246.784 5517079.506 16.55000000000001 568253.454 5517081.593 16.55000000000001 568257.295 5517082.795 16.548000000000002 568255.687 5517087.935 12.608000000000004 568253.547 5517087.263 12.609000000000009 568245.428 5517084.712 12.617000000000019 568245.37 5517084.909 12.466000000000008 568242.48 5517084.018 12.457000000000022 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:RoofSurface gml:id="DEBY_LOD2_605145_e2c6fe8a-a80a-4a71-905f-399e13b27d8f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3fb4d9b4-6bc8-46d9-afa2-1788e405b782">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_e2c6fe8a-a80a-4a71-905f-399e13b27d8f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_e2c6fe8a-a80a-4a71-905f-399e13b27d8f_poly_0_">
                      <gml:posList srsDimension="3">568246.713 5517075.127 16.55000000000001 568246.723 5517075.756 16.55000000000001 568246.784 5517079.506 16.55000000000001 568240.23 5517081.158 12.454000000000008 568240.177 5517078.028 12.453000000000003 568240.318 5517078.023 12.54000000000002 568240.281 5517075.858 12.539000000000016 568240.229 5517072.777 12.538000000000011 568240.089 5517072.781 12.451000000000022 568240.025 5517068.647 12.454000000000008 568246.713 5517075.127 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_3724ea86-3d14-4ff2-891e-e2cbf16ca027">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2868ee38-334a-4803-baa4-38f6a24d368b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605145_3724ea86-3d14-4ff2-891e-e2cbf16ca027_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605145_3724ea86-3d14-4ff2-891e-e2cbf16ca027_poly_0_">
                      <gml:posList srsDimension="3">568253.294 5517074.115 0.0 568253.294 5517074.115 12.443000000000012 568253.239 5517068.52 12.420000000000016 568253.239 5517068.52 0.0 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:Building>
  </cityObjectMember><cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_605025">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9oeaE</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>Pestalozzistraße 3, 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>1946</bldg:yearOfConstruction>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">14.672</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_e95ee4ca-25a9-41c5-a620-025b6c6f5789">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_ce65c5a3-255a-41e2-8998-1287de086150">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605025_fecfece5-bbeb-4768-a635-98ae8a8fad72_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605025_be9b75fb-6618-416d-8fbf-17823bba6126_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605025_1fdfda80-7f1e-4163-83dd-2e028ba7139f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605025_74a0db2c-e555-4d71-a094-8fe1661d3673_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605025_54641e31-5e5c-4f00-b684-08d81fee7c7f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605025_22ded93a-6391-4858-96a8-ba8e220086a2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605025_8fa6d2f1-2cd4-4445-91d8-5d98dc9efca7_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605025_1750eeba-7d16-4a41-be19-97f3fe6b5011_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605025_aa500a53-d796-4962-bc42-7868952095d2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605025_0d40ef54-8a78-477e-bfed-c41f15c22a22_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605025_e36dd99c-bfb1-446c-959d-0e943518d0ae_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605025_d1fb2036-b509-4110-a322-2ef138b71e8b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605025_3514ba2d-ec7b-47a3-b49f-975da637c438_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605025_22ded93a-6391-4858-96a8-ba8e220086a2">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9150ba0d-f423-4d6a-ac1b-ded29da1f711">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605025_22ded93a-6391-4858-96a8-ba8e220086a2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605025_22ded93a-6391-4858-96a8-ba8e220086a2_poly_0_">
                      <gml:posList srsDimension="3">568471.415 5517137.537 0.0 568471.415 5517137.537 9.59699999999998 568471.459 5517137.449 9.599999999999994 568471.459 5517137.449 0.0 568471.415 5517137.537 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_605025_8fa6d2f1-2cd4-4445-91d8-5d98dc9efca7">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_94dedee3-3fa7-4879-b5ee-8971e57d0a97">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605025_8fa6d2f1-2cd4-4445-91d8-5d98dc9efca7_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605025_8fa6d2f1-2cd4-4445-91d8-5d98dc9efca7_poly_0_">
                      <gml:posList srsDimension="3">568460.954 5517134.605 0.0 568460.954 5517134.605 7.626999999999981 568459.385 5517137.513 7.614999999999981 568459.385 5517137.513 0.0 568460.954 5517134.605 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_605025_d1fb2036-b509-4110-a322-2ef138b71e8b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c9202197-edd5-4964-872d-48436cda71bb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605025_d1fb2036-b509-4110-a322-2ef138b71e8b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605025_d1fb2036-b509-4110-a322-2ef138b71e8b_poly_0_">
                      <gml:posList srsDimension="3">568467.506 5517135.429 14.671999999999997 568471.459 5517137.449 9.599999999999994 568471.415 5517137.537 9.59699999999998 568466.566 5517146.582 9.599999999999994 568462.602 5517144.584 14.671999999999997 568467.506 5517135.429 14.671999999999997</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_605025_74a0db2c-e555-4d71-a094-8fe1661d3673">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e59d5eaa-001b-42e5-9cc2-5b6faad1795f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605025_74a0db2c-e555-4d71-a094-8fe1661d3673_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605025_74a0db2c-e555-4d71-a094-8fe1661d3673_poly_0_">
                      <gml:posList srsDimension="3">568459.385 5517137.513 0.0 568459.385 5517137.513 7.614999999999981 568460.845 5517138.282 9.500999999999976 568460.845 5517138.282 0.0 568459.385 5517137.513 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_605025_1fdfda80-7f1e-4163-83dd-2e028ba7139f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9d3252b8-79a2-405f-9f10-fa8b49d1668e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605025_1fdfda80-7f1e-4163-83dd-2e028ba7139f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605025_1fdfda80-7f1e-4163-83dd-2e028ba7139f_poly_0_">
                      <gml:posList srsDimension="3">568467.506 5517135.429 0.0 568463.506 5517133.385 0.0 568463.447 5517133.355 0.0 568463.415 5517133.414 0.0 568462.395 5517135.353 0.0 568460.954 5517134.605 0.0 568459.385 5517137.513 0.0 568460.845 5517138.282 0.0 568458.591 5517142.562 0.0 568462.602 5517144.584 0.0 568466.566 5517146.582 0.0 568471.415 5517137.537 0.0 568471.459 5517137.449 0.0 568467.506 5517135.429 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605025_3514ba2d-ec7b-47a3-b49f-975da637c438">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fcd67f8c-d14c-440c-af77-5dd514dbaa09">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605025_3514ba2d-ec7b-47a3-b49f-975da637c438_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605025_3514ba2d-ec7b-47a3-b49f-975da637c438_poly_0_">
                      <gml:posList srsDimension="3">568460.954 5517134.605 7.626999999999981 568462.395 5517135.353 9.482 568463.415 5517133.414 9.461999999999989 568463.447 5517133.355 9.462999999999994 568463.506 5517133.385 9.538999999999987 568467.506 5517135.429 14.671999999999997 568462.602 5517144.584 14.671999999999997 568458.591 5517142.562 9.538999999999987 568460.845 5517138.282 9.500999999999976 568459.385 5517137.513 7.614999999999981 568460.954 5517134.605 7.626999999999981</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_605025_54641e31-5e5c-4f00-b684-08d81fee7c7f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_50b37fd6-f8de-4941-a0df-eeefeb4b6cbe">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605025_54641e31-5e5c-4f00-b684-08d81fee7c7f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605025_54641e31-5e5c-4f00-b684-08d81fee7c7f_poly_0_">
                      <gml:posList srsDimension="3">568458.591 5517142.562 9.538999999999987 568462.602 5517144.584 14.671999999999997 568466.566 5517146.582 9.599999999999994 568466.566 5517146.582 0.0 568462.602 5517144.584 0.0 568458.591 5517142.562 0.0 568458.591 5517142.562 9.538999999999987</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_605025_0d40ef54-8a78-477e-bfed-c41f15c22a22">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b503bb6e-15d2-4bb2-9ee7-d6064fc7058b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605025_0d40ef54-8a78-477e-bfed-c41f15c22a22_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605025_0d40ef54-8a78-477e-bfed-c41f15c22a22_poly_0_">
                      <gml:posList srsDimension="3">568463.415 5517133.414 0.0 568463.415 5517133.414 9.461999999999989 568462.395 5517135.353 9.482 568462.395 5517135.353 0.0 568463.415 5517133.414 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_605025_e36dd99c-bfb1-446c-959d-0e943518d0ae">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_444bf142-d2b4-4557-bb90-6231472eb1b8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605025_e36dd99c-bfb1-446c-959d-0e943518d0ae_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605025_e36dd99c-bfb1-446c-959d-0e943518d0ae_poly_0_">
                      <gml:posList srsDimension="3">568466.566 5517146.582 0.0 568466.566 5517146.582 9.599999999999994 568471.415 5517137.537 9.59699999999998 568471.415 5517137.537 0.0 568466.566 5517146.582 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_605025_be9b75fb-6618-416d-8fbf-17823bba6126">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ae096aa3-bd22-4cce-b52b-7b9af11f6f01">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605025_be9b75fb-6618-416d-8fbf-17823bba6126_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605025_be9b75fb-6618-416d-8fbf-17823bba6126_poly_0_">
                      <gml:posList srsDimension="3">568462.395 5517135.353 0.0 568462.395 5517135.353 9.482 568460.954 5517134.605 7.626999999999981 568460.954 5517134.605 0.0 568462.395 5517135.353 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_605025_1750eeba-7d16-4a41-be19-97f3fe6b5011">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_02c61c2c-3c8e-4dc1-bb8c-344199a82041">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605025_1750eeba-7d16-4a41-be19-97f3fe6b5011_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605025_1750eeba-7d16-4a41-be19-97f3fe6b5011_poly_0_">
                      <gml:posList srsDimension="3">568463.447 5517133.355 0.0 568463.506 5517133.385 0.0 568467.506 5517135.429 0.0 568471.459 5517137.449 0.0 568471.459 5517137.449 9.599999999999994 568467.506 5517135.429 14.671999999999997 568463.506 5517133.385 9.538999999999987 568463.447 5517133.355 9.462999999999994 568463.447 5517133.355 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_605025_aa500a53-d796-4962-bc42-7868952095d2">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8664a784-25fa-4756-88e8-3562819628b6">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605025_aa500a53-d796-4962-bc42-7868952095d2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605025_aa500a53-d796-4962-bc42-7868952095d2_poly_0_">
                      <gml:posList srsDimension="3">568463.447 5517133.355 0.0 568463.447 5517133.355 9.462999999999994 568463.415 5517133.414 9.461999999999989 568463.415 5517133.414 0.0 568463.447 5517133.355 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_605025_fecfece5-bbeb-4768-a635-98ae8a8fad72">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ab76b580-9ec3-44af-a418-455f1b1f8d33">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605025_fecfece5-bbeb-4768-a635-98ae8a8fad72_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605025_fecfece5-bbeb-4768-a635-98ae8a8fad72_poly_0_">
                      <gml:posList srsDimension="3">568460.845 5517138.282 0.0 568460.845 5517138.282 9.500999999999976 568458.591 5517142.562 9.538999999999987 568458.591 5517142.562 0.0 568460.845 5517138.282 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_605049">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odHk</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>Gutenbergstraße 14, 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>1948</bldg:yearOfConstruction>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">16.24</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_3ba098dd-6411-4a70-a5d2-b712bdb29ad9">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_a3c778c9-d942-49a2-87d9-57dc54378d48">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605049_93fe87d9-5330-49bc-98ff-c94ea880f925_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605049_80b7b150-ef96-4edf-a32f-bf093e21adbe_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605049_3a70c867-434b-4cfd-b3a3-84b0de7f096a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605049_0d88fc9c-217f-4172-be6f-2b9b2e356f13_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605049_2efd0934-2e36-41dc-a8fd-789df3314576_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605049_b1c2ad37-61da-4c7c-a39b-c6ed8e1924f7_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605049_eb70aceb-8977-4a55-8a82-57c3a9ad88bd_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605049_a2d8dfe0-d8d2-4641-958c-15ad14b78f40_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605049_b9908e2e-def0-4ddc-aed6-a50d82e049fb_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605049_b49761a5-498a-4f91-a2d5-22e664a2cc2f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605049_06be5e96-ece8-4f63-b7be-2a2afb5e9cbd_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605049_81a2bed8-4b8b-49c2-b707-f38f85d1c5b0_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605049_9f931dbf-6696-4c4d-8111-26543aa4b98a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605049_9bba9d2a-610d-49f4-bf2b-2daa47cd1f00_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605049_f7dd12ed-21d7-4259-99df-fb85cf43fe6a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605049_23cbfd80-ed7d-4b1f-9a90-d3afd569d784_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605049_35554377-6692-40cb-8d33-e284b29f26e7_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605049_dfa5588a-fbdd-4723-9f97-114e82838c44_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605049_2e2c5a55-7d23-4899-ae25-ca2df811bb80_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605049_ba6a145b-5de8-4dc3-9a6f-fba9aeb63ac2_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605049_35554377-6692-40cb-8d33-e284b29f26e7">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3878b010-fa14-481d-ac79-e0b5429806de">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605049_35554377-6692-40cb-8d33-e284b29f26e7_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605049_35554377-6692-40cb-8d33-e284b29f26e7_poly_0_">
                      <gml:posList srsDimension="3">568323.95 5517072.663 11.436000000000007 568324.348 5517076.691 11.436000000000007 568325.174 5517085.056 11.436000000000007 568325.178 5517085.095 11.389999999999986 568325.178 5517085.095 0.0 568325.174 5517085.056 0.0 568324.348 5517076.691 0.0 568323.95 5517072.663 0.0 568323.95 5517072.663 11.436000000000007</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_605049_b1c2ad37-61da-4c7c-a39b-c6ed8e1924f7">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4b40cc92-9a1a-4021-a920-c53f72745182">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605049_b1c2ad37-61da-4c7c-a39b-c6ed8e1924f7_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605049_b1c2ad37-61da-4c7c-a39b-c6ed8e1924f7_poly_0_">
                      <gml:posList srsDimension="3">568341.078 5517083.33 10.159999999999997 568341.078 5517083.33 11.37899999999999 568340.48 5517076.964 11.38900000000001 568340.48 5517076.964 10.159999999999997 568341.078 5517083.33 10.159999999999997</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_605049_a2d8dfe0-d8d2-4641-958c-15ad14b78f40">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8e801369-0ffb-4ef3-9212-c3cb2d4f786a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605049_a2d8dfe0-d8d2-4641-958c-15ad14b78f40_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605049_a2d8dfe0-d8d2-4641-958c-15ad14b78f40_poly_0_">
                      <gml:posList srsDimension="3">568329.201 5517072.096 16.24000000000001 568329.597 5517076.105 16.24000000000001 568330.011 5517080.307 16.24000000000001 568325.174 5517085.056 11.436000000000007 568324.348 5517076.691 11.436000000000007 568323.95 5517072.663 11.436000000000007 568329.201 5517072.096 16.24000000000001</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_605049_eb70aceb-8977-4a55-8a82-57c3a9ad88bd">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9f2138f4-08d4-41fb-8ac2-99fdf80cc506">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605049_eb70aceb-8977-4a55-8a82-57c3a9ad88bd_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605049_eb70aceb-8977-4a55-8a82-57c3a9ad88bd_poly_0_">
                      <gml:posList srsDimension="3">568341.078 5517083.33 11.37899999999999 568341.078 5517083.33 10.159999999999997 568343.261 5517083.086 10.159999999999997 568343.261 5517083.086 0.0 568341.078 5517083.33 0.0 568336.722 5517083.814 0.0 568336.722 5517083.814 11.379999999999995 568341.078 5517083.33 11.37899999999999</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_605049_dfa5588a-fbdd-4723-9f97-114e82838c44">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_86bbc877-2030-4256-870d-8ec238991d12">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605049_dfa5588a-fbdd-4723-9f97-114e82838c44_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605049_dfa5588a-fbdd-4723-9f97-114e82838c44_poly_0_">
                      <gml:posList srsDimension="3">568329.201 5517072.096 0.0 568334.51 5517071.524 0.0 568334.51 5517071.524 11.382000000000005 568329.201 5517072.096 16.24000000000001 568323.95 5517072.663 11.436000000000007 568323.95 5517072.663 0.0 568329.201 5517072.096 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_605049_0d88fc9c-217f-4172-be6f-2b9b2e356f13">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_87ce2b4a-49fb-4ec4-89d9-7175090554b1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605049_0d88fc9c-217f-4172-be6f-2b9b2e356f13_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605049_0d88fc9c-217f-4172-be6f-2b9b2e356f13_poly_0_">
                      <gml:posList srsDimension="3">568325.178 5517085.095 0.0 568325.178 5517085.095 11.389999999999986 568330.523 5517084.498 11.389999999999986 568330.523 5517084.498 0.0 568325.178 5517085.095 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_605049_3a70c867-434b-4cfd-b3a3-84b0de7f096a">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_48602fba-6e31-4bd7-8786-003bcd479e3f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605049_3a70c867-434b-4cfd-b3a3-84b0de7f096a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605049_3a70c867-434b-4cfd-b3a3-84b0de7f096a_poly_0_">
                      <gml:posList srsDimension="3">568343.261 5517083.086 0.0 568343.261 5517083.086 10.159999999999997 568342.668 5517076.762 10.159999999999997 568342.668 5517076.762 0.0 568343.261 5517083.086 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_605049_9bba9d2a-610d-49f4-bf2b-2daa47cd1f00">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_862bcfdc-1104-4fca-898d-21211743dc61">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605049_9bba9d2a-610d-49f4-bf2b-2daa47cd1f00_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605049_9bba9d2a-610d-49f4-bf2b-2daa47cd1f00_poly_0_">
                      <gml:posList srsDimension="3">568334.901 5517075.577 0.0 568340.176 5517075.048 0.0 568340.299 5517075.036 0.0 568340.299 5517075.036 11.389999999999986 568340.176 5517075.048 11.531000000000006 568334.901 5517075.577 11.462999999999994 568334.876 5517075.579 11.462999999999994 568334.876 5517075.579 0.0 568334.901 5517075.577 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_605049_2efd0934-2e36-41dc-a8fd-789df3314576">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_68669927-15ab-4760-94bb-97266dfe1182">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605049_2efd0934-2e36-41dc-a8fd-789df3314576_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605049_2efd0934-2e36-41dc-a8fd-789df3314576_poly_0_">
                      <gml:posList srsDimension="3">568340.48 5517076.964 0.0 568340.48 5517076.964 10.159999999999997 568340.48 5517076.964 11.38900000000001 568340.299 5517075.036 11.389999999999986 568340.299 5517075.036 0.0 568340.48 5517076.964 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_605049_23cbfd80-ed7d-4b1f-9a90-d3afd569d784">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b965a526-5953-4999-a9ba-fc06b7893771">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605049_23cbfd80-ed7d-4b1f-9a90-d3afd569d784_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605049_23cbfd80-ed7d-4b1f-9a90-d3afd569d784_poly_0_">
                      <gml:posList srsDimension="3">568330.523 5517084.498 0.0 568330.523 5517084.498 11.389999999999986 568330.589 5517085.1 10.693999999999988 568330.589 5517085.1 0.0 568330.523 5517084.498 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_605049_f7dd12ed-21d7-4259-99df-fb85cf43fe6a">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8c9d94b5-0522-4a4e-9c67-aa07169e6e3c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605049_f7dd12ed-21d7-4259-99df-fb85cf43fe6a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605049_f7dd12ed-21d7-4259-99df-fb85cf43fe6a_poly_0_">
                      <gml:posList srsDimension="3">568336.788 5517084.407 0.0 568336.788 5517084.407 10.693999999999988 568336.722 5517083.814 11.379999999999995 568336.722 5517083.814 0.0 568336.788 5517084.407 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605049_93fe87d9-5330-49bc-98ff-c94ea880f925">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_18260d0d-e43d-42df-83d0-979f0972ccb8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605049_93fe87d9-5330-49bc-98ff-c94ea880f925_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605049_93fe87d9-5330-49bc-98ff-c94ea880f925_poly_0_">
                      <gml:posList srsDimension="3">568342.668 5517076.762 0.0 568342.668 5517076.762 10.159999999999997 568340.48 5517076.964 10.159999999999997 568340.48 5517076.964 0.0 568342.668 5517076.762 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_605049_81a2bed8-4b8b-49c2-b707-f38f85d1c5b0">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_0535a1b6-30ea-45f1-aa8d-61189b28dbaf">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605049_81a2bed8-4b8b-49c2-b707-f38f85d1c5b0_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605049_81a2bed8-4b8b-49c2-b707-f38f85d1c5b0_poly_0_">
                      <gml:posList srsDimension="3">568334.51 5517071.524 11.382000000000005 568334.87 5517075.516 11.412000000000006 568334.872 5517075.536 11.413000000000011 568330.011 5517080.307 16.24000000000001 568329.597 5517076.105 16.24000000000001 568329.201 5517072.096 16.24000000000001 568334.51 5517071.524 11.382000000000005</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_605049_06be5e96-ece8-4f63-b7be-2a2afb5e9cbd">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3b00f604-a2cf-4f44-ad7f-44f01c72e826">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605049_06be5e96-ece8-4f63-b7be-2a2afb5e9cbd_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605049_06be5e96-ece8-4f63-b7be-2a2afb5e9cbd_poly_0_">
                      <gml:posList srsDimension="3">568335.782 5517084.519 10.693999999999988 568336.788 5517084.407 10.693999999999988 568336.788 5517084.407 0.0 568335.782 5517084.519 0.0 568330.589 5517085.1 0.0 568330.589 5517085.1 10.693999999999988 568335.782 5517084.519 10.693999999999988</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_605049_9f931dbf-6696-4c4d-8111-26543aa4b98a">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a5ce680c-e334-4a06-a236-6aa133b1e524">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605049_9f931dbf-6696-4c4d-8111-26543aa4b98a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605049_9f931dbf-6696-4c4d-8111-26543aa4b98a_poly_0_">
                      <gml:posList srsDimension="3">568342.668 5517076.762 10.159999999999997 568343.261 5517083.086 10.159999999999997 568341.078 5517083.33 10.159999999999997 568340.48 5517076.964 10.159999999999997 568342.668 5517076.762 10.159999999999997</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_605049_80b7b150-ef96-4edf-a32f-bf093e21adbe">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f60caa03-ed31-4164-a9db-263c09f15f68">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605049_80b7b150-ef96-4edf-a32f-bf093e21adbe_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605049_80b7b150-ef96-4edf-a32f-bf093e21adbe_poly_0_">
                      <gml:posList srsDimension="3">568340.176 5517075.048 11.531000000000006 568340.299 5517075.036 11.389999999999986 568340.48 5517076.964 11.38900000000001 568341.078 5517083.33 11.37899999999999 568336.481 5517079.584 16.24000000000001 568340.176 5517075.048 11.531000000000006</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_605049_b9908e2e-def0-4ddc-aed6-a50d82e049fb">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a3d6e0cb-253f-4afd-a3b0-3b0dce895c31">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605049_b9908e2e-def0-4ddc-aed6-a50d82e049fb_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605049_b9908e2e-def0-4ddc-aed6-a50d82e049fb_poly_0_">
                      <gml:posList srsDimension="3">568330.011 5517080.307 16.24000000000001 568335.309 5517079.715 16.24000000000001 568336.481 5517079.584 16.24000000000001 568341.078 5517083.33 11.37899999999999 568336.722 5517083.814 11.379999999999995 568336.788 5517084.407 10.693999999999988 568335.782 5517084.519 10.693999999999988 568330.589 5517085.1 10.693999999999988 568330.523 5517084.498 11.389999999999986 568325.178 5517085.095 11.389999999999986 568325.174 5517085.056 11.436000000000007 568330.011 5517080.307 16.24000000000001</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_605049_2e2c5a55-7d23-4899-ae25-ca2df811bb80">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_32c6a2d5-f681-4ad4-b59d-7936e93e0ff7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605049_2e2c5a55-7d23-4899-ae25-ca2df811bb80_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605049_2e2c5a55-7d23-4899-ae25-ca2df811bb80_poly_0_">
                      <gml:posList srsDimension="3">568342.668 5517076.762 0.0 568340.48 5517076.964 0.0 568340.299 5517075.036 0.0 568340.176 5517075.048 0.0 568334.901 5517075.577 0.0 568334.876 5517075.579 0.0 568334.872 5517075.536 0.0 568334.87 5517075.516 0.0 568334.51 5517071.524 0.0 568329.201 5517072.096 0.0 568323.95 5517072.663 0.0 568324.348 5517076.691 0.0 568325.174 5517085.056 0.0 568325.178 5517085.095 0.0 568330.523 5517084.498 0.0 568330.589 5517085.1 0.0 568335.782 5517084.519 0.0 568336.788 5517084.407 0.0 568336.722 5517083.814 0.0 568341.078 5517083.33 0.0 568343.261 5517083.086 0.0 568342.668 5517076.762 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605049_ba6a145b-5de8-4dc3-9a6f-fba9aeb63ac2">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6824b38a-82c2-44ea-bc0c-a31b99745e7f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605049_ba6a145b-5de8-4dc3-9a6f-fba9aeb63ac2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605049_ba6a145b-5de8-4dc3-9a6f-fba9aeb63ac2_poly_0_">
                      <gml:posList srsDimension="3">568334.872 5517075.536 11.413000000000011 568334.876 5517075.579 11.462999999999994 568334.901 5517075.577 11.462999999999994 568340.176 5517075.048 11.531000000000006 568336.481 5517079.584 16.24000000000001 568335.309 5517079.715 16.24000000000001 568330.011 5517080.307 16.24000000000001 568334.872 5517075.536 11.413000000000011</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_605049_b49761a5-498a-4f91-a2d5-22e664a2cc2f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f5c7c1b6-d3b9-4365-99e5-00a62f48b912">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605049_b49761a5-498a-4f91-a2d5-22e664a2cc2f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605049_b49761a5-498a-4f91-a2d5-22e664a2cc2f_poly_0_">
                      <gml:posList srsDimension="3">568334.51 5517071.524 0.0 568334.87 5517075.516 0.0 568334.872 5517075.536 0.0 568334.876 5517075.579 0.0 568334.876 5517075.579 11.462999999999994 568334.872 5517075.536 11.413000000000011 568334.87 5517075.516 11.412000000000006 568334.51 5517071.524 11.382000000000005 568334.51 5517071.524 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_605171">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9pJFL</name>
        </externalObject>
      </externalReference>
      <gen:stringAttribute name="comment">
        <gen:value>CityGML from BKG LoD2_32_56[68]_5516_2_BY.xml, with yearOfConstruction from Stadt_Würzburg_Wohngebäude_Baujahr_Untersuchungsgebiet.xlsx, 2023-02-22</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="address">
        <gen:value>Petrinistraße 13, 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>1954</bldg:yearOfConstruction>
      <bldg:roofType>3200</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">15.48</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_fb7f2a93-b09e-4d49-be48-6bd38c8b4dd4">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_370c85b3-de90-4d51-9111-857a6947a78c">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605171_2363a793-c4b0-4df6-b4a0-dfdd5a1602b6_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605171_942bd970-5ce3-4114-8c17-44253999e6a8_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605171_391e3336-1d9d-4f8d-986f-a63bfcb53d95_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605171_c16aa507-32ef-4681-8734-431235eab14d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605171_0ad231de-ba9d-4f3b-afd7-babb6487ebc4_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605171_426e07cd-c08d-4d7e-bfc8-ba736bcca341_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605171_64a204ad-476f-4992-aecc-49e5efde8e34_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605171_e4042eb6-2de7-43da-bbc0-1aa73e16c053_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605171_b28c9705-ca5d-4cd7-9580-e9ecded806ce_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605171_cb5ebc99-6e50-4fb6-9045-b8b87fb71e65_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605171_89f01ae5-e78f-47b9-a4ff-73afdbea2f6b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605171_4ae8541d-315b-4f7f-8d22-d9f77047c462_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605171_07f36265-2008-4521-ab0f-a6047880e6bb_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605171_42ad78d0-2d61-401e-920c-745d83c24801_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605171_32ea164b-6cd0-4db8-b0ad-553ea332f3b8_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605171_f74e8575-45dd-4213-9604-d94196bde491_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605171_0bb9abb8-de90-4b2b-9daa-577b21a10664_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605171_4718a781-c9aa-4b6d-b4e0-d37efae3421e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605171_6ce12658-273f-40d1-a285-35846e03f805_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605171_d7ccc210-f15c-47ff-ba7e-406fd978398b_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
For faster browsing, not all history is shown. View entire blame