Grombühl_v4_case_study.gml 6.37 MB
Newer Older
Eric Duminil's avatar
Eric Duminil committed
47001
47002
47003
47004
47005
47006
47007
47008
47009
47010
47011
47012
47013
47014
47015
47016
47017
47018
47019
47020
47021
47022
47023
47024
47025
47026
47027
47028
47029
47030
47031
47032
47033
47034
47035
47036
47037
47038
47039
47040
47041
47042
47043
47044
47045
47046
47047
47048
47049
47050
47051
47052
47053
47054
47055
47056
47057
47058
47059
47060
47061
47062
47063
47064
47065
47066
47067
47068
47069
47070
47071
47072
47073
47074
47075
47076
47077
47078
47079
47080
47081
47082
47083
47084
47085
47086
47087
47088
47089
47090
47091
47092
47093
47094
47095
47096
47097
47098
47099
47100
47101
47102
47103
47104
47105
47106
47107
47108
47109
47110
47111
47112
47113
47114
47115
47116
47117
47118
47119
47120
47121
47122
47123
47124
47125
47126
47127
47128
47129
47130
47131
47132
47133
47134
47135
47136
47137
47138
47139
47140
47141
47142
47143
47144
47145
47146
47147
47148
47149
47150
47151
47152
47153
47154
47155
47156
47157
47158
47159
47160
47161
47162
47163
47164
47165
47166
47167
47168
47169
47170
47171
47172
47173
47174
47175
47176
47177
47178
47179
47180
47181
47182
47183
47184
47185
47186
47187
47188
47189
47190
47191
47192
47193
47194
47195
47196
47197
47198
47199
47200
47201
47202
47203
47204
47205
47206
47207
47208
47209
47210
47211
47212
47213
47214
47215
47216
47217
47218
47219
47220
47221
47222
47223
47224
47225
47226
47227
47228
47229
47230
47231
47232
47233
47234
47235
47236
47237
47238
47239
47240
47241
47242
47243
47244
47245
47246
47247
47248
47249
47250
47251
47252
47253
47254
47255
47256
47257
47258
47259
47260
47261
47262
47263
47264
47265
47266
47267
47268
47269
47270
47271
47272
47273
47274
47275
47276
47277
47278
47279
47280
47281
47282
47283
47284
47285
47286
47287
47288
47289
47290
47291
47292
47293
47294
47295
47296
47297
47298
47299
47300
47301
47302
47303
47304
47305
47306
47307
47308
47309
47310
47311
47312
47313
47314
47315
47316
47317
47318
47319
47320
47321
47322
47323
47324
47325
47326
47327
47328
47329
47330
47331
47332
47333
47334
47335
47336
47337
47338
47339
47340
47341
47342
47343
47344
47345
47346
47347
47348
47349
47350
47351
47352
47353
47354
47355
47356
47357
47358
47359
47360
47361
47362
47363
47364
47365
47366
47367
47368
47369
47370
47371
47372
47373
47374
47375
47376
47377
47378
47379
47380
47381
47382
47383
47384
47385
47386
47387
47388
47389
47390
47391
47392
47393
47394
47395
47396
47397
47398
47399
47400
47401
47402
47403
47404
47405
47406
47407
47408
47409
47410
47411
47412
47413
47414
47415
47416
47417
47418
47419
47420
47421
47422
47423
47424
47425
47426
47427
47428
47429
47430
47431
47432
47433
47434
47435
47436
47437
47438
47439
47440
47441
47442
47443
47444
47445
47446
47447
47448
47449
47450
47451
47452
47453
47454
47455
47456
47457
47458
47459
47460
47461
47462
47463
47464
47465
47466
47467
47468
47469
47470
47471
47472
47473
47474
47475
47476
47477
47478
47479
47480
47481
47482
47483
47484
47485
47486
47487
47488
47489
47490
47491
47492
47493
47494
47495
47496
47497
47498
47499
47500
47501
47502
47503
47504
47505
47506
47507
47508
47509
47510
47511
47512
47513
47514
47515
47516
47517
47518
47519
47520
47521
47522
47523
47524
47525
47526
47527
47528
47529
47530
47531
47532
47533
47534
47535
47536
47537
47538
47539
47540
47541
47542
47543
47544
47545
47546
47547
47548
47549
47550
47551
47552
47553
47554
47555
47556
47557
47558
47559
47560
47561
47562
47563
47564
47565
47566
47567
47568
47569
47570
47571
47572
47573
47574
47575
47576
47577
47578
47579
47580
47581
47582
47583
47584
47585
47586
47587
47588
47589
47590
47591
47592
47593
47594
47595
47596
47597
47598
47599
47600
47601
47602
47603
47604
47605
47606
47607
47608
47609
47610
47611
47612
47613
47614
47615
47616
47617
47618
47619
47620
47621
47622
47623
47624
47625
47626
47627
47628
47629
47630
47631
47632
47633
47634
47635
47636
47637
47638
47639
47640
47641
47642
47643
47644
47645
47646
47647
47648
47649
47650
47651
47652
47653
47654
47655
47656
47657
47658
47659
47660
47661
47662
47663
47664
47665
47666
47667
47668
47669
47670
47671
47672
47673
47674
47675
47676
47677
47678
47679
47680
47681
47682
47683
47684
47685
47686
47687
47688
47689
47690
47691
47692
47693
47694
47695
47696
47697
47698
47699
47700
47701
47702
47703
47704
47705
47706
47707
47708
47709
47710
47711
47712
47713
47714
47715
47716
47717
47718
47719
47720
47721
47722
47723
47724
47725
47726
47727
47728
47729
47730
47731
47732
47733
47734
47735
47736
47737
47738
47739
47740
47741
47742
47743
47744
47745
47746
47747
47748
47749
47750
47751
47752
47753
47754
47755
47756
47757
47758
47759
47760
47761
47762
47763
47764
47765
47766
47767
47768
47769
47770
47771
47772
47773
47774
47775
47776
47777
47778
47779
47780
47781
47782
47783
47784
47785
47786
47787
47788
47789
47790
47791
47792
47793
47794
47795
47796
47797
47798
47799
47800
47801
47802
47803
47804
47805
47806
47807
47808
47809
47810
47811
47812
47813
47814
47815
47816
47817
47818
47819
47820
47821
47822
47823
47824
47825
47826
47827
47828
47829
47830
47831
47832
47833
47834
47835
47836
47837
47838
47839
47840
47841
47842
47843
47844
47845
47846
47847
47848
47849
47850
47851
47852
47853
47854
47855
47856
47857
47858
47859
47860
47861
47862
47863
47864
47865
47866
47867
47868
47869
47870
47871
47872
47873
47874
47875
47876
47877
47878
47879
47880
47881
47882
47883
47884
47885
47886
47887
47888
47889
47890
47891
47892
47893
47894
47895
47896
47897
47898
47899
47900
47901
47902
47903
47904
47905
47906
47907
47908
47909
47910
47911
47912
47913
47914
47915
47916
47917
47918
47919
47920
47921
47922
47923
47924
47925
47926
47927
47928
47929
47930
47931
47932
47933
47934
47935
47936
47937
47938
47939
47940
47941
47942
47943
47944
47945
47946
47947
47948
47949
47950
47951
47952
47953
47954
47955
47956
47957
47958
47959
47960
47961
47962
47963
47964
47965
47966
47967
47968
47969
47970
47971
47972
47973
47974
47975
47976
47977
47978
47979
47980
47981
47982
47983
47984
47985
47986
47987
47988
47989
47990
47991
47992
47993
47994
47995
47996
47997
47998
47999
48000
            <gml:MultiSurface gml:id="UUID_b3aa12e0-f94b-4ccd-9f4e-fea24fe252cc">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605057_7c49a688-3243-4cac-a99d-6b81c153a94a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605057_7c49a688-3243-4cac-a99d-6b81c153a94a_poly_0_">
                      <gml:posList srsDimension="3">568410.804 5517087.989 16.629999999999995 568421.527 5517086.426 16.629999999999995 568422.337 5517091.921 12.246999999999986 568406.113 5517094.287 12.246999999999986 568410.804 5517087.989 16.629999999999995</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_605057_4fb63483-3a85-4de0-880b-e650f6b2bac5">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9e3e7304-edf4-443d-ba25-c8af855eac1d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605057_4fb63483-3a85-4de0-880b-e650f6b2bac5_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605057_4fb63483-3a85-4de0-880b-e650f6b2bac5_poly_0_">
                      <gml:posList srsDimension="3">568406.113 5517094.287 12.246999999999986 568422.337 5517091.921 12.246999999999986 568422.337 5517091.921 0.0 568406.113 5517094.287 0.0 568406.082 5517094.292 0.0 568406.082 5517094.292 12.222000000000008 568406.113 5517094.287 12.246999999999986</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_605057_cfd7db61-e575-4a67-ac3a-d5f0e6f02f49">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_77d27d81-1685-439c-bf7a-684a3bb93378">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605057_cfd7db61-e575-4a67-ac3a-d5f0e6f02f49_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605057_cfd7db61-e575-4a67-ac3a-d5f0e6f02f49_poly_0_">
                      <gml:posList srsDimension="3">568421.527 5517086.426 0.0 568420.718 5517080.928 0.0 568404.514 5517083.298 0.0 568406.082 5517094.292 0.0 568406.113 5517094.287 0.0 568422.337 5517091.921 0.0 568421.527 5517086.426 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_605057_c0149f13-741a-40e7-b2f4-532fb6e671a0">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ddc5b26b-9f0b-4d32-9435-8834c2fe734b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605057_c0149f13-741a-40e7-b2f4-532fb6e671a0_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605057_c0149f13-741a-40e7-b2f4-532fb6e671a0_poly_0_">
                      <gml:posList srsDimension="3">568404.514 5517083.298 0.0 568404.514 5517083.298 12.260999999999996 568406.082 5517094.292 12.222000000000008 568406.082 5517094.292 0.0 568404.514 5517083.298 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_605057_41dade00-b42f-4056-80b0-8cb8b904c35c">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ee6931f8-56c4-456d-bf7b-df066f8b384e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605057_41dade00-b42f-4056-80b0-8cb8b904c35c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605057_41dade00-b42f-4056-80b0-8cb8b904c35c_poly_0_">
                      <gml:posList srsDimension="3">568410.804 5517087.989 16.629999999999995 568406.113 5517094.287 12.246999999999986 568406.082 5517094.292 12.222000000000008 568404.514 5517083.298 12.260999999999996 568410.804 5517087.989 16.629999999999995</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_605057_6e8df28b-9bf2-4fe6-b3e4-97f8a1a83626">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_88fed623-be79-4b2e-959e-71d73d26034e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605057_6e8df28b-9bf2-4fe6-b3e4-97f8a1a83626_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605057_6e8df28b-9bf2-4fe6-b3e4-97f8a1a83626_poly_0_">
                      <gml:posList srsDimension="3">568420.718 5517080.928 12.244 568421.527 5517086.426 16.629999999999995 568410.804 5517087.989 16.629999999999995 568404.514 5517083.298 12.260999999999996 568420.718 5517080.928 12.244</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_605073">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9od4Z</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-24</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_1000</bldg:function>
      <bldg:yearOfConstruction>1928</bldg:yearOfConstruction>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">4.303</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_3e540af4-698f-43e1-b7d3-9e008b773d6d">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_5a7533d2-f3ae-4eed-ab11-d677b8ec8f52">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605073_16c864ce-c67a-4ad2-af6d-2734ccd25d97_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605073_1836b1c5-b039-43e3-948b-b2db9d9512eb_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605073_8df54104-d8c8-46b4-80f2-312153c21832_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605073_dac42c7f-f400-4373-a2ac-9133fa51a499_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605073_756df5a2-521c-483b-bcd8-d6442ae88f69_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605073_b6cf3157-7628-42b5-a0ea-d730c590f4c3_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605073_b0ac6c10-c476-4689-8526-a6a45f617bbd_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605073_5f0e21f8-09a7-4606-ba2a-e66f09f56f20_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605073_da847ed5-a14a-445c-bbd1-9cfa8029826f_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605073_756df5a2-521c-483b-bcd8-d6442ae88f69">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_86462feb-df35-4e46-8d04-cc2f9c299824">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605073_756df5a2-521c-483b-bcd8-d6442ae88f69_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605073_756df5a2-521c-483b-bcd8-d6442ae88f69_poly_0_">
                      <gml:posList srsDimension="3">568458.565 5516980.659 4.067999999999984 568458.373 5516978.337 3.526999999999987 568458.373 5516978.337 0.0 568458.565 5516980.659 0.0 568458.649 5516981.668 0.0 568458.924 5516984.991 0.0 568458.924 5516984.991 3.530000000000001 568458.649 5516981.668 4.302999999999997 568458.565 5516980.659 4.067999999999984</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_605073_dac42c7f-f400-4373-a2ac-9133fa51a499">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3ea85bca-506a-4ffc-968b-f7a431145eae">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605073_dac42c7f-f400-4373-a2ac-9133fa51a499_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605073_dac42c7f-f400-4373-a2ac-9133fa51a499_poly_0_">
                      <gml:posList srsDimension="3">568452.978 5516985.382 0.0 568452.978 5516985.382 3.5260000000000105 568458.924 5516984.991 3.530000000000001 568458.924 5516984.991 0.0 568452.978 5516985.382 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_605073_b6cf3157-7628-42b5-a0ea-d730c590f4c3">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6f2c4dfb-4962-49a5-a219-49b04ae4214c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605073_b6cf3157-7628-42b5-a0ea-d730c590f4c3_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605073_b6cf3157-7628-42b5-a0ea-d730c590f4c3_poly_0_">
                      <gml:posList srsDimension="3">568451.807 5516978.753 3.526999999999987 568452.055 5516982.086 4.302999999999997 568452.111 5516982.846 4.126000000000005 568452.111 5516982.846 0.0 568452.055 5516982.086 0.0 568451.807 5516978.753 0.0 568451.807 5516978.753 3.526999999999987</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_605073_16c864ce-c67a-4ad2-af6d-2734ccd25d97">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7e66c711-a045-48cb-bca2-1adc989607bb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605073_16c864ce-c67a-4ad2-af6d-2734ccd25d97_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605073_16c864ce-c67a-4ad2-af6d-2734ccd25d97_poly_0_">
                      <gml:posList srsDimension="3">568452.111 5516982.846 0.0 568452.111 5516982.846 4.126000000000005 568452.474 5516982.771 4.138000000000005 568452.474 5516982.771 0.0 568452.111 5516982.846 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_605073_1836b1c5-b039-43e3-948b-b2db9d9512eb">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_920e299e-4b5f-480b-834d-6659fbe1c191">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605073_1836b1c5-b039-43e3-948b-b2db9d9512eb_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605073_1836b1c5-b039-43e3-948b-b2db9d9512eb_poly_0_">
                      <gml:posList srsDimension="3">568458.649 5516981.668 0.0 568458.565 5516980.659 0.0 568458.373 5516978.337 0.0 568458.286 5516978.343 0.0 568451.807 5516978.753 0.0 568452.055 5516982.086 0.0 568452.111 5516982.846 0.0 568452.474 5516982.771 0.0 568452.978 5516985.382 0.0 568458.924 5516984.991 0.0 568458.649 5516981.668 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_605073_b0ac6c10-c476-4689-8526-a6a45f617bbd">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4e9cc6e4-60c7-41a9-86d2-0e30909053c9">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605073_b0ac6c10-c476-4689-8526-a6a45f617bbd_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605073_b0ac6c10-c476-4689-8526-a6a45f617bbd_poly_0_">
                      <gml:posList srsDimension="3">568458.286 5516978.343 0.0 568458.373 5516978.337 0.0 568458.373 5516978.337 3.526999999999987 568458.286 5516978.343 3.526999999999987 568451.807 5516978.753 3.526999999999987 568451.807 5516978.753 0.0 568458.286 5516978.343 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_605073_da847ed5-a14a-445c-bbd1-9cfa8029826f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a54f3fc2-3e29-4f50-8ae5-d98b82dfa831">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605073_da847ed5-a14a-445c-bbd1-9cfa8029826f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605073_da847ed5-a14a-445c-bbd1-9cfa8029826f_poly_0_">
                      <gml:posList srsDimension="3">568458.286 5516978.343 3.526999999999987 568458.373 5516978.337 3.526999999999987 568458.565 5516980.659 4.067999999999984 568458.649 5516981.668 4.302999999999997 568452.055 5516982.086 4.302999999999997 568451.807 5516978.753 3.526999999999987 568458.286 5516978.343 3.526999999999987</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_605073_5f0e21f8-09a7-4606-ba2a-e66f09f56f20">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5c739404-d549-4259-9e27-077b097dcb3d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605073_5f0e21f8-09a7-4606-ba2a-e66f09f56f20_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605073_5f0e21f8-09a7-4606-ba2a-e66f09f56f20_poly_0_">
                      <gml:posList srsDimension="3">568452.474 5516982.771 0.0 568452.474 5516982.771 4.138000000000005 568452.978 5516985.382 3.5260000000000105 568452.978 5516985.382 0.0 568452.474 5516982.771 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_605073_8df54104-d8c8-46b4-80f2-312153c21832">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_78ebdcfa-3864-4586-8afb-c5c37feaa1ad">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605073_8df54104-d8c8-46b4-80f2-312153c21832_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605073_8df54104-d8c8-46b4-80f2-312153c21832_poly_0_">
                      <gml:posList srsDimension="3">568458.649 5516981.668 4.302999999999997 568458.924 5516984.991 3.530000000000001 568452.978 5516985.382 3.5260000000000105 568452.474 5516982.771 4.138000000000005 568452.111 5516982.846 4.126000000000005 568452.055 5516982.086 4.302999999999997 568458.649 5516981.668 4.302999999999997</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_605781">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odED</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">6.013</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_95fd247a-d11a-408b-a547-8f6da81714b3">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_a094400b-2888-4774-a96f-f2d8ba028c08">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605781_b7c2e5e0-01eb-4c2a-af09-cc06bb54797d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605781_1f4a07e9-9ac3-465f-84b7-db6501354ced_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605781_5510116c-c791-4a48-8854-4176da9514f7_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605781_3f029832-a65f-4f0d-8e13-23b5c8374a40_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605781_549a8402-d059-4a7b-b44e-59f9404255f9_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605781_cb0b6483-a80f-4fad-952a-46e7201e5e89_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605781_8e0b22b9-e40c-4854-a11d-e2ff9f245c0e_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605781_b7c2e5e0-01eb-4c2a-af09-cc06bb54797d">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_52cfd1b5-5c20-46c6-8c6c-cf51a85297ad">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605781_b7c2e5e0-01eb-4c2a-af09-cc06bb54797d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605781_b7c2e5e0-01eb-4c2a-af09-cc06bb54797d_poly_0_">
                      <gml:posList srsDimension="3">568338.773 5517089.698 0.0 568339.33 5517093.138 0.0 568339.525 5517094.338 0.0 568339.525 5517094.338 6.013000000000005 568339.33 5517093.138 6.013000000000005 568338.773 5517089.698 6.013000000000005 568338.773 5517089.698 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_605781_cb0b6483-a80f-4fad-952a-46e7201e5e89">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_59b3c2de-86ec-4267-b763-22a38ca57cc6">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605781_cb0b6483-a80f-4fad-952a-46e7201e5e89_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605781_cb0b6483-a80f-4fad-952a-46e7201e5e89_poly_0_">
                      <gml:posList srsDimension="3">568339.33 5517093.138 0.0 568338.773 5517089.698 0.0 568335.527 5517090.088 0.0 568335.994 5517094.838 0.0 568339.193 5517094.385 0.0 568339.449 5517094.349 0.0 568339.525 5517094.338 0.0 568339.33 5517093.138 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_605781_8e0b22b9-e40c-4854-a11d-e2ff9f245c0e">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_886583b9-191a-41ff-8911-5aaec3aaa1ea">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605781_8e0b22b9-e40c-4854-a11d-e2ff9f245c0e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605781_8e0b22b9-e40c-4854-a11d-e2ff9f245c0e_poly_0_">
                      <gml:posList srsDimension="3">568335.527 5517090.088 0.0 568335.527 5517090.088 6.013000000000005 568335.994 5517094.838 6.013000000000005 568335.994 5517094.838 0.0 568335.527 5517090.088 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_605781_1f4a07e9-9ac3-465f-84b7-db6501354ced">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_80e729cb-1386-4f6f-b1eb-a3f931a79e83">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605781_1f4a07e9-9ac3-465f-84b7-db6501354ced_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605781_1f4a07e9-9ac3-465f-84b7-db6501354ced_poly_0_">
                      <gml:posList srsDimension="3">568338.773 5517089.698 6.013000000000005 568339.33 5517093.138 6.013000000000005 568339.525 5517094.338 6.013000000000005 568339.449 5517094.349 6.013000000000005 568339.193 5517094.385 6.013000000000005 568335.994 5517094.838 6.013000000000005 568335.527 5517090.088 6.013000000000005 568338.773 5517089.698 6.013000000000005</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_605781_3f029832-a65f-4f0d-8e13-23b5c8374a40">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d8d275f1-cce6-4cd2-9b88-382cc482a184">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605781_3f029832-a65f-4f0d-8e13-23b5c8374a40_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605781_3f029832-a65f-4f0d-8e13-23b5c8374a40_poly_0_">
                      <gml:posList srsDimension="3">568335.994 5517094.838 0.0 568335.994 5517094.838 6.013000000000005 568339.193 5517094.385 6.013000000000005 568339.193 5517094.385 0.0 568335.994 5517094.838 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_605781_5510116c-c791-4a48-8854-4176da9514f7">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f49004a2-ee17-412a-a5fd-a3e18d60df7d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605781_5510116c-c791-4a48-8854-4176da9514f7_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605781_5510116c-c791-4a48-8854-4176da9514f7_poly_0_">
                      <gml:posList srsDimension="3">568339.449 5517094.349 6.013000000000005 568339.525 5517094.338 6.013000000000005 568339.525 5517094.338 0.0 568339.449 5517094.349 0.0 568339.193 5517094.385 0.0 568339.193 5517094.385 6.013000000000005 568339.449 5517094.349 6.013000000000005</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_605781_549a8402-d059-4a7b-b44e-59f9404255f9">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b700ba47-c127-4a00-af3b-356f89a5ebbb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605781_549a8402-d059-4a7b-b44e-59f9404255f9_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605781_549a8402-d059-4a7b-b44e-59f9404255f9_poly_0_">
                      <gml:posList srsDimension="3">568338.773 5517089.698 0.0 568338.773 5517089.698 6.013000000000005 568335.527 5517090.088 6.013000000000005 568335.527 5517090.088 0.0 568338.773 5517089.698 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_605118">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odm6</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 28b, 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>1928</bldg:yearOfConstruction>
      <bldg:roofType>3200</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">15.907</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_bb6bfb5e-6484-420c-99d3-038fec5c7366">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_abe64b33-90ce-465f-9bcf-b50cb03c9599">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605118_873c8e97-fb96-4ebc-b96b-d392b673e1a2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605118_05767b21-a652-4081-8107-baac84595313_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605118_913c9260-e810-4461-bf7a-542d6a22a908_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605118_e88fc1d3-123d-410d-a1ca-811cd0368e41_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605118_99aacbe2-4ed3-4f10-9f06-687429f28628_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605118_d5910d5a-e966-48cd-8405-0fae57e947f5_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605118_c4a41825-2b07-4f34-a5c4-6b3a745f9e88_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605118_1d9ce0cd-e1f6-436d-a58a-9fd238bcf416_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605118_913c9260-e810-4461-bf7a-542d6a22a908">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b5987c30-4b02-4419-9d6c-874f1a25db93">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605118_913c9260-e810-4461-bf7a-542d6a22a908_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605118_913c9260-e810-4461-bf7a-542d6a22a908_poly_0_">
                      <gml:posList srsDimension="3">568461.171 5516989.032 11.578000000000003 568461.873 5516998.593 11.590000000000003 568456.747 5516994.158 15.90700000000001 568461.171 5516989.032 11.578000000000003</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_605118_05767b21-a652-4081-8107-baac84595313">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1078001c-b793-48d3-a179-ce335f3fc78e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605118_05767b21-a652-4081-8107-baac84595313_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605118_05767b21-a652-4081-8107-baac84595313_poly_0_">
                      <gml:posList srsDimension="3">568461.171 5516989.032 0.0 568448.202 5516989.981 0.0 568448.517 5516994.744 0.0 568448.835 5516999.52 0.0 568461.873 5516998.593 0.0 568461.171 5516989.032 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_605118_99aacbe2-4ed3-4f10-9f06-687429f28628">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_659615fe-96ea-4026-a8ca-8a6840c814ce">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605118_99aacbe2-4ed3-4f10-9f06-687429f28628_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605118_99aacbe2-4ed3-4f10-9f06-687429f28628_poly_0_">
                      <gml:posList srsDimension="3">568461.873 5516998.593 0.0 568461.873 5516998.593 11.590000000000003 568461.171 5516989.032 11.578000000000003 568461.171 5516989.032 0.0 568461.873 5516998.593 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_605118_e88fc1d3-123d-410d-a1ca-811cd0368e41">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_960822e3-a219-4bc7-8c03-b6aee022b619">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605118_e88fc1d3-123d-410d-a1ca-811cd0368e41_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605118_e88fc1d3-123d-410d-a1ca-811cd0368e41_poly_0_">
                      <gml:posList srsDimension="3">568448.835 5516999.52 0.0 568448.835 5516999.52 11.590000000000003 568461.873 5516998.593 11.590000000000003 568461.873 5516998.593 0.0 568448.835 5516999.52 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_605118_c4a41825-2b07-4f34-a5c4-6b3a745f9e88">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_df421e77-c747-415b-baba-d16a0ce651b3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605118_c4a41825-2b07-4f34-a5c4-6b3a745f9e88_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605118_c4a41825-2b07-4f34-a5c4-6b3a745f9e88_poly_0_">
                      <gml:posList srsDimension="3">568456.747 5516994.158 15.90700000000001 568461.873 5516998.593 11.590000000000003 568448.835 5516999.52 11.590000000000003 568448.517 5516994.744 15.90700000000001 568456.747 5516994.158 15.90700000000001</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_605118_d5910d5a-e966-48cd-8405-0fae57e947f5">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_db9302eb-8f0d-4da6-b883-49769a7249dd">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605118_d5910d5a-e966-48cd-8405-0fae57e947f5_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605118_d5910d5a-e966-48cd-8405-0fae57e947f5_poly_0_">
                      <gml:posList srsDimension="3">568448.202 5516989.981 11.603000000000009 568448.517 5516994.744 15.90700000000001 568448.835 5516999.52 11.590000000000003 568448.835 5516999.52 0.0 568448.517 5516994.744 0.0 568448.202 5516989.981 0.0 568448.202 5516989.981 11.603000000000009</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_605118_873c8e97-fb96-4ebc-b96b-d392b673e1a2">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d346327d-9a47-4ea9-b7c6-7d8cd8cf79da">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605118_873c8e97-fb96-4ebc-b96b-d392b673e1a2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605118_873c8e97-fb96-4ebc-b96b-d392b673e1a2_poly_0_">
                      <gml:posList srsDimension="3">568461.171 5516989.032 11.578000000000003 568456.747 5516994.158 15.90700000000001 568448.517 5516994.744 15.90700000000001 568448.202 5516989.981 11.603000000000009 568461.171 5516989.032 11.578000000000003</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_605118_1d9ce0cd-e1f6-436d-a58a-9fd238bcf416">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4024eb91-08e6-46d6-b819-3d17de592601">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605118_1d9ce0cd-e1f6-436d-a58a-9fd238bcf416_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605118_1d9ce0cd-e1f6-436d-a58a-9fd238bcf416_poly_0_">
                      <gml:posList srsDimension="3">568461.171 5516989.032 0.0 568461.171 5516989.032 11.578000000000003 568448.202 5516989.981 11.603000000000009 568448.202 5516989.981 0.0 568461.171 5516989.032 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_605150">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9pJi1</name>
        </externalObject>
      </externalReference>
      <gen:stringAttribute name="comment">
        <gen:value>CityGML from BKG LoD2_32_56[68]_5516_2_BY.xml, with yearOfConstruction from Stadt_Würzburg_Wohngebäude_Baujahr_Untersuchungsgebiet.xlsx, 2023-02-22</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="address">
        <gen:value>Scharoldstraße 5, 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>1950</bldg:yearOfConstruction>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">16.61</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_717e1b0a-3a83-411e-ba5b-f2e088b3b3bf">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_f66c1010-64f2-432e-bb92-f203a60f5393">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605150_5e1790da-8e4c-4bec-921e-508b0b29a60c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605150_67901dc5-e7a7-4f2a-a93e-653653d1b301_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605150_f53c9f6a-9a88-4e4f-9b86-c7c01f824bd8_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605150_4963d494-2327-4193-a205-b23c2144543e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605150_2d661569-fd1d-46ec-a6bf-dc6bb85d347d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605150_ff777fa6-43a2-4851-8fcc-3581946c50de_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605150_b220ecec-5706-4997-8609-0d14feacde43_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605150_4279cc61-c9a2-40f4-afdf-74943d36ac55_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605150_2c33a78c-d3f6-4e87-936a-8d5255619a31_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605150_d5ec1c5a-a3bb-4b71-9f9c-1b50c311b1f0_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605150_a29975c9-2f7f-4787-84ac-bdb2027cc4e3_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605150_a2d2863f-424f-4eaf-a485-e533a622879f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605150_e6be3dc8-2144-432b-8142-99750fce23bb_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605150_54749bb3-5803-41cb-a76a-a75219b33e71_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605150_16ab4534-4c39-44d7-b5de-b78101484033_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605150_7cd0325e-e1b1-406b-83c4-857f094cdfa6_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605150_ad3e4c31-27c3-4a73-9611-1e7a584ae898_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605150_5b990563-e1d9-49a5-9a78-fb06ffdb1b71_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605150_a29975c9-2f7f-4787-84ac-bdb2027cc4e3">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8cd71dbd-63ba-437c-a8e5-fc8fe94a44ba">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605150_a29975c9-2f7f-4787-84ac-bdb2027cc4e3_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605150_a29975c9-2f7f-4787-84ac-bdb2027cc4e3_poly_0_">
                      <gml:posList srsDimension="3">568269.59 5517121.752 12.463999999999999 568275.535 5517118.541 16.610000000000014 568278.817 5517124.613 12.343999999999994 568269.55 5517121.883 12.343999999999994 568269.59 5517121.752 12.463999999999999</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_605150_67901dc5-e7a7-4f2a-a93e-653653d1b301">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4afd40ae-8339-4d0f-bd96-83536201395e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605150_67901dc5-e7a7-4f2a-a93e-653653d1b301_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605150_67901dc5-e7a7-4f2a-a93e-653653d1b301_poly_0_">
                      <gml:posList srsDimension="3">568275.969 5517117.106 16.610000000000014 568277.49 5517112.071 16.610000000000014 568280.695 5517118.545 12.305000000000007 568278.941 5517124.65 12.230999999999995 568278.865 5517124.627 12.300000000000011 568278.817 5517124.613 12.343999999999994 568275.535 5517118.541 16.610000000000014 568275.969 5517117.106 16.610000000000014</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_605150_a2d2863f-424f-4eaf-a485-e533a622879f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f0487cd8-7651-4d77-b9f2-f7cb4579ce1d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605150_a2d2863f-424f-4eaf-a485-e533a622879f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605150_a2d2863f-424f-4eaf-a485-e533a622879f_poly_0_">
                      <gml:posList srsDimension="3">568269.55 5517121.883 12.343999999999994 568278.817 5517124.613 12.343999999999994 568278.865 5517124.627 12.300000000000011 568278.941 5517124.65 12.230999999999995 568278.941 5517124.65 0.0 568278.865 5517124.627 0.0 568278.817 5517124.613 0.0 568269.55 5517121.883 0.0 568269.55 5517121.883 12.343999999999994</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_605150_f53c9f6a-9a88-4e4f-9b86-c7c01f824bd8">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b65a5e7b-7d39-4fba-8d4c-e87aa30b84b8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605150_f53c9f6a-9a88-4e4f-9b86-c7c01f824bd8_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605150_f53c9f6a-9a88-4e4f-9b86-c7c01f824bd8_poly_0_">
                      <gml:posList srsDimension="3">568288.783 5517110.189 12.443000000000012 568288.783 5517110.189 0.0 568287.34 5517115.07 0.0 568285.848 5517120.114 0.0 568285.848 5517120.114 12.301999999999992 568287.34 5517115.07 16.610000000000014 568288.783 5517110.189 12.443000000000012</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_605150_ad3e4c31-27c3-4a73-9611-1e7a584ae898">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c7927724-4174-465e-94de-71ed7d82fa1e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605150_ad3e4c31-27c3-4a73-9611-1e7a584ae898_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605150_ad3e4c31-27c3-4a73-9611-1e7a584ae898_poly_0_">
                      <gml:posList srsDimension="3">568288.557 5517110.1 0.0 568288.557 5517110.1 12.426999999999992 568288.536 5517110.139 12.462999999999994 568288.536 5517110.139 0.0 568288.557 5517110.1 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_605150_2c33a78c-d3f6-4e87-936a-8d5255619a31">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f5566bda-3dd5-4a0d-9f43-154eb8e82b3b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605150_2c33a78c-d3f6-4e87-936a-8d5255619a31_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605150_2c33a78c-d3f6-4e87-936a-8d5255619a31_poly_0_">
                      <gml:posList srsDimension="3">568288.557 5517110.1 0.0 568288.536 5517110.139 0.0 568283.685 5517108.661 0.0 568278.79 5517107.17 0.0 568278.826 5517107.031 0.0 568274.311 5517105.66 0.0 568272.478 5517111.718 0.0 568272.606 5517111.763 0.0 568271.411 5517115.72 0.0 568269.59 5517121.752 0.0 568269.55 5517121.883 0.0 568278.817 5517124.613 0.0 568278.865 5517124.627 0.0 568278.941 5517124.65 0.0 568280.695 5517118.545 0.0 568280.706 5517118.509 0.0 568285.848 5517120.114 0.0 568287.34 5517115.07 0.0 568288.783 5517110.189 0.0 568288.557 5517110.1 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_605150_5b990563-e1d9-49a5-9a78-fb06ffdb1b71">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_92d1dfea-360e-4a55-b297-7cde7e7ede1c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605150_5b990563-e1d9-49a5-9a78-fb06ffdb1b71_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605150_5b990563-e1d9-49a5-9a78-fb06ffdb1b71_poly_0_">
                      <gml:posList srsDimension="3">568278.826 5517107.031 12.341000000000008 568278.79 5517107.17 12.457999999999998 568283.685 5517108.661 12.459000000000003 568288.536 5517110.139 12.462999999999994 568288.557 5517110.1 12.426999999999992 568288.783 5517110.189 12.443000000000012 568287.34 5517115.07 16.610000000000014 568282.221 5517113.511 16.610000000000014 568277.49 5517112.071 16.610000000000014 568274.311 5517105.66 12.344999999999999 568278.826 5517107.031 12.341000000000008</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_605150_d5ec1c5a-a3bb-4b71-9f9c-1b50c311b1f0">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b5470e02-5dbd-48ff-9f18-3d72f9521472">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605150_d5ec1c5a-a3bb-4b71-9f9c-1b50c311b1f0_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605150_d5ec1c5a-a3bb-4b71-9f9c-1b50c311b1f0_poly_0_">
                      <gml:posList srsDimension="3">568288.783 5517110.189 0.0 568288.783 5517110.189 12.443000000000012 568288.557 5517110.1 12.426999999999992 568288.557 5517110.1 0.0 568288.783 5517110.189 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_605150_5e1790da-8e4c-4bec-921e-508b0b29a60c">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d742faf5-5183-4630-b39c-2e07efe3fa5b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605150_5e1790da-8e4c-4bec-921e-508b0b29a60c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605150_5e1790da-8e4c-4bec-921e-508b0b29a60c_poly_0_">
                      <gml:posList srsDimension="3">568272.478 5517111.718 0.0 568272.478 5517111.718 12.343999999999994 568272.606 5517111.763 12.462000000000018 568272.606 5517111.763 0.0 568272.478 5517111.718 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_605150_16ab4534-4c39-44d7-b5de-b78101484033">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5296fdc7-e5a6-48c0-9e4e-6c09866d12b1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605150_16ab4534-4c39-44d7-b5de-b78101484033_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605150_16ab4534-4c39-44d7-b5de-b78101484033_poly_0_">
                      <gml:posList srsDimension="3">568271.411 5517115.72 12.462999999999994 568272.606 5517111.763 12.462000000000018 568272.478 5517111.718 12.343999999999994 568274.311 5517105.66 12.344999999999999 568277.49 5517112.071 16.610000000000014 568275.969 5517117.106 16.610000000000014 568275.535 5517118.541 16.610000000000014 568269.59 5517121.752 12.463999999999999 568271.411 5517115.72 12.462999999999994</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_605150_b220ecec-5706-4997-8609-0d14feacde43">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_aa032210-e978-4a9d-ad72-a23065d9d323">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605150_b220ecec-5706-4997-8609-0d14feacde43_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605150_b220ecec-5706-4997-8609-0d14feacde43_poly_0_">
                      <gml:posList srsDimension="3">568274.311 5517105.66 0.0 568274.311 5517105.66 12.344999999999999 568272.478 5517111.718 12.343999999999994 568272.478 5517111.718 0.0 568274.311 5517105.66 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_605150_4279cc61-c9a2-40f4-afdf-74943d36ac55">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_01d69e3e-58fe-411a-8cc9-150c3571113e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605150_4279cc61-c9a2-40f4-afdf-74943d36ac55_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605150_4279cc61-c9a2-40f4-afdf-74943d36ac55_poly_0_">
                      <gml:posList srsDimension="3">568280.695 5517118.545 12.305000000000007 568280.706 5517118.509 12.331000000000017 568280.706 5517118.509 0.0 568280.695 5517118.545 0.0 568278.941 5517124.65 0.0 568278.941 5517124.65 12.230999999999995 568280.695 5517118.545 12.305000000000007</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_605150_7cd0325e-e1b1-406b-83c4-857f094cdfa6">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_0c4e8b4e-6dab-4b0b-94d3-d34b9417405a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605150_7cd0325e-e1b1-406b-83c4-857f094cdfa6_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605150_7cd0325e-e1b1-406b-83c4-857f094cdfa6_poly_0_">
                      <gml:posList srsDimension="3">568282.221 5517113.511 16.610000000000014 568287.34 5517115.07 16.610000000000014 568285.848 5517120.114 12.301999999999992 568280.706 5517118.509 12.331000000000017 568280.695 5517118.545 12.305000000000007 568277.49 5517112.071 16.610000000000014 568282.221 5517113.511 16.610000000000014</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_605150_e6be3dc8-2144-432b-8142-99750fce23bb">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9ec2fb24-59f9-4525-8952-c7b8c07de9de">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605150_e6be3dc8-2144-432b-8142-99750fce23bb_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605150_e6be3dc8-2144-432b-8142-99750fce23bb_poly_0_">
                      <gml:posList srsDimension="3">568278.79 5517107.17 0.0 568278.79 5517107.17 12.457999999999998 568278.826 5517107.031 12.341000000000008 568278.826 5517107.031 0.0 568278.79 5517107.17 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
For faster browsing, not all history is shown. View entire blame