Grombühl_v4_case_study.gml 6.37 MB
Newer Older
Eric Duminil's avatar
Eric Duminil committed
70001
70002
70003
70004
70005
70006
70007
70008
70009
70010
70011
70012
70013
70014
70015
70016
70017
70018
70019
70020
70021
70022
70023
70024
70025
70026
70027
70028
70029
70030
70031
70032
70033
70034
70035
70036
70037
70038
70039
70040
70041
70042
70043
70044
70045
70046
70047
70048
70049
70050
70051
70052
70053
70054
70055
70056
70057
70058
70059
70060
70061
70062
70063
70064
70065
70066
70067
70068
70069
70070
70071
70072
70073
70074
70075
70076
70077
70078
70079
70080
70081
70082
70083
70084
70085
70086
70087
70088
70089
70090
70091
70092
70093
70094
70095
70096
70097
70098
70099
70100
70101
70102
70103
70104
70105
70106
70107
70108
70109
70110
70111
70112
70113
70114
70115
70116
70117
70118
70119
70120
70121
70122
70123
70124
70125
70126
70127
70128
70129
70130
70131
70132
70133
70134
70135
70136
70137
70138
70139
70140
70141
70142
70143
70144
70145
70146
70147
70148
70149
70150
70151
70152
70153
70154
70155
70156
70157
70158
70159
70160
70161
70162
70163
70164
70165
70166
70167
70168
70169
70170
70171
70172
70173
70174
70175
70176
70177
70178
70179
70180
70181
70182
70183
70184
70185
70186
70187
70188
70189
70190
70191
70192
70193
70194
70195
70196
70197
70198
70199
70200
70201
70202
70203
70204
70205
70206
70207
70208
70209
70210
70211
70212
70213
70214
70215
70216
70217
70218
70219
70220
70221
70222
70223
70224
70225
70226
70227
70228
70229
70230
70231
70232
70233
70234
70235
70236
70237
70238
70239
70240
70241
70242
70243
70244
70245
70246
70247
70248
70249
70250
70251
70252
70253
70254
70255
70256
70257
70258
70259
70260
70261
70262
70263
70264
70265
70266
70267
70268
70269
70270
70271
70272
70273
70274
70275
70276
70277
70278
70279
70280
70281
70282
70283
70284
70285
70286
70287
70288
70289
70290
70291
70292
70293
70294
70295
70296
70297
70298
70299
70300
70301
70302
70303
70304
70305
70306
70307
70308
70309
70310
70311
70312
70313
70314
70315
70316
70317
70318
70319
70320
70321
70322
70323
70324
70325
70326
70327
70328
70329
70330
70331
70332
70333
70334
70335
70336
70337
70338
70339
70340
70341
70342
70343
70344
70345
70346
70347
70348
70349
70350
70351
70352
70353
70354
70355
70356
70357
70358
70359
70360
70361
70362
70363
70364
70365
70366
70367
70368
70369
70370
70371
70372
70373
70374
70375
70376
70377
70378
70379
70380
70381
70382
70383
70384
70385
70386
70387
70388
70389
70390
70391
70392
70393
70394
70395
70396
70397
70398
70399
70400
70401
70402
70403
70404
70405
70406
70407
70408
70409
70410
70411
70412
70413
70414
70415
70416
70417
70418
70419
70420
70421
70422
70423
70424
70425
70426
70427
70428
70429
70430
70431
70432
70433
70434
70435
70436
70437
70438
70439
70440
70441
70442
70443
70444
70445
70446
70447
70448
70449
70450
70451
70452
70453
70454
70455
70456
70457
70458
70459
70460
70461
70462
70463
70464
70465
70466
70467
70468
70469
70470
70471
70472
70473
70474
70475
70476
70477
70478
70479
70480
70481
70482
70483
70484
70485
70486
70487
70488
70489
70490
70491
70492
70493
70494
70495
70496
70497
70498
70499
70500
70501
70502
70503
70504
70505
70506
70507
70508
70509
70510
70511
70512
70513
70514
70515
70516
70517
70518
70519
70520
70521
70522
70523
70524
70525
70526
70527
70528
70529
70530
70531
70532
70533
70534
70535
70536
70537
70538
70539
70540
70541
70542
70543
70544
70545
70546
70547
70548
70549
70550
70551
70552
70553
70554
70555
70556
70557
70558
70559
70560
70561
70562
70563
70564
70565
70566
70567
70568
70569
70570
70571
70572
70573
70574
70575
70576
70577
70578
70579
70580
70581
70582
70583
70584
70585
70586
70587
70588
70589
70590
70591
70592
70593
70594
70595
70596
70597
70598
70599
70600
70601
70602
70603
70604
70605
70606
70607
70608
70609
70610
70611
70612
70613
70614
70615
70616
70617
70618
70619
70620
70621
70622
70623
70624
70625
70626
70627
70628
70629
70630
70631
70632
70633
70634
70635
70636
70637
70638
70639
70640
70641
70642
70643
70644
70645
70646
70647
70648
70649
70650
70651
70652
70653
70654
70655
70656
70657
70658
70659
70660
70661
70662
70663
70664
70665
70666
70667
70668
70669
70670
70671
70672
70673
70674
70675
70676
70677
70678
70679
70680
70681
70682
70683
70684
70685
70686
70687
70688
70689
70690
70691
70692
70693
70694
70695
70696
70697
70698
70699
70700
70701
70702
70703
70704
70705
70706
70707
70708
70709
70710
70711
70712
70713
70714
70715
70716
70717
70718
70719
70720
70721
70722
70723
70724
70725
70726
70727
70728
70729
70730
70731
70732
70733
70734
70735
70736
70737
70738
70739
70740
70741
70742
70743
70744
70745
70746
70747
70748
70749
70750
70751
70752
70753
70754
70755
70756
70757
70758
70759
70760
70761
70762
70763
70764
70765
70766
70767
70768
70769
70770
70771
70772
70773
70774
70775
70776
70777
70778
70779
70780
70781
70782
70783
70784
70785
70786
70787
70788
70789
70790
70791
70792
70793
70794
70795
70796
70797
70798
70799
70800
70801
70802
70803
70804
70805
70806
70807
70808
70809
70810
70811
70812
70813
70814
70815
70816
70817
70818
70819
70820
70821
70822
70823
70824
70825
70826
70827
70828
70829
70830
70831
70832
70833
70834
70835
70836
70837
70838
70839
70840
70841
70842
70843
70844
70845
70846
70847
70848
70849
70850
70851
70852
70853
70854
70855
70856
70857
70858
70859
70860
70861
70862
70863
70864
70865
70866
70867
70868
70869
70870
70871
70872
70873
70874
70875
70876
70877
70878
70879
70880
70881
70882
70883
70884
70885
70886
70887
70888
70889
70890
70891
70892
70893
70894
70895
70896
70897
70898
70899
70900
70901
70902
70903
70904
70905
70906
70907
70908
70909
70910
70911
70912
70913
70914
70915
70916
70917
70918
70919
70920
70921
70922
70923
70924
70925
70926
70927
70928
70929
70930
70931
70932
70933
70934
70935
70936
70937
70938
70939
70940
70941
70942
70943
70944
70945
70946
70947
70948
70949
70950
70951
70952
70953
70954
70955
70956
70957
70958
70959
70960
70961
70962
70963
70964
70965
70966
70967
70968
70969
70970
70971
70972
70973
70974
70975
70976
70977
70978
70979
70980
70981
70982
70983
70984
70985
70986
70987
70988
70989
70990
70991
70992
70993
70994
70995
70996
70997
70998
70999
71000
            <gml:MultiSurface gml:id="UUID_dfd1d375-9cf1-41ac-9510-19adcfd427f0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605055_341e30ae-41bb-4dde-891f-9ef58120219d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605055_341e30ae-41bb-4dde-891f-9ef58120219d_poly_0_">
                      <gml:posList srsDimension="3">568394.89 5517024.258 0.0 568394.89 5517024.258 10.588999999999999 568384.821 5517024.994 10.588999999999999 568384.821 5517024.994 0.0 568394.89 5517024.258 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_605055_2d91a765-2ab7-42d1-a6f9-6eb4d25a6872">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1b2498b1-2266-4960-ba46-6286ce940a42">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605055_2d91a765-2ab7-42d1-a6f9-6eb4d25a6872_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605055_2d91a765-2ab7-42d1-a6f9-6eb4d25a6872_poly_0_">
                      <gml:posList srsDimension="3">568394.89 5517024.258 10.588999999999999 568390.213 5517029.65 15.5 568385.202 5517030.018 15.5 568384.821 5517024.994 10.588999999999999 568394.89 5517024.258 10.588999999999999</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_605055_25278cd4-e725-410d-8d91-f70b0bd0bb2e">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a54a152d-8e1a-4803-a110-7a6e9dd78e91">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605055_25278cd4-e725-410d-8d91-f70b0bd0bb2e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605055_25278cd4-e725-410d-8d91-f70b0bd0bb2e_poly_0_">
                      <gml:posList srsDimension="3">568386.433 5517044.046 0.0 568386.433 5517044.046 10.588999999999999 568396.201 5517043.335 10.582999999999998 568396.201 5517043.335 0.0 568386.433 5517044.046 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_605821">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9pK1X</name>
        </externalObject>
      </externalReference>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2019-09-25</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_2000</bldg:function>
      <bldg:roofType>2100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">6.975</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_3de4c72d-dfcd-403f-8ba3-0fc835a60f22">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_98225009-1cf3-416c-ac7c-f83d8937eb35">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605821_7c99faa5-d3a0-494e-90a6-199928547419_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605821_07b24efe-67b9-4aa8-a057-3f9e22451d22_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605821_5f600206-500f-41d2-90d0-4b5a5ed5f4c1_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605821_ef838528-0c64-43dd-b052-55e4c37acc25_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605821_bfe354d8-eb61-4f51-8f41-39269a6b2009_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605821_351a6442-0ce5-47e1-9677-876a648ea333_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605821_6135ffd5-3863-4265-8e9e-adeb320d51d4_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605821_7f43d035-0a75-416d-b640-a878946c8faf_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605821_7c99faa5-d3a0-494e-90a6-199928547419">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e0feebc3-e38a-4727-84bc-74a562a3b151">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605821_7c99faa5-d3a0-494e-90a6-199928547419_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605821_7c99faa5-d3a0-494e-90a6-199928547419_poly_0_">
                      <gml:posList srsDimension="3">568298.141 5517075.825 0.0 568298.141 5517075.825 5.771000000000015 568297.779 5517072.39 5.771000000000015 568297.779 5517072.39 0.0 568298.141 5517075.825 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_605821_351a6442-0ce5-47e1-9677-876a648ea333">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_0b9e6522-1370-48dd-af31-59809278d23b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605821_351a6442-0ce5-47e1-9677-876a648ea333_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605821_351a6442-0ce5-47e1-9677-876a648ea333_poly_0_">
                      <gml:posList srsDimension="3">568297.779 5517072.39 5.771000000000015 568298.141 5517075.825 5.771000000000015 568298.251 5517075.81 5.731000000000023 568298.987 5517082.861 5.731000000000023 568295.562 5517083.22 6.968000000000018 568295.544 5517083.222 6.975000000000023 568295.409 5517081.767 6.968000000000018 568294.576 5517072.731 6.928000000000026 568297.779 5517072.39 5.771000000000015</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_605821_6135ffd5-3863-4265-8e9e-adeb320d51d4">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b11d6807-63d0-4998-b7ba-18730ccbecf2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605821_6135ffd5-3863-4265-8e9e-adeb320d51d4_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605821_6135ffd5-3863-4265-8e9e-adeb320d51d4_poly_0_">
                      <gml:posList srsDimension="3">568297.779 5517072.39 0.0 568297.779 5517072.39 5.771000000000015 568294.576 5517072.731 6.928000000000026 568294.576 5517072.731 0.0 568297.779 5517072.39 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_605821_07b24efe-67b9-4aa8-a057-3f9e22451d22">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7c278ac2-2a92-4ecf-bce4-28539227f476">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605821_07b24efe-67b9-4aa8-a057-3f9e22451d22_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605821_07b24efe-67b9-4aa8-a057-3f9e22451d22_poly_0_">
                      <gml:posList srsDimension="3">568295.562 5517083.22 6.968000000000018 568298.987 5517082.861 5.731000000000023 568298.987 5517082.861 0.0 568295.562 5517083.22 0.0 568295.544 5517083.222 0.0 568295.544 5517083.222 6.975000000000023 568295.562 5517083.22 6.968000000000018</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_605821_ef838528-0c64-43dd-b052-55e4c37acc25">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_86298eaf-ce5f-47f3-a976-b449d5ca49f7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605821_ef838528-0c64-43dd-b052-55e4c37acc25_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605821_ef838528-0c64-43dd-b052-55e4c37acc25_poly_0_">
                      <gml:posList srsDimension="3">568294.576 5517072.731 6.928000000000026 568295.409 5517081.767 6.968000000000018 568295.544 5517083.222 6.975000000000023 568295.544 5517083.222 0.0 568295.409 5517081.767 0.0 568294.576 5517072.731 0.0 568294.576 5517072.731 6.928000000000026</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_605821_5f600206-500f-41d2-90d0-4b5a5ed5f4c1">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_55e1a866-b989-47ed-af5b-08f219270515">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605821_5f600206-500f-41d2-90d0-4b5a5ed5f4c1_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605821_5f600206-500f-41d2-90d0-4b5a5ed5f4c1_poly_0_">
                      <gml:posList srsDimension="3">568298.987 5517082.861 0.0 568298.987 5517082.861 5.731000000000023 568298.251 5517075.81 5.731000000000023 568298.251 5517075.81 0.0 568298.987 5517082.861 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_605821_7f43d035-0a75-416d-b640-a878946c8faf">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_aea7f7e2-c0ed-4e6d-94a0-20db0ebe4ee6">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605821_7f43d035-0a75-416d-b640-a878946c8faf_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605821_7f43d035-0a75-416d-b640-a878946c8faf_poly_0_">
                      <gml:posList srsDimension="3">568298.251 5517075.81 0.0 568298.141 5517075.825 0.0 568297.779 5517072.39 0.0 568294.576 5517072.731 0.0 568295.409 5517081.767 0.0 568295.544 5517083.222 0.0 568295.562 5517083.22 0.0 568298.987 5517082.861 0.0 568298.251 5517075.81 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_605821_bfe354d8-eb61-4f51-8f41-39269a6b2009">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_11b31c11-602d-4891-8495-71ac9d770c31">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605821_bfe354d8-eb61-4f51-8f41-39269a6b2009_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605821_bfe354d8-eb61-4f51-8f41-39269a6b2009_poly_0_">
                      <gml:posList srsDimension="3">568298.251 5517075.81 0.0 568298.251 5517075.81 5.731000000000023 568298.141 5517075.825 5.771000000000015 568298.141 5517075.825 0.0 568298.251 5517075.81 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_605098">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odSr</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 44, 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>1938</bldg:yearOfConstruction>
      <bldg:roofType>3200</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">15.377</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_18345316-766c-4aac-88f3-df1562b7ae64">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_6c7f6095-8cff-4408-979f-676bfd50df5a">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605098_5563a035-0767-4bba-ac52-d7652ddc7b35_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605098_53b14e61-72b6-48fb-94d0-5855dd19962c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605098_19c2df56-3558-4336-893c-51bf968eee88_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605098_a689aa40-8194-494c-b798-25440454e5fc_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605098_633e81e6-7167-4d9b-9c95-7a221efc8e44_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605098_ec439569-41ec-4fb0-b2d6-254b8a861df3_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605098_fee79cf2-e4d6-4aae-8c80-56608350946a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605098_cc0efdff-e1a9-4942-b24e-9e44b29f3103_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605098_19c2df56-3558-4336-893c-51bf968eee88">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9d917dce-bc26-4235-a403-1db8b9c15f4a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605098_19c2df56-3558-4336-893c-51bf968eee88_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605098_19c2df56-3558-4336-893c-51bf968eee88_poly_0_">
                      <gml:posList srsDimension="3">568635.983 5516981.279 10.924000000000007 568631.125 5516986.746 15.376999999999981 568622.432 5516987.253 15.376999999999981 568622.123 5516982.087 10.924000000000007 568635.983 5516981.279 10.924000000000007</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_605098_53b14e61-72b6-48fb-94d0-5855dd19962c">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e00e44f8-cb55-40c8-961e-0d2efa42db54">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605098_53b14e61-72b6-48fb-94d0-5855dd19962c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605098_53b14e61-72b6-48fb-94d0-5855dd19962c_poly_0_">
                      <gml:posList srsDimension="3">568636.601 5516991.612 0.0 568636.601 5516991.612 10.924000000000007 568635.983 5516981.279 10.924000000000007 568635.983 5516981.279 0.0 568636.601 5516991.612 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605098_633e81e6-7167-4d9b-9c95-7a221efc8e44">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d8679469-851b-42fa-958a-bad35925211d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605098_633e81e6-7167-4d9b-9c95-7a221efc8e44_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605098_633e81e6-7167-4d9b-9c95-7a221efc8e44_poly_0_">
                      <gml:posList srsDimension="3">568622.123 5516982.087 10.924000000000007 568622.432 5516987.253 15.376999999999981 568622.742 5516992.42 10.924000000000007 568622.742 5516992.42 0.0 568622.432 5516987.253 0.0 568622.123 5516982.087 0.0 568622.123 5516982.087 10.924000000000007</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_605098_a689aa40-8194-494c-b798-25440454e5fc">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ec569963-cd7e-4995-affa-210643f77d0b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605098_a689aa40-8194-494c-b798-25440454e5fc_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605098_a689aa40-8194-494c-b798-25440454e5fc_poly_0_">
                      <gml:posList srsDimension="3">568635.983 5516981.279 0.0 568635.983 5516981.279 10.924000000000007 568622.123 5516982.087 10.924000000000007 568622.123 5516982.087 0.0 568635.983 5516981.279 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_605098_fee79cf2-e4d6-4aae-8c80-56608350946a">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_cf4e562c-f3f2-4b7c-8fbb-ca3df6c7cbda">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605098_fee79cf2-e4d6-4aae-8c80-56608350946a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605098_fee79cf2-e4d6-4aae-8c80-56608350946a_poly_0_">
                      <gml:posList srsDimension="3">568622.742 5516992.42 0.0 568622.742 5516992.42 10.924000000000007 568636.601 5516991.612 10.924000000000007 568636.601 5516991.612 0.0 568622.742 5516992.42 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_605098_ec439569-41ec-4fb0-b2d6-254b8a861df3">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_0af4f6de-6490-4c67-8272-ebc5366318ea">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605098_ec439569-41ec-4fb0-b2d6-254b8a861df3_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605098_ec439569-41ec-4fb0-b2d6-254b8a861df3_poly_0_">
                      <gml:posList srsDimension="3">568631.125 5516986.746 15.376999999999981 568636.601 5516991.612 10.924000000000007 568622.742 5516992.42 10.924000000000007 568622.432 5516987.253 15.376999999999981 568631.125 5516986.746 15.376999999999981</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_605098_5563a035-0767-4bba-ac52-d7652ddc7b35">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a6d48f97-5aa1-4190-806a-0c64f0ce12b0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605098_5563a035-0767-4bba-ac52-d7652ddc7b35_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605098_5563a035-0767-4bba-ac52-d7652ddc7b35_poly_0_">
                      <gml:posList srsDimension="3">568635.983 5516981.279 10.924000000000007 568636.601 5516991.612 10.924000000000007 568631.125 5516986.746 15.376999999999981 568635.983 5516981.279 10.924000000000007</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_605098_cc0efdff-e1a9-4942-b24e-9e44b29f3103">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8dc8948c-da9e-4394-a483-5a9c8651ed56">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605098_cc0efdff-e1a9-4942-b24e-9e44b29f3103_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605098_cc0efdff-e1a9-4942-b24e-9e44b29f3103_poly_0_">
                      <gml:posList srsDimension="3">568635.983 5516981.279 0.0 568622.123 5516982.087 0.0 568622.432 5516987.253 0.0 568622.742 5516992.42 0.0 568636.601 5516991.612 0.0 568635.983 5516981.279 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
    </bldg:Building>
  </cityObjectMember><cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_605818">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9pK2k</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.678</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_dc33cc40-8d7f-44a9-a503-0672456340cb">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_8be5d3c3-7548-4b30-b4ea-b09a1eddaa73">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605818_8f7814bb-4735-4873-b56c-c77b1c39ab85_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605818_700a5634-5446-4c39-9c35-725f07955428_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605818_a21de695-6d51-4ece-a171-d3b063d417bc_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605818_35e22c3d-55a9-4986-be69-fd9a6775df18_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605818_96dd0840-704d-4458-8e32-912b87af28a4_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605818_7f869cc5-09c4-4c8b-aba0-2f29e248941d_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605818_35e22c3d-55a9-4986-be69-fd9a6775df18">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1b9fb7ad-cb37-4ec0-9e82-5b16ee290aa3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605818_35e22c3d-55a9-4986-be69-fd9a6775df18_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605818_35e22c3d-55a9-4986-be69-fd9a6775df18_poly_0_">
                      <gml:posList srsDimension="3">568290.623 5517092.227 0.0 568290.623 5517092.227 2.6779999999999973 568288.889 5517098.08 2.6779999999999973 568288.889 5517098.08 0.0 568290.623 5517092.227 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_605818_8f7814bb-4735-4873-b56c-c77b1c39ab85">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e7779f1a-91b3-40b5-8271-92f8651b193f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605818_8f7814bb-4735-4873-b56c-c77b1c39ab85_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605818_8f7814bb-4735-4873-b56c-c77b1c39ab85_poly_0_">
                      <gml:posList srsDimension="3">568292.994 5517092.923 0.0 568292.994 5517092.923 2.6779999999999973 568290.623 5517092.227 2.6779999999999973 568290.623 5517092.227 0.0 568292.994 5517092.923 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_605818_96dd0840-704d-4458-8e32-912b87af28a4">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_bb03c5e2-a0e7-48ef-8769-00a85413bf0e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605818_96dd0840-704d-4458-8e32-912b87af28a4_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605818_96dd0840-704d-4458-8e32-912b87af28a4_poly_0_">
                      <gml:posList srsDimension="3">568288.889 5517098.08 0.0 568291.269 5517098.795 0.0 568292.994 5517092.923 0.0 568290.623 5517092.227 0.0 568288.889 5517098.08 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_605818_7f869cc5-09c4-4c8b-aba0-2f29e248941d">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_30a183e5-3c51-4426-91bf-b96ea4e594a4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605818_7f869cc5-09c4-4c8b-aba0-2f29e248941d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605818_7f869cc5-09c4-4c8b-aba0-2f29e248941d_poly_0_">
                      <gml:posList srsDimension="3">568288.889 5517098.08 0.0 568288.889 5517098.08 2.6779999999999973 568291.269 5517098.795 2.6779999999999973 568291.269 5517098.795 0.0 568288.889 5517098.08 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_605818_700a5634-5446-4c39-9c35-725f07955428">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1ca00a89-172b-4465-8bd3-9e7f0adeb2bb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605818_700a5634-5446-4c39-9c35-725f07955428_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605818_700a5634-5446-4c39-9c35-725f07955428_poly_0_">
                      <gml:posList srsDimension="3">568290.623 5517092.227 2.6779999999999973 568292.994 5517092.923 2.6779999999999973 568291.269 5517098.795 2.6779999999999973 568288.889 5517098.08 2.6779999999999973 568290.623 5517092.227 2.6779999999999973</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_605818_a21de695-6d51-4ece-a171-d3b063d417bc">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7bcbeff7-5643-4415-8ec7-a8af46000ffa">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605818_a21de695-6d51-4ece-a171-d3b063d417bc_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605818_a21de695-6d51-4ece-a171-d3b063d417bc_poly_0_">
                      <gml:posList srsDimension="3">568291.269 5517098.795 0.0 568291.269 5517098.795 2.6779999999999973 568292.994 5517092.923 2.6779999999999973 568292.994 5517092.923 0.0 568291.269 5517098.795 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_605783">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odQg</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.271</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_8da51b5a-0d75-4148-bb7c-6dc89ba3fd91">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_f1c388eb-1d9e-4cc3-bdac-ede988cf80de">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605783_ec1a0257-899b-4e73-a7e3-65c3a33ea389_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605783_ff494ea5-82f5-45ec-a3b3-7922450ed6f9_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605783_ce98d241-7f24-4fdc-a720-ffed5f005b70_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605783_16f1198c-58a0-4fc0-b47f-1030a431ef12_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605783_2478365b-c498-4923-a4fa-75966bdad1b5_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605783_f98ac61f-ae36-4455-ad5b-60762592adb9_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="DEBY_LOD2_605783_ce98d241-7f24-4fdc-a720-ffed5f005b70">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b2046f97-53c1-49f2-a1c1-bf7cf67aade7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605783_ce98d241-7f24-4fdc-a720-ffed5f005b70_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605783_ce98d241-7f24-4fdc-a720-ffed5f005b70_poly_0_">
                      <gml:posList srsDimension="3">568360.232 5517074.467 0.0 568361.05 5517080.417 0.0 568375.768 5517078.388 0.0 568374.949 5517072.436 0.0 568360.232 5517074.467 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_605783_16f1198c-58a0-4fc0-b47f-1030a431ef12">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_634660cc-3aa8-4503-a76e-7516776b8130">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605783_16f1198c-58a0-4fc0-b47f-1030a431ef12_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605783_16f1198c-58a0-4fc0-b47f-1030a431ef12_poly_0_">
                      <gml:posList srsDimension="3">568361.05 5517080.417 0.0 568361.05 5517080.417 2.2709999999999866 568375.768 5517078.388 2.2709999999999866 568375.768 5517078.388 0.0 568361.05 5517080.417 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_605783_ec1a0257-899b-4e73-a7e3-65c3a33ea389">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_36031420-7cef-4cf3-8a56-249dd92766ab">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605783_ec1a0257-899b-4e73-a7e3-65c3a33ea389_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605783_ec1a0257-899b-4e73-a7e3-65c3a33ea389_poly_0_">
                      <gml:posList srsDimension="3">568374.949 5517072.436 0.0 568374.949 5517072.436 2.2709999999999866 568360.232 5517074.467 2.2709999999999866 568360.232 5517074.467 0.0 568374.949 5517072.436 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_605783_2478365b-c498-4923-a4fa-75966bdad1b5">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7f9221ea-decb-4727-a7cc-46b063a14bf8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605783_2478365b-c498-4923-a4fa-75966bdad1b5_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605783_2478365b-c498-4923-a4fa-75966bdad1b5_poly_0_">
                      <gml:posList srsDimension="3">568374.949 5517072.436 2.2709999999999866 568375.768 5517078.388 2.2709999999999866 568361.05 5517080.417 2.2709999999999866 568360.232 5517074.467 2.2709999999999866 568374.949 5517072.436 2.2709999999999866</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_605783_f98ac61f-ae36-4455-ad5b-60762592adb9">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2be7f7cd-4e8b-4b24-a278-38066ed0b052">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605783_f98ac61f-ae36-4455-ad5b-60762592adb9_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605783_f98ac61f-ae36-4455-ad5b-60762592adb9_poly_0_">
                      <gml:posList srsDimension="3">568360.232 5517074.467 0.0 568360.232 5517074.467 2.2709999999999866 568361.05 5517080.417 2.2709999999999866 568361.05 5517080.417 0.0 568360.232 5517074.467 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_605783_ff494ea5-82f5-45ec-a3b3-7922450ed6f9">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9ebeba24-2190-4675-b083-f77ac43cd759">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605783_ff494ea5-82f5-45ec-a3b3-7922450ed6f9_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605783_ff494ea5-82f5-45ec-a3b3-7922450ed6f9_poly_0_">
                      <gml:posList srsDimension="3">568375.768 5517078.388 0.0 568375.768 5517078.388 2.2709999999999866 568374.949 5517072.436 2.2709999999999866 568374.949 5517072.436 0.0 568375.768 5517078.388 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_8927724">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odhP</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>3200</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">16.986</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_82b50b92-523d-4f7c-8d26-12af35018202">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_263efcf7-3d6c-4b09-9e90-ea816ee73d80">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_1b8a4462-56be-48b3-9af4-5cefdb53f388_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_0701ca8c-abf9-4a21-a97f-3a0639e9a7b4_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_e19597e2-5cd7-4e11-a947-806d3a5b6be4_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_1459ebc6-1c7d-43ec-b782-0d77ca3d619e_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_95f87d18-6a13-4886-905e-e19e23e73b09_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_08666a8f-102a-483e-b7a3-c677287671a2_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_f8369cac-9797-4131-ba84-ff89b1a8f9d6_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_9c1d58cd-0c5b-4d70-8cc2-1aade687d426_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_ad353b72-acf6-4baa-a2de-d92c5d2edf68_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_7da6b6b5-2843-445e-ae03-e9ceebb2e058_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_f70fe13d-bac8-409a-a4ba-8ef7e1552444_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_fc2fda4d-d5dc-4cde-a71f-bec865a46157_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_e5fcdc39-b158-4d63-abcd-83934a59595f_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_d4d6911a-e527-4786-bc08-8765e51ad03c_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_355fa9d0-1834-4528-aece-433c64509425_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_5d0d89b8-db38-4539-a2e1-dfb82528e0b6_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_cf25fc7d-a66b-49ca-a7ab-94b19dca3ea1_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_ddb2d0d7-dec2-4ee5-a64a-1924a92922b7_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_a1c60b2b-40f9-467a-910c-17e4bbff6fe1_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_75729c08-51ea-46d7-832e-15862f5ea702_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_abbabfe7-7237-443e-b624-f4e5a090461f_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_d9aeb0a0-d8ea-4029-bfdd-f68663f63848_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_b9ff2fc8-4c1b-4072-a3c7-15e45f0d4221_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_36d2436e-60c2-446c-8584-532c732441d8_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_935047be-2d4d-4b8d-9177-4ffa2f5475f6_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_d42f58f5-d160-4b80-9132-81ac3c5fc598_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_55a521c1-73db-44eb-a08a-d2da9ec9a163_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_f66e26d9-3bb2-423c-ab35-e2abce52cc02_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_e6f6436f-e34b-445b-b6e2-b875e6a81875_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_f1552fb0-f55b-4b4b-87ba-c797cf846d1c_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_765dd897-4059-4a9b-bd2a-f89036cc6ead_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_883783d3-6513-43ce-bb56-1cdd5243d519_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_f59effb8-0cc6-4a4d-bebc-16404be992d4_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_a7ace605-f043-4aae-943d-847f5e6e939c_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_76ee3578-ec0b-4656-95cc-5e7d48fd236e_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_445839c4-1cec-4bb8-b2cc-dd273005c2a4_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_d0d9b5ee-6c2b-4ee2-909e-729835449148_2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_8927724_438b7e62-10c0-40e6-ae7f-8a7115b81121_2_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_8927724_95f87d18-6a13-4886-905e-e19e23e73b09_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_88bc2f64-a07b-45eb-be20-27d9bde837b7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_8927724_95f87d18-6a13-4886-905e-e19e23e73b09_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_8927724_95f87d18-6a13-4886-905e-e19e23e73b09_2_poly_0_">
                      <gml:posList srsDimension="3">568678.36 5517026.88 6.314999999999998 568678.36 5517026.88 0.0 568666.22 5517027.76 0.0 568666.22 5517027.76 6.268000000000001 568678.36 5517026.88 6.314999999999998</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_8927724_36d2436e-60c2-446c-8584-532c732441d8_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_19328fcb-8872-4ead-b11c-257b51300505">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_8927724_36d2436e-60c2-446c-8584-532c732441d8_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_8927724_36d2436e-60c2-446c-8584-532c732441d8_2_poly_0_">
                      <gml:posList srsDimension="3">568646.04 5517023.47 0.0 568646.04 5517023.47 14.388999999999982 568646.07 5517023.87 14.183999999999997 568646.07 5517023.87 0.0 568646.04 5517023.47 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_8927724_1459ebc6-1c7d-43ec-b782-0d77ca3d619e_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b1b9969f-766f-4a7f-820e-2aa1bbd765aa">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_8927724_1459ebc6-1c7d-43ec-b782-0d77ca3d619e_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_8927724_1459ebc6-1c7d-43ec-b782-0d77ca3d619e_2_poly_0_">
                      <gml:posList srsDimension="3">568672.44 5517016.57 0.0 568672.44 5517016.57 6.307999999999993 568671.79 5517015.8 6.307999999999993 568671.79 5517015.8 0.0 568672.44 5517016.57 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_8927724_08666a8f-102a-483e-b7a3-c677287671a2_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4bd92db0-c115-440f-a948-80e33792fd1d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_8927724_08666a8f-102a-483e-b7a3-c677287671a2_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_8927724_08666a8f-102a-483e-b7a3-c677287671a2_2_poly_0_">
                      <gml:posList srsDimension="3">568654.63 5517028.48 0.0 568654.63 5517028.48 5.918000000000006 568654.42 5517024.87 5.918000000000006 568654.42 5517024.87 0.0 568654.63 5517028.48 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_8927724_935047be-2d4d-4b8d-9177-4ffa2f5475f6_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ccd30cfb-5fdc-4d84-9205-d3d7f30b3933">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_8927724_935047be-2d4d-4b8d-9177-4ffa2f5475f6_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_8927724_935047be-2d4d-4b8d-9177-4ffa2f5475f6_2_poly_0_">
                      <gml:posList srsDimension="3">568678.36 5517026.88 0.0 568678.36 5517026.88 6.314999999999998 568678.34 5517026.6 6.424999999999983 568678.34 5517026.6 0.0 568678.36 5517026.88 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_8927724_0701ca8c-abf9-4a21-a97f-3a0639e9a7b4_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5028f6ba-f892-4215-bbf7-593d7e63adcf">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_8927724_0701ca8c-abf9-4a21-a97f-3a0639e9a7b4_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_8927724_0701ca8c-abf9-4a21-a97f-3a0639e9a7b4_2_poly_0_">
                      <gml:posList srsDimension="3">568646.04 5517023.47 0.0 568645.39 5517013.05 0.0 568645.39 5517013.05 14.23599999999999 568645.724 5517018.41 16.98599999999999 568646.04 5517023.47 14.388999999999982 568646.04 5517023.47 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_8927724_d9aeb0a0-d8ea-4029-bfdd-f68663f63848_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a3738010-a1ee-4f80-92b2-c9a7ab4dd5e1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_8927724_d9aeb0a0-d8ea-4029-bfdd-f68663f63848_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_8927724_d9aeb0a0-d8ea-4029-bfdd-f68663f63848_2_poly_0_">
                      <gml:posList srsDimension="3">568678.36 5517026.88 6.314999999999998 568666.22 5517027.76 6.268000000000001 568666.08 5517025.918 6.990000000000009 568666.668 5517025.881 6.990000000000009 568666.569 5517024.272 7.621000000000009 568676.061 5517023.678 7.621999999999986 568678.411 5517026.462 6.477000000000004 568678.34 5517026.6 6.424999999999983 568678.36 5517026.88 6.314999999999998</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_8927724_438b7e62-10c0-40e6-ae7f-8a7115b81121_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_570341a3-f731-4d87-a4ef-e1f69815b764">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_8927724_438b7e62-10c0-40e6-ae7f-8a7115b81121_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_8927724_438b7e62-10c0-40e6-ae7f-8a7115b81121_2_poly_0_">
                      <gml:posList srsDimension="3">568666.22 5517027.76 0.0 568666.06 5517025.65 0.0 568666.06 5517025.65 3.430999999999983 568666.08 5517025.918 3.430999999999983 568666.08 5517025.918 6.990000000000009 568666.22 5517027.76 6.268000000000001 568666.22 5517027.76 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_8927724_1b8a4462-56be-48b3-9af4-5cefdb53f388_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1ccff05c-18eb-4a03-971b-a0c1f809b41c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_8927724_1b8a4462-56be-48b3-9af4-5cefdb53f388_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_8927724_1b8a4462-56be-48b3-9af4-5cefdb53f388_2_poly_0_">
                      <gml:posList srsDimension="3">568646.08 5517024.034 5.918000000000006 568646.08 5517024.034 14.099999999999994 568651.222 5517023.712 14.099999999999994 568651.222 5517023.712 5.918000000000006 568646.08 5517024.034 5.918000000000006</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_8927724_e19597e2-5cd7-4e11-a947-806d3a5b6be4_2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7a74fc4f-b6aa-43a3-9ed4-50d61c3c34f4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_8927724_e19597e2-5cd7-4e11-a947-806d3a5b6be4_2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_8927724_e19597e2-5cd7-4e11-a947-806d3a5b6be4_2_poly_0_">
                      <gml:posList srsDimension="3">568666.668 5517025.881 3.430999999999983 568666.08 5517025.918 3.430999999999983 568666.06 5517025.65 3.430999999999983 568660.56 5517026.01 3.430999999999983 568660.382 5517023.139 3.430999999999983 568666.475 5517022.758 3.430999999999983 568666.668 5517025.881 3.430999999999983</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
For faster browsing, not all history is shown. View entire blame