Grombühl_v4_case_study.gml 6.37 MB
Newer Older
Eric Duminil's avatar
Eric Duminil committed
69001
69002
69003
69004
69005
69006
69007
69008
69009
69010
69011
69012
69013
69014
69015
69016
69017
69018
69019
69020
69021
69022
69023
69024
69025
69026
69027
69028
69029
69030
69031
69032
69033
69034
69035
69036
69037
69038
69039
69040
69041
69042
69043
69044
69045
69046
69047
69048
69049
69050
69051
69052
69053
69054
69055
69056
69057
69058
69059
69060
69061
69062
69063
69064
69065
69066
69067
69068
69069
69070
69071
69072
69073
69074
69075
69076
69077
69078
69079
69080
69081
69082
69083
69084
69085
69086
69087
69088
69089
69090
69091
69092
69093
69094
69095
69096
69097
69098
69099
69100
69101
69102
69103
69104
69105
69106
69107
69108
69109
69110
69111
69112
69113
69114
69115
69116
69117
69118
69119
69120
69121
69122
69123
69124
69125
69126
69127
69128
69129
69130
69131
69132
69133
69134
69135
69136
69137
69138
69139
69140
69141
69142
69143
69144
69145
69146
69147
69148
69149
69150
69151
69152
69153
69154
69155
69156
69157
69158
69159
69160
69161
69162
69163
69164
69165
69166
69167
69168
69169
69170
69171
69172
69173
69174
69175
69176
69177
69178
69179
69180
69181
69182
69183
69184
69185
69186
69187
69188
69189
69190
69191
69192
69193
69194
69195
69196
69197
69198
69199
69200
69201
69202
69203
69204
69205
69206
69207
69208
69209
69210
69211
69212
69213
69214
69215
69216
69217
69218
69219
69220
69221
69222
69223
69224
69225
69226
69227
69228
69229
69230
69231
69232
69233
69234
69235
69236
69237
69238
69239
69240
69241
69242
69243
69244
69245
69246
69247
69248
69249
69250
69251
69252
69253
69254
69255
69256
69257
69258
69259
69260
69261
69262
69263
69264
69265
69266
69267
69268
69269
69270
69271
69272
69273
69274
69275
69276
69277
69278
69279
69280
69281
69282
69283
69284
69285
69286
69287
69288
69289
69290
69291
69292
69293
69294
69295
69296
69297
69298
69299
69300
69301
69302
69303
69304
69305
69306
69307
69308
69309
69310
69311
69312
69313
69314
69315
69316
69317
69318
69319
69320
69321
69322
69323
69324
69325
69326
69327
69328
69329
69330
69331
69332
69333
69334
69335
69336
69337
69338
69339
69340
69341
69342
69343
69344
69345
69346
69347
69348
69349
69350
69351
69352
69353
69354
69355
69356
69357
69358
69359
69360
69361
69362
69363
69364
69365
69366
69367
69368
69369
69370
69371
69372
69373
69374
69375
69376
69377
69378
69379
69380
69381
69382
69383
69384
69385
69386
69387
69388
69389
69390
69391
69392
69393
69394
69395
69396
69397
69398
69399
69400
69401
69402
69403
69404
69405
69406
69407
69408
69409
69410
69411
69412
69413
69414
69415
69416
69417
69418
69419
69420
69421
69422
69423
69424
69425
69426
69427
69428
69429
69430
69431
69432
69433
69434
69435
69436
69437
69438
69439
69440
69441
69442
69443
69444
69445
69446
69447
69448
69449
69450
69451
69452
69453
69454
69455
69456
69457
69458
69459
69460
69461
69462
69463
69464
69465
69466
69467
69468
69469
69470
69471
69472
69473
69474
69475
69476
69477
69478
69479
69480
69481
69482
69483
69484
69485
69486
69487
69488
69489
69490
69491
69492
69493
69494
69495
69496
69497
69498
69499
69500
69501
69502
69503
69504
69505
69506
69507
69508
69509
69510
69511
69512
69513
69514
69515
69516
69517
69518
69519
69520
69521
69522
69523
69524
69525
69526
69527
69528
69529
69530
69531
69532
69533
69534
69535
69536
69537
69538
69539
69540
69541
69542
69543
69544
69545
69546
69547
69548
69549
69550
69551
69552
69553
69554
69555
69556
69557
69558
69559
69560
69561
69562
69563
69564
69565
69566
69567
69568
69569
69570
69571
69572
69573
69574
69575
69576
69577
69578
69579
69580
69581
69582
69583
69584
69585
69586
69587
69588
69589
69590
69591
69592
69593
69594
69595
69596
69597
69598
69599
69600
69601
69602
69603
69604
69605
69606
69607
69608
69609
69610
69611
69612
69613
69614
69615
69616
69617
69618
69619
69620
69621
69622
69623
69624
69625
69626
69627
69628
69629
69630
69631
69632
69633
69634
69635
69636
69637
69638
69639
69640
69641
69642
69643
69644
69645
69646
69647
69648
69649
69650
69651
69652
69653
69654
69655
69656
69657
69658
69659
69660
69661
69662
69663
69664
69665
69666
69667
69668
69669
69670
69671
69672
69673
69674
69675
69676
69677
69678
69679
69680
69681
69682
69683
69684
69685
69686
69687
69688
69689
69690
69691
69692
69693
69694
69695
69696
69697
69698
69699
69700
69701
69702
69703
69704
69705
69706
69707
69708
69709
69710
69711
69712
69713
69714
69715
69716
69717
69718
69719
69720
69721
69722
69723
69724
69725
69726
69727
69728
69729
69730
69731
69732
69733
69734
69735
69736
69737
69738
69739
69740
69741
69742
69743
69744
69745
69746
69747
69748
69749
69750
69751
69752
69753
69754
69755
69756
69757
69758
69759
69760
69761
69762
69763
69764
69765
69766
69767
69768
69769
69770
69771
69772
69773
69774
69775
69776
69777
69778
69779
69780
69781
69782
69783
69784
69785
69786
69787
69788
69789
69790
69791
69792
69793
69794
69795
69796
69797
69798
69799
69800
69801
69802
69803
69804
69805
69806
69807
69808
69809
69810
69811
69812
69813
69814
69815
69816
69817
69818
69819
69820
69821
69822
69823
69824
69825
69826
69827
69828
69829
69830
69831
69832
69833
69834
69835
69836
69837
69838
69839
69840
69841
69842
69843
69844
69845
69846
69847
69848
69849
69850
69851
69852
69853
69854
69855
69856
69857
69858
69859
69860
69861
69862
69863
69864
69865
69866
69867
69868
69869
69870
69871
69872
69873
69874
69875
69876
69877
69878
69879
69880
69881
69882
69883
69884
69885
69886
69887
69888
69889
69890
69891
69892
69893
69894
69895
69896
69897
69898
69899
69900
69901
69902
69903
69904
69905
69906
69907
69908
69909
69910
69911
69912
69913
69914
69915
69916
69917
69918
69919
69920
69921
69922
69923
69924
69925
69926
69927
69928
69929
69930
69931
69932
69933
69934
69935
69936
69937
69938
69939
69940
69941
69942
69943
69944
69945
69946
69947
69948
69949
69950
69951
69952
69953
69954
69955
69956
69957
69958
69959
69960
69961
69962
69963
69964
69965
69966
69967
69968
69969
69970
69971
69972
69973
69974
69975
69976
69977
69978
69979
69980
69981
69982
69983
69984
69985
69986
69987
69988
69989
69990
69991
69992
69993
69994
69995
69996
69997
69998
69999
70000
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605754_563d1298-a124-4259-aa85-6aa49bb0e1c3">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6f29f76e-e822-4697-b88b-fdb44a7207b7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605754_563d1298-a124-4259-aa85-6aa49bb0e1c3_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605754_563d1298-a124-4259-aa85-6aa49bb0e1c3_poly_0_">
                      <gml:posList srsDimension="3">568544.653 5517168.952 0.0 568544.653 5517168.952 11.789999999999992 568544.628 5517168.821 11.789999999999992 568544.628 5517168.821 0.0 568544.653 5517168.952 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_605754_f6bc40a5-d904-4c94-bf5d-a5d8181f0615">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8afdde2f-95d0-4ad2-8f0c-94727ba0d190">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605754_f6bc40a5-d904-4c94-bf5d-a5d8181f0615_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605754_f6bc40a5-d904-4c94-bf5d-a5d8181f0615_poly_0_">
                      <gml:posList srsDimension="3">568546.109 5517167.1 0.0 568546.109 5517167.1 11.72199999999998 568541.707 5517143.441 11.72199999999998 568541.707 5517143.441 0.0 568546.109 5517167.1 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_605754_35009ab2-e938-4246-b0e4-bc6ede004bde">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_888d6407-dda4-4411-856a-d76338eae40a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605754_35009ab2-e938-4246-b0e4-bc6ede004bde_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605754_35009ab2-e938-4246-b0e4-bc6ede004bde_poly_0_">
                      <gml:posList srsDimension="3">568533.842 5517143.468 0.0 568540.325 5517142.245 0.0 568540.325 5517142.245 11.765999999999991 568533.842 5517143.468 12.019999999999982 568527.375 5517144.688 11.765999999999991 568527.375 5517144.688 0.0 568533.842 5517143.468 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605754_38dd7418-9300-4e1e-9265-6a63bc052b51">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fa07c5c2-39ab-4e77-a858-b2c2a47a3f82">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605754_38dd7418-9300-4e1e-9265-6a63bc052b51_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605754_38dd7418-9300-4e1e-9265-6a63bc052b51_poly_0_">
                      <gml:posList srsDimension="3">568532.805 5517171.051 0.0 568532.805 5517171.051 11.786000000000001 568532.82 5517171.171 11.786000000000001 568532.82 5517171.171 0.0 568532.805 5517171.051 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_605754_7a7de844-a521-4b8f-9555-791fb9afabce">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_82296ee5-fcda-4d7f-aab9-82b49621c467">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605754_7a7de844-a521-4b8f-9555-791fb9afabce_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605754_7a7de844-a521-4b8f-9555-791fb9afabce_poly_0_">
                      <gml:posList srsDimension="3">568535.853 5517170.602 0.0 568535.853 5517170.602 11.905000000000001 568535.828 5517170.471 11.905000000000001 568535.828 5517170.471 0.0 568535.853 5517170.602 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_605754_9818a40c-28fa-47de-b9e0-587405f60359">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_76c5d7bc-3165-4246-8fc5-00e92db58cef">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605754_9818a40c-28fa-47de-b9e0-587405f60359_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605754_9818a40c-28fa-47de-b9e0-587405f60359_poly_0_">
                      <gml:posList srsDimension="3">568530.839 5517169.962 11.719999999999999 568530.852 5517169.973 11.719999999999999 568531.535 5517170.56 11.74199999999999 568531.535 5517170.56 0.0 568530.852 5517169.973 0.0 568530.839 5517169.962 0.0 568530.839 5517169.962 11.719999999999999</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_605754_07bacc5d-2a4e-4529-a089-5292f711c67d">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d65e0695-89b4-4d02-99a4-a7a6149559c4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605754_07bacc5d-2a4e-4529-a089-5292f711c67d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605754_07bacc5d-2a4e-4529-a089-5292f711c67d_poly_0_">
                      <gml:posList srsDimension="3">568526.962 5517145.492 0.0 568527.375 5517144.688 0.0 568527.375 5517144.688 11.765999999999991 568526.962 5517145.492 11.745000000000005 568526.549 5517146.296 11.72399999999999 568526.549 5517146.296 0.0 568526.962 5517145.492 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_605754_fab22c02-2b50-4fa5-b5bc-3804ffef9d54">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_85ab2fad-8ccb-460a-aa7c-e89d2b43937e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605754_fab22c02-2b50-4fa5-b5bc-3804ffef9d54_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605754_fab22c02-2b50-4fa5-b5bc-3804ffef9d54_poly_0_">
                      <gml:posList srsDimension="3">568541.011 5517142.843 0.0 568541.011 5517142.843 11.744 568540.325 5517142.245 11.765999999999991 568540.325 5517142.245 0.0 568541.011 5517142.843 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_605754_1a8345ed-a197-4af5-85b0-2fcb12919474">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_0eed5472-e819-4da4-b161-341c08b86466">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605754_1a8345ed-a197-4af5-85b0-2fcb12919474_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605754_1a8345ed-a197-4af5-85b0-2fcb12919474_poly_0_">
                      <gml:posList srsDimension="3">568541.594 5517169.39 0.0 568541.594 5517169.39 11.908999999999992 568541.619 5517169.521 11.908999999999992 568541.619 5517169.521 0.0 568541.594 5517169.39 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_605754_64ca9b18-4814-4807-a2e4-c5307ba62e8a">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b443ce80-3de7-4124-a89c-ed719c4290fd">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605754_64ca9b18-4814-4807-a2e4-c5307ba62e8a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605754_64ca9b18-4814-4807-a2e4-c5307ba62e8a_poly_0_">
                      <gml:posList srsDimension="3">568541.707 5517143.441 0.0 568541.011 5517142.843 0.0 568540.325 5517142.245 0.0 568533.842 5517143.468 0.0 568527.375 5517144.688 0.0 568526.962 5517145.492 0.0 568526.549 5517146.296 0.0 568530.44 5517167.761 0.0 568530.839 5517169.962 0.0 568530.852 5517169.973 0.0 568531.535 5517170.56 0.0 568532.221 5517171.157 0.0 568532.805 5517171.051 0.0 568532.82 5517171.171 0.0 568535.853 5517170.602 0.0 568535.828 5517170.471 0.0 568537.179 5517170.225 0.0 568537.204 5517170.356 0.0 568538.788 5517170.058 0.0 568540.278 5517169.778 0.0 568540.253 5517169.647 0.0 568541.594 5517169.39 0.0 568541.619 5517169.521 0.0 568544.653 5517168.952 0.0 568544.628 5517168.821 0.0 568545.243 5517168.705 0.0 568545.676 5517167.902 0.0 568546.109 5517167.1 0.0 568541.707 5517143.441 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_605754_6d9b5675-27c9-400e-9c39-ca112b694cd2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_66440e9f-99df-4b4e-84ce-6c483cc5d412">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605754_6d9b5675-27c9-400e-9c39-ca112b694cd2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605754_6d9b5675-27c9-400e-9c39-ca112b694cd2_poly_0_">
                      <gml:posList srsDimension="3">568544.628 5517168.821 0.0 568544.628 5517168.821 11.789999999999992 568545.243 5517168.705 11.765999999999991 568545.243 5517168.705 0.0 568544.628 5517168.821 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_605754_a3a7ef45-4a93-43af-b40b-e96d8373af1d">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d9069aeb-5de7-4a95-8726-21f3a132fc9d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605754_a3a7ef45-4a93-43af-b40b-e96d8373af1d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605754_a3a7ef45-4a93-43af-b40b-e96d8373af1d_poly_0_">
                      <gml:posList srsDimension="3">568532.221 5517171.157 0.0 568532.221 5517171.157 11.763999999999982 568532.805 5517171.051 11.786000000000001 568532.805 5517171.051 0.0 568532.221 5517171.157 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_605754_dc9e1fa9-c434-43cb-a4c1-cb89d66d5c4c">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_81d7dea5-068c-4592-b985-a02359aff0c0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605754_dc9e1fa9-c434-43cb-a4c1-cb89d66d5c4c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605754_dc9e1fa9-c434-43cb-a4c1-cb89d66d5c4c_poly_0_">
                      <gml:posList srsDimension="3">568532.82 5517171.171 0.0 568532.82 5517171.171 11.786000000000001 568535.853 5517170.602 11.905000000000001 568535.853 5517170.602 0.0 568532.82 5517171.171 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605754_cfbc15e4-4eb1-4f1f-8172-c4b4bc791095">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c24b3b04-24ff-4c57-8d46-b02c6af2bc31">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605754_cfbc15e4-4eb1-4f1f-8172-c4b4bc791095_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605754_cfbc15e4-4eb1-4f1f-8172-c4b4bc791095_poly_0_">
                      <gml:posList srsDimension="3">568537.179 5517170.225 0.0 568537.179 5517170.225 11.957999999999998 568537.204 5517170.356 11.957999999999998 568537.204 5517170.356 0.0 568537.179 5517170.225 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_605754_125aa8c3-e009-4f47-b570-5f92d8b72ab7">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_05508869-fd50-48ba-a986-bd853d1d7491">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605754_125aa8c3-e009-4f47-b570-5f92d8b72ab7_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605754_125aa8c3-e009-4f47-b570-5f92d8b72ab7_poly_0_">
                      <gml:posList srsDimension="3">568535.828 5517170.471 0.0 568535.828 5517170.471 11.905000000000001 568537.179 5517170.225 11.957999999999998 568537.179 5517170.225 0.0 568535.828 5517170.471 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_605754_870411bd-70e7-4577-90cb-080a00f172c1">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7ef4f3c0-6638-459d-b547-0094bef02ae0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605754_870411bd-70e7-4577-90cb-080a00f172c1_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605754_870411bd-70e7-4577-90cb-080a00f172c1_poly_0_">
                      <gml:posList srsDimension="3">568541.619 5517169.521 0.0 568541.619 5517169.521 11.908999999999992 568544.653 5517168.952 11.789999999999992 568544.653 5517168.952 0.0 568541.619 5517169.521 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_605754_69a977cd-a87c-4299-80c0-607ecff83aca">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c723dac5-5b59-41d0-bc1b-97f669867507">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605754_69a977cd-a87c-4299-80c0-607ecff83aca_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605754_69a977cd-a87c-4299-80c0-607ecff83aca_poly_0_">
                      <gml:posList srsDimension="3">568540.325 5517142.245 11.765999999999991 568541.011 5517142.843 11.744 568541.707 5517143.441 11.72199999999998 568546.109 5517167.1 11.72199999999998 568545.676 5517167.902 11.744 568545.243 5517168.705 11.765999999999991 568544.628 5517168.821 11.789999999999992 568544.653 5517168.952 11.789999999999992 568541.619 5517169.521 11.908999999999992 568541.594 5517169.39 11.908999999999992 568540.253 5517169.647 11.961999999999989 568540.278 5517169.778 11.961999999999989 568538.788 5517170.058 12.019999999999982 568533.842 5517143.468 12.019999999999982 568540.325 5517142.245 11.765999999999991</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_605754_832596dd-cbdb-42de-96b1-cf31adbb3a93">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_17a1cdc2-048a-4ab7-83ff-7cb59007aacd">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605754_832596dd-cbdb-42de-96b1-cf31adbb3a93_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605754_832596dd-cbdb-42de-96b1-cf31adbb3a93_poly_0_">
                      <gml:posList srsDimension="3">568526.962 5517145.492 11.745000000000005 568527.375 5517144.688 11.765999999999991 568533.842 5517143.468 12.019999999999982 568538.788 5517170.058 12.019999999999982 568537.204 5517170.356 11.957999999999998 568537.179 5517170.225 11.957999999999998 568535.828 5517170.471 11.905000000000001 568535.853 5517170.602 11.905000000000001 568532.82 5517171.171 11.786000000000001 568532.805 5517171.051 11.786000000000001 568532.221 5517171.157 11.763999999999982 568531.535 5517170.56 11.74199999999999 568530.852 5517169.973 11.719999999999999 568530.839 5517169.962 11.719999999999999 568530.44 5517167.761 11.719999999999999 568526.549 5517146.296 11.72399999999999 568526.962 5517145.492 11.745000000000005</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_605703">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9ofL7</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.467</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_6a8a2341-cec8-4df4-ba36-bc7cfb68ed1d">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_6f89c159-ee04-4e06-9c3d-3e05096befd5">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605703_f81c5e46-d544-4a1a-a453-08aff61515b0_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605703_e1f36276-1687-4d04-a5d3-da49e1d7a010_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605703_3200f3b7-6c69-4649-a338-13574b09f4f6_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605703_59b89415-2837-4df3-9cb8-849634840e14_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605703_713482b3-3234-4cc5-b648-a1ebca280241_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605703_4c3f57e1-37ca-4e43-8d72-51aed56a5d6a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605703_17968ef6-1159-40a9-93c5-10917fa5dec2_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605703_4c3f57e1-37ca-4e43-8d72-51aed56a5d6a">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_971f3f8f-a458-44c4-8405-33bb4fa0e54a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605703_4c3f57e1-37ca-4e43-8d72-51aed56a5d6a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605703_4c3f57e1-37ca-4e43-8d72-51aed56a5d6a_poly_0_">
                      <gml:posList srsDimension="3">568258.451 5517139.768 0.0 568258.451 5517139.768 2.467000000000013 568263.217 5517140.898 2.467000000000013 568263.217 5517140.898 0.0 568258.451 5517139.768 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_605703_713482b3-3234-4cc5-b648-a1ebca280241">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f055ee5f-678d-4938-aa3d-a6d9cdb68c4d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605703_713482b3-3234-4cc5-b648-a1ebca280241_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605703_713482b3-3234-4cc5-b648-a1ebca280241_poly_0_">
                      <gml:posList srsDimension="3">568263.207 5517134.155 0.0 568263.207 5517134.155 2.467000000000013 568257.85 5517134.531 2.467000000000013 568257.85 5517134.531 0.0 568263.207 5517134.155 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_605703_f81c5e46-d544-4a1a-a453-08aff61515b0">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_da3699e0-3495-44e4-9b95-48102ab3eccf">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605703_f81c5e46-d544-4a1a-a453-08aff61515b0_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605703_f81c5e46-d544-4a1a-a453-08aff61515b0_poly_0_">
                      <gml:posList srsDimension="3">568257.866 5517139.635 0.0 568257.866 5517139.635 2.467000000000013 568258.451 5517139.768 2.467000000000013 568258.451 5517139.768 0.0 568257.866 5517139.635 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_605703_17968ef6-1159-40a9-93c5-10917fa5dec2">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e2a9ecc8-39d5-4a74-9b10-af430227a4af">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605703_17968ef6-1159-40a9-93c5-10917fa5dec2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605703_17968ef6-1159-40a9-93c5-10917fa5dec2_poly_0_">
                      <gml:posList srsDimension="3">568257.85 5517134.531 0.0 568257.85 5517134.531 2.467000000000013 568257.866 5517139.635 2.467000000000013 568257.866 5517139.635 0.0 568257.85 5517134.531 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_605703_e1f36276-1687-4d04-a5d3-da49e1d7a010">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8add57f5-291d-4aca-8bec-e378a80af6b0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605703_e1f36276-1687-4d04-a5d3-da49e1d7a010_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605703_e1f36276-1687-4d04-a5d3-da49e1d7a010_poly_0_">
                      <gml:posList srsDimension="3">568263.217 5517140.898 0.0 568263.217 5517140.898 2.467000000000013 568263.207 5517134.155 2.467000000000013 568263.207 5517134.155 0.0 568263.217 5517140.898 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_605703_59b89415-2837-4df3-9cb8-849634840e14">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_779af17a-7a1f-444e-a7bd-2775fc89914f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605703_59b89415-2837-4df3-9cb8-849634840e14_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605703_59b89415-2837-4df3-9cb8-849634840e14_poly_0_">
                      <gml:posList srsDimension="3">568263.207 5517134.155 2.467000000000013 568263.217 5517140.898 2.467000000000013 568258.451 5517139.768 2.467000000000013 568257.866 5517139.635 2.467000000000013 568257.85 5517134.531 2.467000000000013 568263.207 5517134.155 2.467000000000013</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_605703_3200f3b7-6c69-4649-a338-13574b09f4f6">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3861ea5c-ef38-4461-a7d9-665e155892c6">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605703_3200f3b7-6c69-4649-a338-13574b09f4f6_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605703_3200f3b7-6c69-4649-a338-13574b09f4f6_poly_0_">
                      <gml:posList srsDimension="3">568257.85 5517134.531 0.0 568257.866 5517139.635 0.0 568258.451 5517139.768 0.0 568263.217 5517140.898 0.0 568263.207 5517134.155 0.0 568257.85 5517134.531 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_605116">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odNH</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 28, 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>3200</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">16.09</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_41795fef-c86d-4c0f-ba1a-18e3007fadd0">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_bd8eaa39-6397-4b22-8be2-0fb4ffc82105">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605116_839ad3b9-6c51-4dd6-8fd4-5636881c4083_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605116_c7b9ea2b-3e78-488d-add5-97cd3fb9d565_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605116_272b9583-2d69-45f0-85b9-ef1f27b64e0e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605116_6453e430-206e-4822-92b2-e44690f5f45d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605116_9a0e8d07-3995-47f2-8f90-b31f18232a8f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605116_fb23a0e4-2c38-4e2f-befa-e4c423281f9b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605116_44c0536a-eff8-4fbb-98ec-42007cf9919b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605116_34567cb1-93af-4e44-8354-d4c39654e16f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605116_a0ca33b9-0cbb-4757-a62b-832351bc3697_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605116_5da8598b-4701-4cf8-97fd-dc6c5d4084df_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605116_64374915-504e-4d51-a525-18fbd5a55726_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605116_5da8598b-4701-4cf8-97fd-dc6c5d4084df">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3967a50f-638f-48e3-8e53-aea6675d7e12">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605116_5da8598b-4701-4cf8-97fd-dc6c5d4084df_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605116_5da8598b-4701-4cf8-97fd-dc6c5d4084df_poly_0_">
                      <gml:posList srsDimension="3">568427.676 5516997.492 11.960000000000008 568434.348 5516996.989 11.947000000000003 568438.942 5516996.653 11.948000000000008 568434.5 5517001.783 16.090000000000003 568424.182 5517002.538 16.090000000000003 568423.845 5516997.758 11.948000000000008 568427.676 5516997.492 11.960000000000008</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_605116_839ad3b9-6c51-4dd6-8fd4-5636881c4083">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_35ffeae7-5548-437c-b495-80ab0947990f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605116_839ad3b9-6c51-4dd6-8fd4-5636881c4083_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605116_839ad3b9-6c51-4dd6-8fd4-5636881c4083_poly_0_">
                      <gml:posList srsDimension="3">568439.614 5517006.215 0.0 568439.614 5517006.215 11.948000000000008 568439.187 5517000.215 11.952000000000027 568439.187 5517000.215 0.0 568439.614 5517006.215 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_605116_9a0e8d07-3995-47f2-8f90-b31f18232a8f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ec2ab136-79a4-4649-bf6b-1a6592064e51">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605116_9a0e8d07-3995-47f2-8f90-b31f18232a8f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605116_9a0e8d07-3995-47f2-8f90-b31f18232a8f_poly_0_">
                      <gml:posList srsDimension="3">568434.348 5516996.989 0.0 568434.348 5516996.989 11.947000000000003 568427.676 5516997.492 11.960000000000008 568427.676 5516997.492 0.0 568434.348 5516996.989 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_605116_44c0536a-eff8-4fbb-98ec-42007cf9919b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e337c873-fa9b-4165-91f7-156facaac58d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605116_44c0536a-eff8-4fbb-98ec-42007cf9919b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605116_44c0536a-eff8-4fbb-98ec-42007cf9919b_poly_0_">
                      <gml:posList srsDimension="3">568423.845 5516997.758 11.948000000000008 568424.182 5517002.538 16.090000000000003 568424.519 5517007.318 11.948000000000008 568424.519 5517007.318 0.0 568424.182 5517002.538 0.0 568423.845 5516997.758 0.0 568423.845 5516997.758 11.948000000000008</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_605116_64374915-504e-4d51-a525-18fbd5a55726">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e42e9df3-df3f-442c-86d7-cc57ac4fbf86">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605116_64374915-504e-4d51-a525-18fbd5a55726_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605116_64374915-504e-4d51-a525-18fbd5a55726_poly_0_">
                      <gml:posList srsDimension="3">568439.187 5517000.215 0.0 568439.187 5517000.215 11.952000000000027 568438.942 5516996.653 11.948000000000008 568438.942 5516996.653 0.0 568439.187 5517000.215 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_605116_272b9583-2d69-45f0-85b9-ef1f27b64e0e">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c16e2934-fdc6-4ea3-ae86-9459ad311ec4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605116_272b9583-2d69-45f0-85b9-ef1f27b64e0e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605116_272b9583-2d69-45f0-85b9-ef1f27b64e0e_poly_0_">
                      <gml:posList srsDimension="3">568434.5 5517001.783 16.090000000000003 568439.614 5517006.215 11.948000000000008 568424.519 5517007.318 11.948000000000008 568424.182 5517002.538 16.090000000000003 568434.5 5517001.783 16.090000000000003</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_605116_fb23a0e4-2c38-4e2f-befa-e4c423281f9b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_34cd3a0f-d8b9-44c5-ae8e-f416c0d37408">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605116_fb23a0e4-2c38-4e2f-befa-e4c423281f9b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605116_fb23a0e4-2c38-4e2f-befa-e4c423281f9b_poly_0_">
                      <gml:posList srsDimension="3">568427.676 5516997.492 0.0 568427.676 5516997.492 11.960000000000008 568423.845 5516997.758 11.948000000000008 568423.845 5516997.758 0.0 568427.676 5516997.492 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_605116_c7b9ea2b-3e78-488d-add5-97cd3fb9d565">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_157b9582-7960-4799-af5b-2fcfc26ac0ae">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605116_c7b9ea2b-3e78-488d-add5-97cd3fb9d565_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605116_c7b9ea2b-3e78-488d-add5-97cd3fb9d565_poly_0_">
                      <gml:posList srsDimension="3">568438.942 5516996.653 0.0 568438.942 5516996.653 11.948000000000008 568434.348 5516996.989 11.947000000000003 568434.348 5516996.989 0.0 568438.942 5516996.653 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_605116_34567cb1-93af-4e44-8354-d4c39654e16f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_809b1661-8130-46de-a816-93267f019d99">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605116_34567cb1-93af-4e44-8354-d4c39654e16f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605116_34567cb1-93af-4e44-8354-d4c39654e16f_poly_0_">
                      <gml:posList srsDimension="3">568438.942 5516996.653 11.948000000000008 568439.187 5517000.215 11.952000000000027 568439.614 5517006.215 11.948000000000008 568434.5 5517001.783 16.090000000000003 568438.942 5516996.653 11.948000000000008</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_605116_6453e430-206e-4822-92b2-e44690f5f45d">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fe328b3d-8865-4df6-a4de-33199c40b156">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605116_6453e430-206e-4822-92b2-e44690f5f45d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605116_6453e430-206e-4822-92b2-e44690f5f45d_poly_0_">
                      <gml:posList srsDimension="3">568439.187 5517000.215 0.0 568438.942 5516996.653 0.0 568434.348 5516996.989 0.0 568427.676 5516997.492 0.0 568423.845 5516997.758 0.0 568424.182 5517002.538 0.0 568424.519 5517007.318 0.0 568439.614 5517006.215 0.0 568439.187 5517000.215 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_605116_a0ca33b9-0cbb-4757-a62b-832351bc3697">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d27c520c-9c3e-4190-aae9-19a25a24bdb7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605116_a0ca33b9-0cbb-4757-a62b-832351bc3697_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605116_a0ca33b9-0cbb-4757-a62b-832351bc3697_poly_0_">
                      <gml:posList srsDimension="3">568424.519 5517007.318 0.0 568424.519 5517007.318 11.948000000000008 568439.614 5517006.215 11.948000000000008 568439.614 5517006.215 0.0 568424.519 5517007.318 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_605055">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odLk</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 31, 97080, Würzburg</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2019-09-25</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_1000</bldg:function>
      <bldg:yearOfConstruction>1954</bldg:yearOfConstruction>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">15.502</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_727c87a3-a097-4183-b957-dd71c687bc08">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_93a0be4d-27b6-4801-8bb5-2081a7d21e6e">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605055_73a5bb8f-f973-4720-99a0-66342c327c7e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605055_4d612d71-489c-4f66-add2-691cebd00c59_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605055_9298c327-9fca-47f8-8cab-ada034f1274d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605055_bcff3fd4-4416-4485-8f79-53de98e9e8c5_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605055_341e30ae-41bb-4dde-891f-9ef58120219d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605055_25278cd4-e725-410d-8d91-f70b0bd0bb2e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605055_2d91a765-2ab7-42d1-a6f9-6eb4d25a6872_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605055_8d1e8144-2724-4343-ab3c-cea85eed1044_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605055_063a48bc-03b0-4cfc-8468-ecd1545a27e5_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605055_22a5c679-e946-47da-9710-ee2261d14e15_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605055_a524e86a-943b-4435-8234-10ebd9ee1913_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605055_d030099e-436b-4c1c-88b9-a3e48f18f13f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605055_cf5037fc-d35e-4f2b-9994-95d2d353da2d_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605055_9298c327-9fca-47f8-8cab-ada034f1274d">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f363b3bb-de75-4ba4-a0ca-97bc3d9ca554">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605055_9298c327-9fca-47f8-8cab-ada034f1274d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605055_9298c327-9fca-47f8-8cab-ada034f1274d_poly_0_">
                      <gml:posList srsDimension="3">568385.829 5517034.969 10.879000000000019 568385.836 5517035.072 10.879000000000019 568386.009 5517037.707 10.870000000000005 568386.009 5517037.707 0.0 568385.836 5517035.072 0.0 568385.829 5517034.969 0.0 568385.829 5517034.969 10.879000000000019</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_605055_bcff3fd4-4416-4485-8f79-53de98e9e8c5">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_0073a18b-074f-43d6-ba28-d4fec1c4ebd3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605055_bcff3fd4-4416-4485-8f79-53de98e9e8c5_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605055_bcff3fd4-4416-4485-8f79-53de98e9e8c5_poly_0_">
                      <gml:posList srsDimension="3">568395.584 5517034.357 0.0 568394.89 5517024.258 0.0 568384.821 5517024.994 0.0 568385.202 5517030.018 0.0 568385.578 5517034.989 0.0 568385.829 5517034.969 0.0 568385.836 5517035.072 0.0 568386.009 5517037.707 0.0 568386.415 5517043.77 0.0 568386.433 5517044.046 0.0 568396.201 5517043.335 0.0 568395.584 5517034.357 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_605055_a524e86a-943b-4435-8234-10ebd9ee1913">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3354a7df-3b0f-4957-ad63-4f90b317c45c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605055_a524e86a-943b-4435-8234-10ebd9ee1913_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605055_a524e86a-943b-4435-8234-10ebd9ee1913_poly_0_">
                      <gml:posList srsDimension="3">568394.89 5517024.258 0.0 568395.584 5517034.357 0.0 568396.201 5517043.335 0.0 568396.201 5517043.335 10.582999999999998 568395.584 5517034.357 10.588999999999999 568394.89 5517024.258 10.588999999999999 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:WallSurface gml:id="DEBY_LOD2_605055_4d612d71-489c-4f66-add2-691cebd00c59">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_703c8684-20ff-47b7-a00e-14625374194d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605055_4d612d71-489c-4f66-add2-691cebd00c59_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605055_4d612d71-489c-4f66-add2-691cebd00c59_poly_0_">
                      <gml:posList srsDimension="3">568385.578 5517034.989 0.0 568385.578 5517034.989 10.63900000000001 568385.829 5517034.969 10.879000000000019 568385.829 5517034.969 0.0 568385.578 5517034.989 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_cf5037fc-d35e-4f2b-9994-95d2d353da2d">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_51b084d8-0440-45cf-9092-23183629bed2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605055_cf5037fc-d35e-4f2b-9994-95d2d353da2d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605055_cf5037fc-d35e-4f2b-9994-95d2d353da2d_poly_0_">
                      <gml:posList srsDimension="3">568394.89 5517024.258 10.588999999999999 568395.584 5517034.357 10.588999999999999 568396.201 5517043.335 10.582999999999998 568390.832 5517038.675 15.50200000000001 568390.561 5517034.726 15.5 568390.213 5517029.65 15.5 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:RoofSurface gml:id="DEBY_LOD2_605055_73a5bb8f-f973-4720-99a0-66342c327c7e">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3345a945-457d-4267-b03b-c9484da22661">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605055_73a5bb8f-f973-4720-99a0-66342c327c7e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605055_73a5bb8f-f973-4720-99a0-66342c327c7e_poly_0_">
                      <gml:posList srsDimension="3">568390.213 5517029.65 15.5 568385.578 5517034.989 10.63900000000001 568385.202 5517030.018 15.5 568390.213 5517029.65 15.5</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_d030099e-436b-4c1c-88b9-a3e48f18f13f">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ad0bcced-6e8f-447b-b659-39d360b042f9">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605055_d030099e-436b-4c1c-88b9-a3e48f18f13f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605055_d030099e-436b-4c1c-88b9-a3e48f18f13f_poly_0_">
                      <gml:posList srsDimension="3">568386.009 5517037.707 10.870000000000005 568386.415 5517043.77 10.860000000000014 568386.433 5517044.046 10.588999999999999 568386.433 5517044.046 0.0 568386.415 5517043.77 0.0 568386.009 5517037.707 0.0 568386.009 5517037.707 10.870000000000005</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_8d1e8144-2724-4343-ab3c-cea85eed1044">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_23845f89-36fe-4af3-bcb3-81a2cb144f7a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605055_8d1e8144-2724-4343-ab3c-cea85eed1044_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605055_8d1e8144-2724-4343-ab3c-cea85eed1044_poly_0_">
                      <gml:posList srsDimension="3">568390.213 5517029.65 15.5 568390.561 5517034.726 15.5 568390.832 5517038.675 15.50200000000001 568386.415 5517043.77 10.860000000000014 568386.009 5517037.707 10.870000000000005 568385.836 5517035.072 10.879000000000019 568385.829 5517034.969 10.879000000000019 568385.578 5517034.989 10.63900000000001 568390.213 5517029.65 15.5</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_22a5c679-e946-47da-9710-ee2261d14e15">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a5669f34-cb03-487e-89f5-6894641e7377">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605055_22a5c679-e946-47da-9710-ee2261d14e15_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605055_22a5c679-e946-47da-9710-ee2261d14e15_poly_0_">
                      <gml:posList srsDimension="3">568384.821 5517024.994 10.588999999999999 568385.202 5517030.018 15.5 568385.578 5517034.989 10.63900000000001 568385.578 5517034.989 0.0 568385.202 5517030.018 0.0 568384.821 5517024.994 0.0 568384.821 5517024.994 10.588999999999999</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_063a48bc-03b0-4cfc-8468-ecd1545a27e5">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b9e88090-717e-4b58-a1ef-a55b9bae8254">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605055_063a48bc-03b0-4cfc-8468-ecd1545a27e5_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605055_063a48bc-03b0-4cfc-8468-ecd1545a27e5_poly_0_">
                      <gml:posList srsDimension="3">568390.832 5517038.675 15.50200000000001 568396.201 5517043.335 10.582999999999998 568386.433 5517044.046 10.588999999999999 568386.415 5517043.77 10.860000000000014 568390.832 5517038.675 15.50200000000001</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_341e30ae-41bb-4dde-891f-9ef58120219d">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
For faster browsing, not all history is shown. View entire blame