Grombühl_v4_case_study.gml 6.37 MB
Newer Older
Eric Duminil's avatar
Eric Duminil committed
22001
22002
22003
22004
22005
22006
22007
22008
22009
22010
22011
22012
22013
22014
22015
22016
22017
22018
22019
22020
22021
22022
22023
22024
22025
22026
22027
22028
22029
22030
22031
22032
22033
22034
22035
22036
22037
22038
22039
22040
22041
22042
22043
22044
22045
22046
22047
22048
22049
22050
22051
22052
22053
22054
22055
22056
22057
22058
22059
22060
22061
22062
22063
22064
22065
22066
22067
22068
22069
22070
22071
22072
22073
22074
22075
22076
22077
22078
22079
22080
22081
22082
22083
22084
22085
22086
22087
22088
22089
22090
22091
22092
22093
22094
22095
22096
22097
22098
22099
22100
22101
22102
22103
22104
22105
22106
22107
22108
22109
22110
22111
22112
22113
22114
22115
22116
22117
22118
22119
22120
22121
22122
22123
22124
22125
22126
22127
22128
22129
22130
22131
22132
22133
22134
22135
22136
22137
22138
22139
22140
22141
22142
22143
22144
22145
22146
22147
22148
22149
22150
22151
22152
22153
22154
22155
22156
22157
22158
22159
22160
22161
22162
22163
22164
22165
22166
22167
22168
22169
22170
22171
22172
22173
22174
22175
22176
22177
22178
22179
22180
22181
22182
22183
22184
22185
22186
22187
22188
22189
22190
22191
22192
22193
22194
22195
22196
22197
22198
22199
22200
22201
22202
22203
22204
22205
22206
22207
22208
22209
22210
22211
22212
22213
22214
22215
22216
22217
22218
22219
22220
22221
22222
22223
22224
22225
22226
22227
22228
22229
22230
22231
22232
22233
22234
22235
22236
22237
22238
22239
22240
22241
22242
22243
22244
22245
22246
22247
22248
22249
22250
22251
22252
22253
22254
22255
22256
22257
22258
22259
22260
22261
22262
22263
22264
22265
22266
22267
22268
22269
22270
22271
22272
22273
22274
22275
22276
22277
22278
22279
22280
22281
22282
22283
22284
22285
22286
22287
22288
22289
22290
22291
22292
22293
22294
22295
22296
22297
22298
22299
22300
22301
22302
22303
22304
22305
22306
22307
22308
22309
22310
22311
22312
22313
22314
22315
22316
22317
22318
22319
22320
22321
22322
22323
22324
22325
22326
22327
22328
22329
22330
22331
22332
22333
22334
22335
22336
22337
22338
22339
22340
22341
22342
22343
22344
22345
22346
22347
22348
22349
22350
22351
22352
22353
22354
22355
22356
22357
22358
22359
22360
22361
22362
22363
22364
22365
22366
22367
22368
22369
22370
22371
22372
22373
22374
22375
22376
22377
22378
22379
22380
22381
22382
22383
22384
22385
22386
22387
22388
22389
22390
22391
22392
22393
22394
22395
22396
22397
22398
22399
22400
22401
22402
22403
22404
22405
22406
22407
22408
22409
22410
22411
22412
22413
22414
22415
22416
22417
22418
22419
22420
22421
22422
22423
22424
22425
22426
22427
22428
22429
22430
22431
22432
22433
22434
22435
22436
22437
22438
22439
22440
22441
22442
22443
22444
22445
22446
22447
22448
22449
22450
22451
22452
22453
22454
22455
22456
22457
22458
22459
22460
22461
22462
22463
22464
22465
22466
22467
22468
22469
22470
22471
22472
22473
22474
22475
22476
22477
22478
22479
22480
22481
22482
22483
22484
22485
22486
22487
22488
22489
22490
22491
22492
22493
22494
22495
22496
22497
22498
22499
22500
22501
22502
22503
22504
22505
22506
22507
22508
22509
22510
22511
22512
22513
22514
22515
22516
22517
22518
22519
22520
22521
22522
22523
22524
22525
22526
22527
22528
22529
22530
22531
22532
22533
22534
22535
22536
22537
22538
22539
22540
22541
22542
22543
22544
22545
22546
22547
22548
22549
22550
22551
22552
22553
22554
22555
22556
22557
22558
22559
22560
22561
22562
22563
22564
22565
22566
22567
22568
22569
22570
22571
22572
22573
22574
22575
22576
22577
22578
22579
22580
22581
22582
22583
22584
22585
22586
22587
22588
22589
22590
22591
22592
22593
22594
22595
22596
22597
22598
22599
22600
22601
22602
22603
22604
22605
22606
22607
22608
22609
22610
22611
22612
22613
22614
22615
22616
22617
22618
22619
22620
22621
22622
22623
22624
22625
22626
22627
22628
22629
22630
22631
22632
22633
22634
22635
22636
22637
22638
22639
22640
22641
22642
22643
22644
22645
22646
22647
22648
22649
22650
22651
22652
22653
22654
22655
22656
22657
22658
22659
22660
22661
22662
22663
22664
22665
22666
22667
22668
22669
22670
22671
22672
22673
22674
22675
22676
22677
22678
22679
22680
22681
22682
22683
22684
22685
22686
22687
22688
22689
22690
22691
22692
22693
22694
22695
22696
22697
22698
22699
22700
22701
22702
22703
22704
22705
22706
22707
22708
22709
22710
22711
22712
22713
22714
22715
22716
22717
22718
22719
22720
22721
22722
22723
22724
22725
22726
22727
22728
22729
22730
22731
22732
22733
22734
22735
22736
22737
22738
22739
22740
22741
22742
22743
22744
22745
22746
22747
22748
22749
22750
22751
22752
22753
22754
22755
22756
22757
22758
22759
22760
22761
22762
22763
22764
22765
22766
22767
22768
22769
22770
22771
22772
22773
22774
22775
22776
22777
22778
22779
22780
22781
22782
22783
22784
22785
22786
22787
22788
22789
22790
22791
22792
22793
22794
22795
22796
22797
22798
22799
22800
22801
22802
22803
22804
22805
22806
22807
22808
22809
22810
22811
22812
22813
22814
22815
22816
22817
22818
22819
22820
22821
22822
22823
22824
22825
22826
22827
22828
22829
22830
22831
22832
22833
22834
22835
22836
22837
22838
22839
22840
22841
22842
22843
22844
22845
22846
22847
22848
22849
22850
22851
22852
22853
22854
22855
22856
22857
22858
22859
22860
22861
22862
22863
22864
22865
22866
22867
22868
22869
22870
22871
22872
22873
22874
22875
22876
22877
22878
22879
22880
22881
22882
22883
22884
22885
22886
22887
22888
22889
22890
22891
22892
22893
22894
22895
22896
22897
22898
22899
22900
22901
22902
22903
22904
22905
22906
22907
22908
22909
22910
22911
22912
22913
22914
22915
22916
22917
22918
22919
22920
22921
22922
22923
22924
22925
22926
22927
22928
22929
22930
22931
22932
22933
22934
22935
22936
22937
22938
22939
22940
22941
22942
22943
22944
22945
22946
22947
22948
22949
22950
22951
22952
22953
22954
22955
22956
22957
22958
22959
22960
22961
22962
22963
22964
22965
22966
22967
22968
22969
22970
22971
22972
22973
22974
22975
22976
22977
22978
22979
22980
22981
22982
22983
22984
22985
22986
22987
22988
22989
22990
22991
22992
22993
22994
22995
22996
22997
22998
22999
23000
            <gml:MultiSurface gml:id="UUID_cdaa2fb3-bea0-4df5-a247-1ac9a9f81433">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605155_47376d89-c962-45f3-9436-3a3ef58b953e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605155_47376d89-c962-45f3-9436-3a3ef58b953e_poly_0_">
                      <gml:posList srsDimension="3">568313.536 5517086.379 13.227000000000004 568314.463 5517096.241 13.227000000000004 568315.104 5517103.046 13.227000000000004 568309.742 5517099.642 17.221000000000004 568309.272 5517094.655 17.221000000000004 568309.025 5517092.015 17.221000000000004 568313.536 5517086.379 13.227000000000004</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_605155_ce32aeca-b485-4530-8c5f-250f38aa3d6d">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4eccb2ad-140b-4764-a652-32fbc081c3ee">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605155_ce32aeca-b485-4530-8c5f-250f38aa3d6d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605155_ce32aeca-b485-4530-8c5f-250f38aa3d6d_poly_0_">
                      <gml:posList srsDimension="3">568304.035 5517093.108 13.233000000000004 568304.07 5517093.119 13.232 568304.068 5517093.096 13.215000000000003 568309.742 5517099.642 17.221000000000004 568304.499 5517098.04 17.221000000000004 568299.399 5517096.481 17.221000000000004 568296.282 5517090.76 13.25 568304.035 5517093.108 13.233000000000004</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_605155_eaa73dee-cf70-4030-86c3-49709ea3fd73">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_88c49cf5-6ef6-4d93-abd2-409bdbe0ae54">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605155_eaa73dee-cf70-4030-86c3-49709ea3fd73_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605155_eaa73dee-cf70-4030-86c3-49709ea3fd73_poly_0_">
                      <gml:posList srsDimension="3">568303.552 5517087.448 0.0 568313.536 5517086.379 0.0 568313.536 5517086.379 13.227000000000004 568303.552 5517087.448 13.227000000000004 568303.499 5517087.454 13.184000000000026 568303.499 5517087.454 0.0 568303.552 5517087.448 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_605155_9e433435-ac14-4015-ba77-573535fc8ef9">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e7c7c56e-6a2a-4693-9701-ae961de2680e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605155_9e433435-ac14-4015-ba77-573535fc8ef9_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605155_9e433435-ac14-4015-ba77-573535fc8ef9_poly_0_">
                      <gml:posList srsDimension="3">568296.26 5517090.753 13.230000000000018 568296.282 5517090.76 13.25 568299.399 5517096.481 17.221000000000004 568293.589 5517099.498 13.231000000000023 568296.26 5517090.753 13.230000000000018</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_605155_d2205694-82d6-458a-b060-c0d21abe7c82">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e02e50a5-1e23-47ca-804d-5a59bcba0b8b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605155_d2205694-82d6-458a-b060-c0d21abe7c82_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605155_d2205694-82d6-458a-b060-c0d21abe7c82_poly_0_">
                      <gml:posList srsDimension="3">568296.26 5517090.753 0.0 568296.26 5517090.753 13.230000000000018 568293.589 5517099.498 13.231000000000023 568293.589 5517099.498 0.0 568296.26 5517090.753 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_605155_3fc6fd00-ca7e-470e-8966-c76e3fbd4656">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9fdbcd32-d734-48cf-b96f-271341779215">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605155_3fc6fd00-ca7e-470e-8966-c76e3fbd4656_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605155_3fc6fd00-ca7e-470e-8966-c76e3fbd4656_poly_0_">
                      <gml:posList srsDimension="3">568312.407 5517105.247 0.0 568312.407 5517105.247 13.221000000000004 568315.104 5517103.046 13.227000000000004 568315.104 5517103.046 0.0 568312.407 5517105.247 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_605147">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9pJeQ</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 15, 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-25</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_1000</bldg:function>
      <bldg:yearOfConstruction>1958</bldg:yearOfConstruction>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">16.39</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_b9ad0cb0-8e6c-41ce-a08e-da847dcfb219">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_f45b4d58-d16d-45c7-a68b-0275b9844fc1">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605147_765551cc-687e-48f2-b931-d825ce3d7abb_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605147_15fd27a2-fbe6-4e92-8381-deb81998a7c2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605147_d0cd5b18-e33b-4fb3-ba19-3df7f968ae9d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605147_59df9a9d-f2a3-4498-b8aa-2a21b6dcdf6c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605147_5c942416-e060-4693-85e1-ceaafedc17aa_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605147_72174bf5-7263-43c9-a30d-23536f568594_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605147_bf3fed19-d06d-402f-a9f2-1be9e6815712_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605147_334ddbca-0ad5-4554-8d27-025c7821addd_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605147_27f4605a-4212-4c9d-a36f-aad6ed204dd5_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605147_7dcc4a9d-45a1-43ba-b6ba-6c25696f1a90_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605147_2aa8528d-b9c2-467c-8818-c8271a931c30_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605147_dc4ada2c-93ba-4719-9047-5726e3624d1f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605147_cbaabeaa-97f6-46db-b666-630d1ea3e053_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605147_2a4ff7e1-a832-4758-a70f-bf4d4c8829c1_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605147_0011dc0a-90a9-4285-8bee-7c5a668102a8_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605147_352bf1b3-2603-4980-917f-69e7e435d332_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605147_5c942416-e060-4693-85e1-ceaafedc17aa">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_72187314-deec-45d0-a2f8-46b93174dd45">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605147_5c942416-e060-4693-85e1-ceaafedc17aa_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605147_5c942416-e060-4693-85e1-ceaafedc17aa_poly_0_">
                      <gml:posList srsDimension="3">568309.284 5517042.988 11.122000000000014 568309.638 5517046.55 11.122000000000014 568309.867 5517048.873 11.122000000000014 568310.522 5517055.471 11.122000000000014 568310.495 5517055.474 11.150000000000006 568305.122 5517052.702 16.390000000000015 568304.792 5517049.378 16.390000000000015 568304.555 5517046.992 16.390000000000015 568304.202 5517043.43 16.390000000000015 568309.284 5517042.988 11.122000000000014</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_605147_2a4ff7e1-a832-4758-a70f-bf4d4c8829c1">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_db53bd98-65ad-454d-abe7-614addf25c0b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605147_2a4ff7e1-a832-4758-a70f-bf4d4c8829c1_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605147_2a4ff7e1-a832-4758-a70f-bf4d4c8829c1_poly_0_">
                      <gml:posList srsDimension="3">568298.25 5517053.386 16.390000000000015 568295.728 5517056.944 11.161000000000001 568295.068 5517050.404 11.161000000000001 568298.25 5517053.386 16.390000000000015</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_605147_72174bf5-7263-43c9-a30d-23536f568594">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a27e4650-48d3-4f48-aa0d-742790741faa">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605147_72174bf5-7263-43c9-a30d-23536f568594_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605147_72174bf5-7263-43c9-a30d-23536f568594_poly_0_">
                      <gml:posList srsDimension="3">568309.867 5517048.873 0.0 568309.638 5517046.55 0.0 568309.284 5517042.988 0.0 568304.202 5517043.43 0.0 568299.069 5517043.876 0.0 568299.477 5517047.433 0.0 568299.425 5517047.447 0.0 568297.83 5517047.877 0.0 568298.06 5517050.048 0.0 568298.062 5517050.066 0.0 568297.921 5517050.08 0.0 568295.062 5517050.345 0.0 568295.068 5517050.404 0.0 568295.728 5517056.944 0.0 568298.576 5517056.661 0.0 568300.323 5517056.486 0.0 568310.495 5517055.474 0.0 568310.522 5517055.471 0.0 568309.867 5517048.873 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_605147_0011dc0a-90a9-4285-8bee-7c5a668102a8">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_aeb9ad5d-6200-4c5b-b4af-84e9c2f698fd">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605147_0011dc0a-90a9-4285-8bee-7c5a668102a8_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605147_0011dc0a-90a9-4285-8bee-7c5a668102a8_poly_0_">
                      <gml:posList srsDimension="3">568299.425 5517047.447 11.070000000000022 568299.667 5517049.888 11.070000000000022 568298.06 5517050.048 11.070000000000022 568297.83 5517047.877 11.070000000000022 568299.425 5517047.447 11.070000000000022</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_605147_2aa8528d-b9c2-467c-8818-c8271a931c30">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2f5ac6c1-28c4-4edb-9ba0-e44aeab78ec3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605147_2aa8528d-b9c2-467c-8818-c8271a931c30_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605147_2aa8528d-b9c2-467c-8818-c8271a931c30_poly_0_">
                      <gml:posList srsDimension="3">568299.425 5517047.447 0.0 568299.477 5517047.433 0.0 568299.477 5517047.433 11.126000000000005 568299.425 5517047.447 11.070000000000022 568297.83 5517047.877 11.070000000000022 568297.83 5517047.877 0.0 568299.425 5517047.447 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_605147_dc4ada2c-93ba-4719-9047-5726e3624d1f">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1af6255b-3a03-4ecb-8c05-01dfd6650e33">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605147_dc4ada2c-93ba-4719-9047-5726e3624d1f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605147_dc4ada2c-93ba-4719-9047-5726e3624d1f_poly_0_">
                      <gml:posList srsDimension="3">568299.997 5517053.212 16.390000000000015 568305.122 5517052.702 16.390000000000015 568310.495 5517055.474 11.150000000000006 568300.323 5517056.486 11.150000000000006 568298.576 5517056.661 11.150000000000006 568298.25 5517053.386 16.390000000000015 568299.997 5517053.212 16.390000000000015</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_605147_59df9a9d-f2a3-4498-b8aa-2a21b6dcdf6c">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e32198fe-12a7-4c90-ad08-9eece7ddeb2d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605147_59df9a9d-f2a3-4498-b8aa-2a21b6dcdf6c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605147_59df9a9d-f2a3-4498-b8aa-2a21b6dcdf6c_poly_0_">
                      <gml:posList srsDimension="3">568298.25 5517053.386 16.390000000000015 568298.576 5517056.661 11.150000000000006 568295.728 5517056.944 11.161000000000001 568298.25 5517053.386 16.390000000000015</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_605147_cbaabeaa-97f6-46db-b666-630d1ea3e053">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7fda344f-47aa-4c74-b484-f1b90a85fe50">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605147_cbaabeaa-97f6-46db-b666-630d1ea3e053_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605147_cbaabeaa-97f6-46db-b666-630d1ea3e053_poly_0_">
                      <gml:posList srsDimension="3">568297.921 5517050.08 0.0 568298.062 5517050.066 0.0 568298.062 5517050.066 11.099000000000018 568297.921 5517050.08 11.097000000000008 568295.062 5517050.345 11.067000000000007 568295.062 5517050.345 0.0 568297.921 5517050.08 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_605147_15fd27a2-fbe6-4e92-8381-deb81998a7c2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2f80989c-3ea4-4756-8b72-66925df36461">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605147_15fd27a2-fbe6-4e92-8381-deb81998a7c2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605147_15fd27a2-fbe6-4e92-8381-deb81998a7c2_poly_0_">
                      <gml:posList srsDimension="3">568299.069 5517043.876 0.0 568299.069 5517043.876 11.070000000000022 568299.477 5517047.433 11.126000000000005 568299.477 5517047.433 0.0 568299.069 5517043.876 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_605147_765551cc-687e-48f2-b931-d825ce3d7abb">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4dc606d3-7dc4-41e2-b44b-9ef251862548">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605147_765551cc-687e-48f2-b931-d825ce3d7abb_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605147_765551cc-687e-48f2-b931-d825ce3d7abb_poly_0_">
                      <gml:posList srsDimension="3">568298.576 5517056.661 11.150000000000006 568300.323 5517056.486 11.150000000000006 568310.495 5517055.474 11.150000000000006 568310.522 5517055.471 11.122000000000014 568310.522 5517055.471 0.0 568310.495 5517055.474 0.0 568300.323 5517056.486 0.0 568298.576 5517056.661 0.0 568295.728 5517056.944 0.0 568295.728 5517056.944 11.161000000000001 568298.576 5517056.661 11.150000000000006</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_605147_d0cd5b18-e33b-4fb3-ba19-3df7f968ae9d">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_84d3fcd7-88e7-412e-b498-08084813bc29">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605147_d0cd5b18-e33b-4fb3-ba19-3df7f968ae9d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605147_d0cd5b18-e33b-4fb3-ba19-3df7f968ae9d_poly_0_">
                      <gml:posList srsDimension="3">568297.83 5517047.877 11.070000000000022 568298.06 5517050.048 11.070000000000022 568298.062 5517050.066 11.099000000000018 568298.062 5517050.066 0.0 568298.06 5517050.048 0.0 568297.83 5517047.877 0.0 568297.83 5517047.877 11.070000000000022</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_605147_7dcc4a9d-45a1-43ba-b6ba-6c25696f1a90">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_22a655d1-3b2b-4f01-927b-b1c76a8ebed0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605147_7dcc4a9d-45a1-43ba-b6ba-6c25696f1a90_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605147_7dcc4a9d-45a1-43ba-b6ba-6c25696f1a90_poly_0_">
                      <gml:posList srsDimension="3">568309.284 5517042.988 0.0 568309.638 5517046.55 0.0 568309.867 5517048.873 0.0 568310.522 5517055.471 0.0 568310.522 5517055.471 11.122000000000014 568309.867 5517048.873 11.122000000000014 568309.638 5517046.55 11.122000000000014 568309.284 5517042.988 11.122000000000014 568309.284 5517042.988 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_605147_352bf1b3-2603-4980-917f-69e7e435d332">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9b6773be-5c64-45b3-8738-bb6d6745d8b1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605147_352bf1b3-2603-4980-917f-69e7e435d332_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605147_352bf1b3-2603-4980-917f-69e7e435d332_poly_0_">
                      <gml:posList srsDimension="3">568297.921 5517050.08 11.097000000000008 568298.062 5517050.066 11.099000000000018 568298.06 5517050.048 11.070000000000022 568299.667 5517049.888 11.070000000000022 568305.122 5517052.702 16.390000000000015 568299.997 5517053.212 16.390000000000015 568298.25 5517053.386 16.390000000000015 568295.068 5517050.404 11.161000000000001 568295.062 5517050.345 11.067000000000007 568297.921 5517050.08 11.097000000000008</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_605147_bf3fed19-d06d-402f-a9f2-1be9e6815712">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_bdc11d3a-1bea-4024-a7ac-05f8cb2ff80b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605147_bf3fed19-d06d-402f-a9f2-1be9e6815712_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605147_bf3fed19-d06d-402f-a9f2-1be9e6815712_poly_0_">
                      <gml:posList srsDimension="3">568304.202 5517043.43 16.390000000000015 568304.555 5517046.992 16.390000000000015 568304.792 5517049.378 16.390000000000015 568305.122 5517052.702 16.390000000000015 568299.667 5517049.888 11.070000000000022 568299.425 5517047.447 11.070000000000022 568299.477 5517047.433 11.126000000000005 568299.069 5517043.876 11.070000000000022 568304.202 5517043.43 16.390000000000015</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_605147_27f4605a-4212-4c9d-a36f-aad6ed204dd5">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_546c39b4-0c0f-4b07-86f4-bd25e25d4a90">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605147_27f4605a-4212-4c9d-a36f-aad6ed204dd5_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605147_27f4605a-4212-4c9d-a36f-aad6ed204dd5_poly_0_">
                      <gml:posList srsDimension="3">568295.062 5517050.345 11.067000000000007 568295.068 5517050.404 11.161000000000001 568295.728 5517056.944 11.161000000000001 568295.728 5517056.944 0.0 568295.068 5517050.404 0.0 568295.062 5517050.345 0.0 568295.062 5517050.345 11.067000000000007</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_605147_334ddbca-0ad5-4554-8d27-025c7821addd">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8d24982b-662f-4ead-81e1-0800f7a6e73d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605147_334ddbca-0ad5-4554-8d27-025c7821addd_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605147_334ddbca-0ad5-4554-8d27-025c7821addd_poly_0_">
                      <gml:posList srsDimension="3">568304.202 5517043.43 0.0 568309.284 5517042.988 0.0 568309.284 5517042.988 11.122000000000014 568304.202 5517043.43 16.390000000000015 568299.069 5517043.876 11.070000000000022 568299.069 5517043.876 0.0 568304.202 5517043.43 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_605166">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9pI6n</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>Gabelsbergerstraß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>1959</bldg:yearOfConstruction>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">16.192</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_42b2097a-0f62-4125-94cb-78ef7663c360">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_6c95e366-fcb4-44e4-ba49-71dccfd6c727">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605166_e08307e0-32f9-464f-8bed-a8245e981810_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605166_f24ed8ce-b776-4606-a1b5-6f254ee52ae1_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605166_d08b7191-20c6-4d28-a87e-14e3da226e95_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605166_2396bd3b-15e9-434b-ba27-4ec7e25356b5_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605166_dc136189-70fd-4c88-99da-bd09a1437ce0_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605166_df5b5d9d-b91e-42b3-94e5-0b74e80e0680_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605166_a0711f62-0519-49f7-88d2-74d070f58bd6_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605166_df7c4d98-8280-4d8e-adcd-a69ee39f259d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605166_fb86429f-9833-4c64-9609-ecc4d28eb300_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605166_1de79c17-ba5d-4920-aa8f-ac23b1d87f1b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605166_37f0609e-2950-4a34-8f70-9317313dbb71_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605166_f5c9d058-7224-4c13-8f51-1423ef8b7fba_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605166_37f0609e-2950-4a34-8f70-9317313dbb71">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6dab82f2-34b8-4356-9ce4-32f98ac148d7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605166_37f0609e-2950-4a34-8f70-9317313dbb71_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605166_37f0609e-2950-4a34-8f70-9317313dbb71_poly_0_">
                      <gml:posList srsDimension="3">568226.497 5516957.347 0.0 568226.631 5516963.765 0.0 568226.845 5516973.954 0.0 568226.845 5516973.954 13.322000000000003 568226.631 5516963.765 13.322000000000003 568226.497 5516957.347 13.322000000000003 568226.497 5516957.347 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_605166_d08b7191-20c6-4d28-a87e-14e3da226e95">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_54be796e-5cb8-4608-892f-7e2c329d981d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605166_d08b7191-20c6-4d28-a87e-14e3da226e95_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605166_d08b7191-20c6-4d28-a87e-14e3da226e95_poly_0_">
                      <gml:posList srsDimension="3">568221.328 5516957.493 0.0 568226.497 5516957.347 0.0 568226.497 5516957.347 13.322000000000003 568221.328 5516957.493 16.192000000000007 568216.144 5516957.64 13.313999999999993 568216.144 5516957.64 0.0 568221.328 5516957.493 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_605166_fb86429f-9833-4c64-9609-ecc4d28eb300">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b8d501f7-bcec-4fd0-90a3-9e5b9029bede">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605166_fb86429f-9833-4c64-9609-ecc4d28eb300_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605166_fb86429f-9833-4c64-9609-ecc4d28eb300_poly_0_">
                      <gml:posList srsDimension="3">568210.552 5516964.389 13.313999999999993 568210.553 5516964.404 13.322000000000003 568210.816 5516974.542 13.322000000000003 568210.816 5516974.542 0.0 568210.553 5516964.404 0.0 568210.552 5516964.389 0.0 568210.552 5516964.389 13.313999999999993</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_605166_df7c4d98-8280-4d8e-adcd-a69ee39f259d">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f11b1eca-0174-40e8-bb02-00acf6911eee">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605166_df7c4d98-8280-4d8e-adcd-a69ee39f259d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605166_df7c4d98-8280-4d8e-adcd-a69ee39f259d_poly_0_">
                      <gml:posList srsDimension="3">568216.144 5516957.64 13.313999999999993 568216.291 5516964.143 13.319999999999993 568216.292 5516964.188 13.319999999999993 568216.292 5516964.188 0.0 568216.291 5516964.143 0.0 568216.144 5516957.64 0.0 568216.144 5516957.64 13.313999999999993</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_605166_f5c9d058-7224-4c13-8f51-1423ef8b7fba">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ac8da20c-04ae-473b-a8b8-96251d961054">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605166_f5c9d058-7224-4c13-8f51-1423ef8b7fba_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605166_f5c9d058-7224-4c13-8f51-1423ef8b7fba_poly_0_">
                      <gml:posList srsDimension="3">568215.752 5516969.286 16.192000000000007 568210.816 5516974.542 13.322000000000003 568210.553 5516964.404 13.322000000000003 568215.752 5516969.286 16.192000000000007</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_605166_2396bd3b-15e9-434b-ba27-4ec7e25356b5">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_acef2c57-24eb-4516-88c1-cf6d8aba9086">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605166_2396bd3b-15e9-434b-ba27-4ec7e25356b5_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605166_2396bd3b-15e9-434b-ba27-4ec7e25356b5_poly_0_">
                      <gml:posList srsDimension="3">568216.457 5516974.333 13.322000000000003 568226.845 5516973.954 13.322000000000003 568226.845 5516973.954 0.0 568216.457 5516974.333 0.0 568210.816 5516974.542 0.0 568210.816 5516974.542 13.322000000000003 568216.457 5516974.333 13.322000000000003</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_605166_df5b5d9d-b91e-42b3-94e5-0b74e80e0680">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_165745fd-2d1e-4076-9a63-2559e9ede940">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605166_df5b5d9d-b91e-42b3-94e5-0b74e80e0680_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605166_df5b5d9d-b91e-42b3-94e5-0b74e80e0680_poly_0_">
                      <gml:posList srsDimension="3">568215.752 5516969.286 16.192000000000007 568216.351 5516969.264 16.192000000000007 568221.571 5516969.073 16.192000000000007 568226.845 5516973.954 13.322000000000003 568216.457 5516974.333 13.322000000000003 568210.816 5516974.542 13.322000000000003 568215.752 5516969.286 16.192000000000007</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_605166_1de79c17-ba5d-4920-aa8f-ac23b1d87f1b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d4d5c78a-b137-4c9e-a5b2-cbdf4051eeec">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605166_1de79c17-ba5d-4920-aa8f-ac23b1d87f1b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605166_1de79c17-ba5d-4920-aa8f-ac23b1d87f1b_poly_0_">
                      <gml:posList srsDimension="3">568216.245 5516964.19 0.0 568216.292 5516964.188 0.0 568216.292 5516964.188 13.319999999999993 568216.245 5516964.19 13.319999999999993 568210.552 5516964.389 13.313999999999993 568210.552 5516964.389 0.0 568216.245 5516964.19 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_605166_e08307e0-32f9-464f-8bed-a8245e981810">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_914ba22f-019b-486a-9b92-86ca991b1982">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605166_e08307e0-32f9-464f-8bed-a8245e981810_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605166_e08307e0-32f9-464f-8bed-a8245e981810_poly_0_">
                      <gml:posList srsDimension="3">568216.245 5516964.19 13.319999999999993 568216.292 5516964.188 13.319999999999993 568221.571 5516969.073 16.192000000000007 568216.351 5516969.264 16.192000000000007 568215.752 5516969.286 16.192000000000007 568210.553 5516964.404 13.322000000000003 568210.552 5516964.389 13.313999999999993 568216.245 5516964.19 13.319999999999993</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_605166_dc136189-70fd-4c88-99da-bd09a1437ce0">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f5592485-0316-4c2b-a432-8c35e742e1f9">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605166_dc136189-70fd-4c88-99da-bd09a1437ce0_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605166_dc136189-70fd-4c88-99da-bd09a1437ce0_poly_0_">
                      <gml:posList srsDimension="3">568226.631 5516963.765 0.0 568226.497 5516957.347 0.0 568221.328 5516957.493 0.0 568216.144 5516957.64 0.0 568216.291 5516964.143 0.0 568216.292 5516964.188 0.0 568216.245 5516964.19 0.0 568210.552 5516964.389 0.0 568210.553 5516964.404 0.0 568210.816 5516974.542 0.0 568216.457 5516974.333 0.0 568226.845 5516973.954 0.0 568226.631 5516963.765 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_605166_a0711f62-0519-49f7-88d2-74d070f58bd6">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8e631658-617d-4c51-826a-caad31d87e4e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605166_a0711f62-0519-49f7-88d2-74d070f58bd6_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605166_a0711f62-0519-49f7-88d2-74d070f58bd6_poly_0_">
                      <gml:posList srsDimension="3">568226.497 5516957.347 13.322000000000003 568226.631 5516963.765 13.322000000000003 568226.845 5516973.954 13.322000000000003 568221.571 5516969.073 16.192000000000007 568221.463 5516963.953 16.192000000000007 568221.328 5516957.493 16.192000000000007 568226.497 5516957.347 13.322000000000003</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_605166_f24ed8ce-b776-4606-a1b5-6f254ee52ae1">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_162f5b91-4492-46ee-bf2e-8c92261a98b1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605166_f24ed8ce-b776-4606-a1b5-6f254ee52ae1_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605166_f24ed8ce-b776-4606-a1b5-6f254ee52ae1_poly_0_">
                      <gml:posList srsDimension="3">568221.328 5516957.493 16.192000000000007 568221.463 5516963.953 16.192000000000007 568221.571 5516969.073 16.192000000000007 568216.292 5516964.188 13.319999999999993 568216.291 5516964.143 13.319999999999993 568216.144 5516957.64 13.313999999999993 568221.328 5516957.493 16.192000000000007</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_605792">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9oeeD</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.303</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_f5a1b71f-f97b-4726-bb87-818a24518e3f">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_83e18e0d-d35b-4ea8-8331-4b7b17506c32">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605792_d06e985f-aeff-42f2-bef7-42a0123f8926_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605792_0840928d-9e07-4846-85e9-3fcd363697d1_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605792_54aef64c-bf42-4166-ab8c-d0e41dfa0892_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605792_e91c7244-d721-4a0d-822a-cf7333598a90_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605792_5bfa7c9e-1f43-4254-8f22-e6d29c786e05_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605792_abb1a5bf-80c0-4153-9123-2dc244e2842d_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605792_54aef64c-bf42-4166-ab8c-d0e41dfa0892">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ed608aef-30bb-40fd-97e1-315e928427e3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605792_54aef64c-bf42-4166-ab8c-d0e41dfa0892_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605792_54aef64c-bf42-4166-ab8c-d0e41dfa0892_poly_0_">
                      <gml:posList srsDimension="3">568532.128 5517048.027 0.0 568532.128 5517048.027 2.3029999999999973 568555.5 5517045.677 2.3029999999999973 568555.5 5517045.677 0.0 568532.128 5517048.027 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_605792_e91c7244-d721-4a0d-822a-cf7333598a90">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e3e73ad5-eb11-4787-9ea2-0c71fbbcd015">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605792_e91c7244-d721-4a0d-822a-cf7333598a90_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605792_e91c7244-d721-4a0d-822a-cf7333598a90_poly_0_">
                      <gml:posList srsDimension="3">568531.585 5517042.294 0.0 568531.585 5517042.294 2.3029999999999973 568532.128 5517048.027 2.3029999999999973 568532.128 5517048.027 0.0 568531.585 5517042.294 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_605792_d06e985f-aeff-42f2-bef7-42a0123f8926">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_bd721c73-4b73-4b0e-9bb5-0b91f706593e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605792_d06e985f-aeff-42f2-bef7-42a0123f8926_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605792_d06e985f-aeff-42f2-bef7-42a0123f8926_poly_0_">
                      <gml:posList srsDimension="3">568554.918 5517039.952 0.0 568554.918 5517039.952 2.3029999999999973 568531.585 5517042.294 2.3029999999999973 568531.585 5517042.294 0.0 568554.918 5517039.952 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_605792_5bfa7c9e-1f43-4254-8f22-e6d29c786e05">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8577a48d-a52f-4ead-b860-4ed8bea6658e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605792_5bfa7c9e-1f43-4254-8f22-e6d29c786e05_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605792_5bfa7c9e-1f43-4254-8f22-e6d29c786e05_poly_0_">
                      <gml:posList srsDimension="3">568531.585 5517042.294 0.0 568532.128 5517048.027 0.0 568555.5 5517045.677 0.0 568554.918 5517039.952 0.0 568531.585 5517042.294 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_605792_0840928d-9e07-4846-85e9-3fcd363697d1">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fe6e8f0c-e237-44b2-b271-9ca2ae003ddc">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605792_0840928d-9e07-4846-85e9-3fcd363697d1_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605792_0840928d-9e07-4846-85e9-3fcd363697d1_poly_0_">
                      <gml:posList srsDimension="3">568554.918 5517039.952 2.3029999999999973 568555.5 5517045.677 2.3029999999999973 568532.128 5517048.027 2.3029999999999973 568531.585 5517042.294 2.3029999999999973 568554.918 5517039.952 2.3029999999999973</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_605792_abb1a5bf-80c0-4153-9123-2dc244e2842d">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2c25e02e-e724-4e48-b79b-c9178f554357">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605792_abb1a5bf-80c0-4153-9123-2dc244e2842d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605792_abb1a5bf-80c0-4153-9123-2dc244e2842d_poly_0_">
                      <gml:posList srsDimension="3">568555.5 5517045.677 0.0 568555.5 5517045.677 2.3029999999999973 568554.918 5517039.952 2.3029999999999973 568554.918 5517039.952 0.0 568555.5 5517045.677 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_605105">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odFc</name>
        </externalObject>
      </externalReference>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2019-09-25</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_9998</bldg:function>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">19.382</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_5ff6decc-1ab7-48b8-8bba-9f83de77ef25">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_9c0cc47b-cef5-42f3-8e02-43bac9194558">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_3d3e4505-2fb9-4808-825e-74630bf481ea_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_f2a454e3-23de-487f-9702-b85c06d5e2a3_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_a0a8b0ab-3b82-49e2-a23d-db80bd227650_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_4152a5b2-c56e-4a91-ab27-02f5b87aa46e_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_eb612679-afc5-4b2c-9fd8-8940ab58ba95_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_e3fbcd74-a1f7-451d-b983-cacc022af55c_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_0e6e9f68-c6a0-4325-a08f-73b77821a630_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_a76105d9-7de5-4396-ba8c-d2cce82463c3_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_ba572466-c254-4d67-b7bb-c05423bbed5b_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_608fec74-04e7-4cb5-aa7a-3630bef72979_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_a4c4f256-89ad-46de-addd-ba065ad99ebb_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_8fb8295b-de51-4b56-8020-c34de1923da4_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_02a3a750-3ed5-40cf-8042-66de93682d23_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_32950acb-c368-4da9-8565-0ca490602226_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_2118e4c8-047c-4c00-928a-486e3ab21d4b_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_a53c1b3b-e061-4cc2-8924-aa64172cdba2_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_05f0f941-cfed-4056-ad01-d08fd0a50c93_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_74a80c20-b56f-416d-a27b-9f4bc4076dde_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_465ac6e5-1e53-411c-ae3d-42fe1a2b6801_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_a42fd02e-8c92-4c17-8492-03b0e2ea2cff_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_cd92da40-25f8-40c8-8fac-0cc1a1e80128_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_ec0cc325-27e0-433d-9751-99bc9e4d6710_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_a5045177-1622-4bf7-b358-17b5d8a44793_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_a59e0b5c-62c5-4fb4-b8d7-169107484458_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_83a694ff-b208-41df-99e1-d5198fec0caf_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_c60360bc-9da1-4d51-b8f1-955aeefa112c_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_07aa5816-8bce-425e-aba3-588b35a472e7_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_61b5f2f2-46c8-4b9a-b233-b905893b6468_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_63d451b3-5915-41c1-885f-184293d402c5_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605105_eb298715-c364-4236-8468-ac9c576d38c8_2_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605105_a4c4f256-89ad-46de-addd-ba065ad99ebb_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e1071f14-c35d-446a-aad9-129a68dc6621">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605105_a4c4f256-89ad-46de-addd-ba065ad99ebb_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605105_a4c4f256-89ad-46de-addd-ba065ad99ebb_2_poly_0_">
                      <gml:posList srsDimension="3">568473.447 5516930.443 3.9329999999999927 568473.447 5516930.443 14.420000000000016 568472.859 5516928.244 14.420000000000016 568472.859 5516928.244 3.9329999999999927 568473.447 5516930.443 3.9329999999999927</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_605105_63d451b3-5915-41c1-885f-184293d402c5_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_643e932d-9b3a-425f-88a2-85809d3bd321">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605105_63d451b3-5915-41c1-885f-184293d402c5_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605105_63d451b3-5915-41c1-885f-184293d402c5_2_poly_0_">
                      <gml:posList srsDimension="3">568467.96 5516944.19 0.0 568465.61 5516942.55 0.0 568465.61 5516942.55 14.471000000000004 568466.649 5516943.275 15.22399999999999 568467.96 5516944.19 14.457999999999998 568467.96 5516944.19 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_605105_608fec74-04e7-4cb5-aa7a-3630bef72979_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f2075b5d-e503-434e-8b6c-2793551b61a0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605105_608fec74-04e7-4cb5-aa7a-3630bef72979_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605105_608fec74-04e7-4cb5-aa7a-3630bef72979_2_poly_0_">
                      <gml:posList srsDimension="3">568472.43 5516931.46 0.0 568472.69 5516932.32 0.0 568472.69 5516932.32 15.575000000000017 568472.678 5516932.28 15.544000000000011 568472.43 5516931.46 15.569999999999993 568472.43 5516931.46 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
For faster browsing, not all history is shown. View entire blame