Grombühl_v4_case_study.gml 6.37 MB
Newer Older
Eric Duminil's avatar
Eric Duminil committed
63001
63002
63003
63004
63005
63006
63007
63008
63009
63010
63011
63012
63013
63014
63015
63016
63017
63018
63019
63020
63021
63022
63023
63024
63025
63026
63027
63028
63029
63030
63031
63032
63033
63034
63035
63036
63037
63038
63039
63040
63041
63042
63043
63044
63045
63046
63047
63048
63049
63050
63051
63052
63053
63054
63055
63056
63057
63058
63059
63060
63061
63062
63063
63064
63065
63066
63067
63068
63069
63070
63071
63072
63073
63074
63075
63076
63077
63078
63079
63080
63081
63082
63083
63084
63085
63086
63087
63088
63089
63090
63091
63092
63093
63094
63095
63096
63097
63098
63099
63100
63101
63102
63103
63104
63105
63106
63107
63108
63109
63110
63111
63112
63113
63114
63115
63116
63117
63118
63119
63120
63121
63122
63123
63124
63125
63126
63127
63128
63129
63130
63131
63132
63133
63134
63135
63136
63137
63138
63139
63140
63141
63142
63143
63144
63145
63146
63147
63148
63149
63150
63151
63152
63153
63154
63155
63156
63157
63158
63159
63160
63161
63162
63163
63164
63165
63166
63167
63168
63169
63170
63171
63172
63173
63174
63175
63176
63177
63178
63179
63180
63181
63182
63183
63184
63185
63186
63187
63188
63189
63190
63191
63192
63193
63194
63195
63196
63197
63198
63199
63200
63201
63202
63203
63204
63205
63206
63207
63208
63209
63210
63211
63212
63213
63214
63215
63216
63217
63218
63219
63220
63221
63222
63223
63224
63225
63226
63227
63228
63229
63230
63231
63232
63233
63234
63235
63236
63237
63238
63239
63240
63241
63242
63243
63244
63245
63246
63247
63248
63249
63250
63251
63252
63253
63254
63255
63256
63257
63258
63259
63260
63261
63262
63263
63264
63265
63266
63267
63268
63269
63270
63271
63272
63273
63274
63275
63276
63277
63278
63279
63280
63281
63282
63283
63284
63285
63286
63287
63288
63289
63290
63291
63292
63293
63294
63295
63296
63297
63298
63299
63300
63301
63302
63303
63304
63305
63306
63307
63308
63309
63310
63311
63312
63313
63314
63315
63316
63317
63318
63319
63320
63321
63322
63323
63324
63325
63326
63327
63328
63329
63330
63331
63332
63333
63334
63335
63336
63337
63338
63339
63340
63341
63342
63343
63344
63345
63346
63347
63348
63349
63350
63351
63352
63353
63354
63355
63356
63357
63358
63359
63360
63361
63362
63363
63364
63365
63366
63367
63368
63369
63370
63371
63372
63373
63374
63375
63376
63377
63378
63379
63380
63381
63382
63383
63384
63385
63386
63387
63388
63389
63390
63391
63392
63393
63394
63395
63396
63397
63398
63399
63400
63401
63402
63403
63404
63405
63406
63407
63408
63409
63410
63411
63412
63413
63414
63415
63416
63417
63418
63419
63420
63421
63422
63423
63424
63425
63426
63427
63428
63429
63430
63431
63432
63433
63434
63435
63436
63437
63438
63439
63440
63441
63442
63443
63444
63445
63446
63447
63448
63449
63450
63451
63452
63453
63454
63455
63456
63457
63458
63459
63460
63461
63462
63463
63464
63465
63466
63467
63468
63469
63470
63471
63472
63473
63474
63475
63476
63477
63478
63479
63480
63481
63482
63483
63484
63485
63486
63487
63488
63489
63490
63491
63492
63493
63494
63495
63496
63497
63498
63499
63500
63501
63502
63503
63504
63505
63506
63507
63508
63509
63510
63511
63512
63513
63514
63515
63516
63517
63518
63519
63520
63521
63522
63523
63524
63525
63526
63527
63528
63529
63530
63531
63532
63533
63534
63535
63536
63537
63538
63539
63540
63541
63542
63543
63544
63545
63546
63547
63548
63549
63550
63551
63552
63553
63554
63555
63556
63557
63558
63559
63560
63561
63562
63563
63564
63565
63566
63567
63568
63569
63570
63571
63572
63573
63574
63575
63576
63577
63578
63579
63580
63581
63582
63583
63584
63585
63586
63587
63588
63589
63590
63591
63592
63593
63594
63595
63596
63597
63598
63599
63600
63601
63602
63603
63604
63605
63606
63607
63608
63609
63610
63611
63612
63613
63614
63615
63616
63617
63618
63619
63620
63621
63622
63623
63624
63625
63626
63627
63628
63629
63630
63631
63632
63633
63634
63635
63636
63637
63638
63639
63640
63641
63642
63643
63644
63645
63646
63647
63648
63649
63650
63651
63652
63653
63654
63655
63656
63657
63658
63659
63660
63661
63662
63663
63664
63665
63666
63667
63668
63669
63670
63671
63672
63673
63674
63675
63676
63677
63678
63679
63680
63681
63682
63683
63684
63685
63686
63687
63688
63689
63690
63691
63692
63693
63694
63695
63696
63697
63698
63699
63700
63701
63702
63703
63704
63705
63706
63707
63708
63709
63710
63711
63712
63713
63714
63715
63716
63717
63718
63719
63720
63721
63722
63723
63724
63725
63726
63727
63728
63729
63730
63731
63732
63733
63734
63735
63736
63737
63738
63739
63740
63741
63742
63743
63744
63745
63746
63747
63748
63749
63750
63751
63752
63753
63754
63755
63756
63757
63758
63759
63760
63761
63762
63763
63764
63765
63766
63767
63768
63769
63770
63771
63772
63773
63774
63775
63776
63777
63778
63779
63780
63781
63782
63783
63784
63785
63786
63787
63788
63789
63790
63791
63792
63793
63794
63795
63796
63797
63798
63799
63800
63801
63802
63803
63804
63805
63806
63807
63808
63809
63810
63811
63812
63813
63814
63815
63816
63817
63818
63819
63820
63821
63822
63823
63824
63825
63826
63827
63828
63829
63830
63831
63832
63833
63834
63835
63836
63837
63838
63839
63840
63841
63842
63843
63844
63845
63846
63847
63848
63849
63850
63851
63852
63853
63854
63855
63856
63857
63858
63859
63860
63861
63862
63863
63864
63865
63866
63867
63868
63869
63870
63871
63872
63873
63874
63875
63876
63877
63878
63879
63880
63881
63882
63883
63884
63885
63886
63887
63888
63889
63890
63891
63892
63893
63894
63895
63896
63897
63898
63899
63900
63901
63902
63903
63904
63905
63906
63907
63908
63909
63910
63911
63912
63913
63914
63915
63916
63917
63918
63919
63920
63921
63922
63923
63924
63925
63926
63927
63928
63929
63930
63931
63932
63933
63934
63935
63936
63937
63938
63939
63940
63941
63942
63943
63944
63945
63946
63947
63948
63949
63950
63951
63952
63953
63954
63955
63956
63957
63958
63959
63960
63961
63962
63963
63964
63965
63966
63967
63968
63969
63970
63971
63972
63973
63974
63975
63976
63977
63978
63979
63980
63981
63982
63983
63984
63985
63986
63987
63988
63989
63990
63991
63992
63993
63994
63995
63996
63997
63998
63999
64000
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605132_0adb4e06-509c-4fac-b52e-e355aa6d8433">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f567ae6a-3e9c-4f67-858c-2f329cdb3298">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605132_0adb4e06-509c-4fac-b52e-e355aa6d8433_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605132_0adb4e06-509c-4fac-b52e-e355aa6d8433_poly_0_">
                      <gml:posList srsDimension="3">568272.846 5516991.882 6.104000000000013 568273.75 5517004.199 9.491000000000014 568273.762 5517004.379 9.594999999999999 568273.762 5517004.379 0.0 568273.75 5517004.199 0.0 568272.846 5516991.882 0.0 568272.846 5516991.882 6.104000000000013</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_605132_9e1e1d7f-87fc-4275-ac7d-3b7ea4daf5a6">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e0b1d6db-0402-4ff2-aeb0-36c5e5cdd316">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605132_9e1e1d7f-87fc-4275-ac7d-3b7ea4daf5a6_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605132_9e1e1d7f-87fc-4275-ac7d-3b7ea4daf5a6_poly_0_">
                      <gml:posList srsDimension="3">568287.315 5516990.827 6.1059999999999945 568288.253 5517003.127 9.489000000000004 568281.089 5517003.655 9.490000000000009 568273.75 5517004.199 9.491000000000014 568272.846 5516991.882 6.104000000000013 568287.315 5516990.827 6.1059999999999945</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_605132_53fcabea-192e-4396-986b-80dab502701a">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4dcc182f-8e08-4c1b-8aa2-c343bfa6d3f4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605132_53fcabea-192e-4396-986b-80dab502701a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605132_53fcabea-192e-4396-986b-80dab502701a_poly_0_">
                      <gml:posList srsDimension="3">568273.712 5517004.383 0.0 568273.762 5517004.379 0.0 568273.762 5517004.379 9.594999999999999 568273.712 5517004.383 9.594999999999999 568273.712 5517004.383 6.646000000000015 568258.78 5517005.48 6.640000000000015 568258.78 5517005.48 0.0 568273.712 5517004.383 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_605132_cc535f62-8014-4960-af58-559c81403fff">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6137be4a-b8e6-4d70-b694-b6bb763d85c7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605132_cc535f62-8014-4960-af58-559c81403fff_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605132_cc535f62-8014-4960-af58-559c81403fff_poly_0_">
                      <gml:posList srsDimension="3">568306.228 5517010.503 10.240000000000009 568306.806 5517016.622 7.663000000000011 568304.539 5517019.281 6.621000000000009 568290.108 5517020.348 6.621000000000009 568289.296 5517011.77 10.233000000000004 568289.295 5517011.753 10.240000000000009 568306.228 5517010.503 10.240000000000009</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_605132_09efb434-8767-458d-a962-e9499839511a">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_66681ce3-1e41-4249-9624-b8cc87bafe87">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605132_09efb434-8767-458d-a962-e9499839511a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605132_09efb434-8767-458d-a962-e9499839511a_poly_0_">
                      <gml:posList srsDimension="3">568259.565 5517015.554 0.0 568259.565 5517015.554 9.575999999999993 568255.976 5517021.061 7.360000000000014 568255.976 5517021.061 0.0 568259.565 5517015.554 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_605132_70590466-bb80-4f03-9a4a-1b098f90902e">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c74a380a-b281-4e7c-8afd-8bd048a95d02">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605132_70590466-bb80-4f03-9a4a-1b098f90902e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605132_70590466-bb80-4f03-9a4a-1b098f90902e_poly_0_">
                      <gml:posList srsDimension="3">568289.296 5517011.77 10.607 568289.295 5517011.753 10.615000000000009 568288.931 5517007.91 12.289999999999992 568288.491 5517003.258 9.575999999999993 568288.491 5517003.258 6.662000000000006 568288.931 5517007.91 8.62100000000001 568289.295 5517011.753 10.240000000000009 568289.296 5517011.77 10.233000000000004 568290.108 5517020.348 6.621000000000009 568290.108 5517020.348 14.211999999999989 568289.296 5517011.77 10.607</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_605132_cd1bc6d7-2245-4047-b6c2-60f0d7bfd34e">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7b443585-36ac-42c3-b1a6-d7d229e577f9">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605132_cd1bc6d7-2245-4047-b6c2-60f0d7bfd34e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605132_cd1bc6d7-2245-4047-b6c2-60f0d7bfd34e_poly_0_">
                      <gml:posList srsDimension="3">568255.976 5517021.061 0.0 568255.976 5517021.061 7.360000000000014 568254.73 5517022.971 6.591000000000008 568254.73 5517022.971 0.0 568255.976 5517021.061 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_605132_6aec28c1-5d4a-4b4b-824d-c46358a69c8d">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f6d71599-1681-4570-add7-dfde8ce13aed">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605132_6aec28c1-5d4a-4b4b-824d-c46358a69c8d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605132_6aec28c1-5d4a-4b4b-824d-c46358a69c8d_poly_0_">
                      <gml:posList srsDimension="3">568258.78 5517005.48 6.640000000000015 568259.442 5517013.968 10.25 568259.565 5517015.554 9.575999999999993 568259.565 5517015.554 0.0 568259.442 5517013.968 0.0 568258.78 5517005.48 0.0 568258.78 5517005.48 6.640000000000015</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_605132_bc9d76f0-ae75-43be-9723-21a78cf7cb56">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_080e7183-b89e-439d-b71a-c9b9dde94f8e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605132_bc9d76f0-ae75-43be-9723-21a78cf7cb56_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605132_bc9d76f0-ae75-43be-9723-21a78cf7cb56_poly_0_">
                      <gml:posList srsDimension="3">568288.491 5517003.258 0.0 568293.762 5517002.811 0.0 568293.762 5517002.811 6.6370000000000005 568288.491 5517003.258 6.662000000000006 568288.491 5517003.258 9.575999999999993 568288.264 5517003.277 9.576999999999998 568288.264 5517003.277 0.0 568288.491 5517003.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_605132_49256ed2-ee63-4a48-8069-1ace1f5cdb2a">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_949f3820-3175-4d2e-a058-765357a102f7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605132_49256ed2-ee63-4a48-8069-1ace1f5cdb2a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605132_49256ed2-ee63-4a48-8069-1ace1f5cdb2a_poly_0_">
                      <gml:posList srsDimension="3">568288.253 5517003.127 9.489000000000004 568287.315 5516990.827 6.1059999999999945 568287.315 5516990.827 0.0 568288.253 5517003.127 0.0 568288.264 5517003.277 0.0 568288.264 5517003.277 9.576999999999998 568288.253 5517003.127 9.489000000000004</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_605132_75439bf9-b06a-4f18-afe0-03d65c72214b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_138f63dd-9c5f-4a3f-832d-ef992db9a230">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605132_75439bf9-b06a-4f18-afe0-03d65c72214b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605132_75439bf9-b06a-4f18-afe0-03d65c72214b_poly_0_">
                      <gml:posList srsDimension="3">568273.762 5517004.379 9.594999999999999 568273.75 5517004.199 9.491000000000014 568281.089 5517003.655 9.490000000000009 568288.253 5517003.127 9.489000000000004 568288.264 5517003.277 9.576999999999998 568288.491 5517003.258 9.575999999999993 568288.931 5517007.91 12.289999999999992 568274.052 5517009.008 12.289999999999992 568273.712 5517004.383 9.594999999999999 568273.762 5517004.379 9.594999999999999</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_605132_3e80d377-2965-49bc-beb9-5a9b80ee198a">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_395a1eea-b1e8-418c-beb0-c8b2a60b2df7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605132_3e80d377-2965-49bc-beb9-5a9b80ee198a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605132_3e80d377-2965-49bc-beb9-5a9b80ee198a_poly_0_">
                      <gml:posList srsDimension="3">568288.931 5517007.91 12.289999999999992 568289.295 5517011.753 10.615000000000009 568289.296 5517011.77 10.607 568274.336 5517012.875 10.607 568274.334 5517012.858 10.615000000000009 568274.052 5517009.008 12.289999999999992 568288.931 5517007.91 12.289999999999992</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_605132_2d4691ee-97b6-41f7-ae28-a60010a112d2">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_039fd127-98f1-4710-8f05-c12460d376b6">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605132_2d4691ee-97b6-41f7-ae28-a60010a112d2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605132_2d4691ee-97b6-41f7-ae28-a60010a112d2_poly_0_">
                      <gml:posList srsDimension="3">568306.228 5517010.503 0.0 568305.473 5517002.525 0.0 568305.403 5517001.861 0.0 568305.401 5517001.832 0.0 568304.758 5517001.896 0.0 568303.407 5517002.008 0.0 568293.762 5517002.811 0.0 568288.491 5517003.258 0.0 568288.264 5517003.277 0.0 568288.253 5517003.127 0.0 568287.315 5516990.827 0.0 568272.846 5516991.882 0.0 568273.75 5517004.199 0.0 568273.762 5517004.379 0.0 568273.712 5517004.383 0.0 568258.78 5517005.48 0.0 568259.442 5517013.968 0.0 568259.565 5517015.554 0.0 568255.976 5517021.061 0.0 568254.73 5517022.971 0.0 568274.968 5517021.466 0.0 568290.108 5517020.348 0.0 568304.539 5517019.281 0.0 568306.806 5517016.622 0.0 568306.228 5517010.503 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_605132_4c1a61c5-699b-492c-ab8d-a8bcb462e244">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5329edfa-10e0-4b41-9ffc-e500d2f78de1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605132_4c1a61c5-699b-492c-ab8d-a8bcb462e244_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605132_4c1a61c5-699b-492c-ab8d-a8bcb462e244_poly_0_">
                      <gml:posList srsDimension="3">568304.539 5517019.281 0.0 568304.539 5517019.281 6.621000000000009 568306.806 5517016.622 7.663000000000011 568306.806 5517016.622 0.0 568304.539 5517019.281 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_605132_ab1d5923-c78c-469a-93b2-897c0777ddc8">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7c9773d0-343f-4ea1-ab20-ed5929ded695">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605132_ab1d5923-c78c-469a-93b2-897c0777ddc8_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605132_ab1d5923-c78c-469a-93b2-897c0777ddc8_poly_0_">
                      <gml:posList srsDimension="3">568287.315 5516990.827 0.0 568287.315 5516990.827 6.1059999999999945 568272.846 5516991.882 6.104000000000013 568272.846 5516991.882 0.0 568287.315 5516990.827 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_605132_6f7a1270-0331-4590-8b99-eccd4a0bee61">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_22e265cd-5304-4d40-af9a-dfcc7e45e54e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605132_6f7a1270-0331-4590-8b99-eccd4a0bee61_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605132_6f7a1270-0331-4590-8b99-eccd4a0bee61_poly_0_">
                      <gml:posList srsDimension="3">568305.403 5517001.861 6.599999999999994 568305.401 5517001.832 6.587999999999994 568305.401 5517001.832 0.0 568305.403 5517001.861 0.0 568305.473 5517002.525 0.0 568305.473 5517002.525 6.8799999999999955 568305.403 5517001.861 6.599999999999994</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_605132_615d30ff-e44d-4a9d-9051-fe1cc6f4cc34">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7c78d383-1d5e-4ce6-95c8-2ebb82c2233a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605132_615d30ff-e44d-4a9d-9051-fe1cc6f4cc34_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605132_615d30ff-e44d-4a9d-9051-fe1cc6f4cc34_poly_0_">
                      <gml:posList srsDimension="3">568289.296 5517011.77 10.607 568290.108 5517020.348 14.211999999999989 568274.968 5517021.466 14.211999999999989 568274.336 5517012.875 10.607 568289.296 5517011.77 10.607</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_605132_bca94740-b428-4d61-8ad0-91eb3445f2a8">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3828c669-4e16-4a84-a5b5-367cb9fa9832">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605132_bca94740-b428-4d61-8ad0-91eb3445f2a8_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605132_bca94740-b428-4d61-8ad0-91eb3445f2a8_poly_0_">
                      <gml:posList srsDimension="3">568274.968 5517021.466 6.591000000000008 568274.968 5517021.466 14.211999999999989 568290.108 5517020.348 14.211999999999989 568290.108 5517020.348 6.621000000000009 568304.539 5517019.281 6.621000000000009 568304.539 5517019.281 0.0 568290.108 5517020.348 0.0 568274.968 5517021.466 0.0 568254.73 5517022.971 0.0 568254.73 5517022.971 6.591000000000008 568274.968 5517021.466 6.591000000000008</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_605132_bb522e59-29e7-44fb-8a77-aa32ebbe93e6">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_407e01de-ae53-4a17-afe1-3fa65d01f294">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605132_bb522e59-29e7-44fb-8a77-aa32ebbe93e6_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605132_bb522e59-29e7-44fb-8a77-aa32ebbe93e6_poly_0_">
                      <gml:posList srsDimension="3">568305.473 5517002.525 6.8799999999999955 568305.473 5517002.525 0.0 568306.228 5517010.503 0.0 568306.806 5517016.622 0.0 568306.806 5517016.622 7.663000000000011 568306.228 5517010.503 10.240000000000009 568305.473 5517002.525 6.8799999999999955</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_605132_621ac26f-7969-40b7-a48d-6256fdcfa8c7">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a0c29277-bde7-4659-92c6-088b5b015725">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605132_621ac26f-7969-40b7-a48d-6256fdcfa8c7_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605132_621ac26f-7969-40b7-a48d-6256fdcfa8c7_poly_0_">
                      <gml:posList srsDimension="3">568273.712 5517004.383 9.594999999999999 568274.052 5517009.008 12.289999999999992 568274.334 5517012.858 10.615000000000009 568274.336 5517012.875 10.607 568274.968 5517021.466 14.211999999999989 568274.968 5517021.466 6.591000000000008 568274.336 5517012.875 10.242999999999995 568274.334 5517012.858 10.25 568274.052 5517009.008 8.614000000000004 568273.712 5517004.383 6.646000000000015 568273.712 5517004.383 9.594999999999999</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_605132_b0d965ed-8ab6-4dcf-90f3-ee3a7122386b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_af6eb3b2-6990-4d3f-933e-04415fd792fb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605132_b0d965ed-8ab6-4dcf-90f3-ee3a7122386b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605132_b0d965ed-8ab6-4dcf-90f3-ee3a7122386b_poly_0_">
                      <gml:posList srsDimension="3">568293.762 5517002.811 6.6370000000000005 568303.407 5517002.008 6.599999999999994 568304.758 5517001.896 6.594999999999999 568305.401 5517001.832 6.587999999999994 568305.403 5517001.861 6.599999999999994 568305.473 5517002.525 6.8799999999999955 568306.228 5517010.503 10.240000000000009 568289.295 5517011.753 10.240000000000009 568288.931 5517007.91 8.62100000000001 568288.491 5517003.258 6.662000000000006 568293.762 5517002.811 6.6370000000000005</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_605132_03d41383-e4eb-459a-8435-2449a0ba8db2">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_25bb2f09-47a9-4d90-9196-7b146dd022f6">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605132_03d41383-e4eb-459a-8435-2449a0ba8db2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605132_03d41383-e4eb-459a-8435-2449a0ba8db2_poly_0_">
                      <gml:posList srsDimension="3">568305.401 5517001.832 0.0 568305.401 5517001.832 6.587999999999994 568304.758 5517001.896 6.594999999999999 568304.758 5517001.896 0.0 568305.401 5517001.832 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_605132_6947c2f2-47c1-446c-8327-888e90e8947f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d698d28c-207a-4f2f-9e2a-be031c542ae1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605132_6947c2f2-47c1-446c-8327-888e90e8947f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605132_6947c2f2-47c1-446c-8327-888e90e8947f_poly_0_">
                      <gml:posList srsDimension="3">568303.407 5517002.008 0.0 568304.758 5517001.896 0.0 568304.758 5517001.896 6.594999999999999 568303.407 5517002.008 6.599999999999994 568293.762 5517002.811 6.6370000000000005 568293.762 5517002.811 0.0 568303.407 5517002.008 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_605119">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odmL</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>Grombühlstraße 51, 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>1995</bldg:yearOfConstruction>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">20.62</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_d43526ba-2e56-4f58-a4db-f8708717e0af">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_8100e997-7057-4628-8bcf-97299ec0ab02">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605119_e1380efa-5ea7-4088-8de7-f1d22ad1e225_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605119_de6b14f1-5101-465c-bb7d-67a123cacea0_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605119_e41f8cad-f099-4656-a2d1-0ba97075374f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605119_1f95f662-cd1e-4def-b631-ff3eafea20d3_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605119_09da283d-38a8-43e1-be00-8fb5de43fc6c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605119_3b250bc0-296b-4ab5-a39d-293394be2a70_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605119_88dfde77-8153-4e8a-87f0-141f2c1dd44d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605119_836d1f1a-51d2-4634-91e4-83f7151b9cdc_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605119_52791b3d-ca2d-475f-b58b-5ff5ba0226cd_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605119_8490a561-2fd2-428a-8ce2-b45e53c67e8b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605119_f6328822-652c-4f8c-9458-11d16fcf02bd_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605119_b1cfbf42-bec4-402b-aaaa-c6b65ccc00bd_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605119_4a1765b4-8793-499e-af2b-6ddee10385ef_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605119_5f8a682d-9b82-47b9-9287-74c099f54064_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605119_40a03dec-b5b8-4268-8d66-21a0a1285ea9_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605119_5de5a6a4-5585-4384-b2f9-27748719f1fd_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605119_1e0d21a9-f979-4c76-9a34-e7b5ea732c69_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605119_32b67561-7925-4a73-aa43-ee3bf351527d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605119_a206ef66-6eba-4969-86a6-1facc143297d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605119_78aa72ae-5d6f-4772-9364-759e20cfe9f3_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605119_2fc3995d-77d6-4ee5-8676-086b20142fcb_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605119_26a307a0-c1dc-4585-8eac-3ab2f1cfae5b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605119_820a5aad-91a8-469d-89cf-ced75522dfa5_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605119_3c412dfc-ccad-4eb0-87da-100f415cbafa_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605119_b6f7917f-db42-45b1-85c8-5d7e5af99d00_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605119_f6328822-652c-4f8c-9458-11d16fcf02bd">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5a84ae12-35ec-4d1f-a9ab-471b13818c2b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605119_f6328822-652c-4f8c-9458-11d16fcf02bd_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605119_f6328822-652c-4f8c-9458-11d16fcf02bd_poly_0_">
                      <gml:posList srsDimension="3">568409.831 5516938.791 0.0 568409.831 5516938.791 12.720000000000027 568372.338 5516944.67 12.720000000000027 568372.338 5516944.67 0.0 568409.831 5516938.791 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_605119_b1cfbf42-bec4-402b-aaaa-c6b65ccc00bd">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_420902e4-dba5-4c60-bf19-515c71ccf1f5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605119_b1cfbf42-bec4-402b-aaaa-c6b65ccc00bd_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605119_b1cfbf42-bec4-402b-aaaa-c6b65ccc00bd_poly_0_">
                      <gml:posList srsDimension="3">568373.389 5516951.477 18.77000000000001 568373.389 5516951.477 20.620000000000005 568373.529 5516952.384 19.685000000000002 568373.389 5516951.477 18.77000000000001</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_605119_52791b3d-ca2d-475f-b58b-5ff5ba0226cd">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_db85fe38-775b-43bc-8c29-44c2670bd3eb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605119_52791b3d-ca2d-475f-b58b-5ff5ba0226cd_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605119_52791b3d-ca2d-475f-b58b-5ff5ba0226cd_poly_0_">
                      <gml:posList srsDimension="3">568412.015 5516949.841 0.0 568412.015 5516949.841 16.160000000000025 568411.543 5516949.912 16.16300000000001 568411.543 5516949.912 0.0 568412.015 5516949.841 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_605119_8490a561-2fd2-428a-8ce2-b45e53c67e8b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_005c91bd-ddf1-485e-b66a-eea0dc8f6bf2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605119_8490a561-2fd2-428a-8ce2-b45e53c67e8b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605119_8490a561-2fd2-428a-8ce2-b45e53c67e8b_poly_0_">
                      <gml:posList srsDimension="3">568371.277 5516960.35 0.0 568371.277 5516960.35 12.673000000000002 568373.37 5516960.013 12.681000000000012 568373.37 5516960.013 0.0 568371.277 5516960.35 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_605119_40a03dec-b5b8-4268-8d66-21a0a1285ea9">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a8f28d2c-140b-427a-bb20-f720054b4e93">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605119_40a03dec-b5b8-4268-8d66-21a0a1285ea9_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605119_40a03dec-b5b8-4268-8d66-21a0a1285ea9_poly_0_">
                      <gml:posList srsDimension="3">568365.047 5516960.36 0.0 568365.047 5516960.36 13.62700000000001 568371.116 5516959.383 13.65100000000001 568371.116 5516959.383 0.0 568365.047 5516960.36 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_605119_5de5a6a4-5585-4384-b2f9-27748719f1fd">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5e9004d9-4191-409b-b13c-adca43b66a97">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605119_5de5a6a4-5585-4384-b2f9-27748719f1fd_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605119_5de5a6a4-5585-4384-b2f9-27748719f1fd_poly_0_">
                      <gml:posList srsDimension="3">568412.015 5516949.841 0.0 568412.15 5516950.704 0.0 568412.5 5516952.951 0.0 568412.5 5516952.951 12.949000000000012 568412.15 5516950.704 15.27000000000001 568412.015 5516949.841 16.160000000000025 568412.015 5516949.841 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_605119_4a1765b4-8793-499e-af2b-6ddee10385ef">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_67fe5d4c-4274-44ba-be93-bf060475fbcc">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605119_4a1765b4-8793-499e-af2b-6ddee10385ef_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605119_4a1765b4-8793-499e-af2b-6ddee10385ef_poly_0_">
                      <gml:posList srsDimension="3">568410.08 5516940.412 15.27000000000001 568410.08 5516940.412 12.720000000000027 568409.831 5516938.791 12.720000000000027 568409.831 5516938.791 0.0 568410.08 5516940.412 0.0 568410.879 5516945.596 0.0 568411.543 5516949.912 0.0 568411.543 5516949.912 16.16300000000001 568410.879 5516945.596 20.620000000000005 568410.08 5516940.412 15.27000000000001</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_605119_5f8a682d-9b82-47b9-9287-74c099f54064">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3c918e34-fa54-4c36-9ff6-45f9d3ac0c82">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605119_5f8a682d-9b82-47b9-9287-74c099f54064_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605119_5f8a682d-9b82-47b9-9287-74c099f54064_poly_0_">
                      <gml:posList srsDimension="3">568363.023 5516947.795 13.54000000000002 568364.042 5516954.121 19.930000000000007 568365.047 5516960.36 13.62700000000001 568365.047 5516960.36 0.0 568364.042 5516954.121 0.0 568363.023 5516947.795 0.0 568363.023 5516947.795 13.54000000000002</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_605119_e41f8cad-f099-4656-a2d1-0ba97075374f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3a18167c-13a0-473d-b934-7b3ee6fe8cb1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605119_e41f8cad-f099-4656-a2d1-0ba97075374f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605119_e41f8cad-f099-4656-a2d1-0ba97075374f_poly_0_">
                      <gml:posList srsDimension="3">568412.15 5516950.704 0.0 568412.015 5516949.841 0.0 568411.543 5516949.912 0.0 568410.879 5516945.596 0.0 568410.08 5516940.412 0.0 568409.831 5516938.791 0.0 568372.338 5516944.67 0.0 568372.593 5516946.29 0.0 568370.429 5516946.633 0.0 568363.023 5516947.795 0.0 568364.042 5516954.121 0.0 568365.047 5516960.36 0.0 568371.116 5516959.383 0.0 568371.134 5516959.493 0.0 568371.277 5516960.35 0.0 568373.37 5516960.013 0.0 568373.239 5516959.162 0.0 568372.887 5516956.864 0.0 568374.189 5516956.66 0.0 568407.199 5516951.497 0.0 568407.55 5516953.722 0.0 568412.5 5516952.951 0.0 568412.15 5516950.704 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_605119_a206ef66-6eba-4969-86a6-1facc143297d">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f9163674-fb56-4f82-b445-94c627cd1fdb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605119_a206ef66-6eba-4969-86a6-1facc143297d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605119_a206ef66-6eba-4969-86a6-1facc143297d_poly_0_">
                      <gml:posList srsDimension="3">568372.338 5516944.67 0.0 568372.338 5516944.67 12.720000000000027 568372.593 5516946.29 12.720000000000027 568372.593 5516946.29 0.0 568372.338 5516944.67 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_605119_1f95f662-cd1e-4def-b631-ff3eafea20d3">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1e938c20-a55f-488d-9cb0-711be9cd8d35">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605119_1f95f662-cd1e-4def-b631-ff3eafea20d3_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605119_1f95f662-cd1e-4def-b631-ff3eafea20d3_poly_0_">
                      <gml:posList srsDimension="3">568371.116 5516959.383 13.65100000000001 568371.134 5516959.493 13.54000000000002 568371.277 5516960.35 12.673000000000002 568371.277 5516960.35 0.0 568371.134 5516959.493 0.0 568371.116 5516959.383 0.0 568371.116 5516959.383 13.65100000000001</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_605119_78aa72ae-5d6f-4772-9364-759e20cfe9f3">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4136d348-6399-4214-a673-7f9135a8ac98">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605119_78aa72ae-5d6f-4772-9364-759e20cfe9f3_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605119_78aa72ae-5d6f-4772-9364-759e20cfe9f3_poly_0_">
                      <gml:posList srsDimension="3">568410.08 5516940.412 15.27000000000001 568410.879 5516945.596 20.620000000000005 568373.389 5516951.477 20.620000000000005 568372.593 5516946.29 15.265000000000015 568410.08 5516940.412 15.27000000000001</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_605119_32b67561-7925-4a73-aa43-ee3bf351527d">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_be27f2b9-6c97-4dfb-aa8a-12c7d34c3a87">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605119_32b67561-7925-4a73-aa43-ee3bf351527d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605119_32b67561-7925-4a73-aa43-ee3bf351527d_poly_0_">
                      <gml:posList srsDimension="3">568370.429 5516946.633 0.0 568370.429 5516946.633 13.539000000000016 568363.023 5516947.795 13.54000000000002 568363.023 5516947.795 0.0 568370.429 5516946.633 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_605119_e1380efa-5ea7-4088-8de7-f1d22ad1e225">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2b72d74c-6e9b-4b50-bcbb-47550a7785cc">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605119_e1380efa-5ea7-4088-8de7-f1d22ad1e225_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605119_e1380efa-5ea7-4088-8de7-f1d22ad1e225_poly_0_">
                      <gml:posList srsDimension="3">568372.593 5516946.29 0.0 568372.593 5516946.29 12.720000000000027 568372.593 5516946.29 13.535000000000025 568370.429 5516946.633 13.539000000000016 568370.429 5516946.633 0.0 568372.593 5516946.29 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_605119_1e0d21a9-f979-4c76-9a34-e7b5ea732c69">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_68d3acfd-c270-4857-b392-0e3c9ffc2610">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605119_1e0d21a9-f979-4c76-9a34-e7b5ea732c69_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605119_1e0d21a9-f979-4c76-9a34-e7b5ea732c69_poly_0_">
                      <gml:posList srsDimension="3">568373.567 5516952.627 19.930000000000007 568374.189 5516956.66 15.859000000000009 568372.887 5516956.864 15.860000000000014 568373.239 5516959.162 13.54000000000002 568373.37 5516960.013 12.681000000000012 568371.277 5516960.35 12.673000000000002 568371.134 5516959.493 13.54000000000002 568371.116 5516959.383 13.65100000000001 568365.047 5516960.36 13.62700000000001 568364.042 5516954.121 19.930000000000007 568373.567 5516952.627 19.930000000000007</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_605119_de6b14f1-5101-465c-bb7d-67a123cacea0">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_56a4e716-fc53-4e04-ae0d-fa6ea8a02b34">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605119_de6b14f1-5101-465c-bb7d-67a123cacea0_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605119_de6b14f1-5101-465c-bb7d-67a123cacea0_poly_0_">
                      <gml:posList srsDimension="3">568407.55 5516953.722 0.0 568407.55 5516953.722 12.954000000000008 568412.5 5516952.951 12.949000000000012 568412.5 5516952.951 0.0 568407.55 5516953.722 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_605119_88dfde77-8153-4e8a-87f0-141f2c1dd44d">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9316dcc4-331e-4001-b83b-79d272d50b82">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605119_88dfde77-8153-4e8a-87f0-141f2c1dd44d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605119_88dfde77-8153-4e8a-87f0-141f2c1dd44d_poly_0_">
                      <gml:posList srsDimension="3">568372.593 5516946.29 13.535000000000025 568372.593 5516946.29 15.265000000000015 568373.389 5516951.477 20.620000000000005 568373.389 5516951.477 18.77000000000001 568372.593 5516946.29 13.535000000000025</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_605119_836d1f1a-51d2-4634-91e4-83f7151b9cdc">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1b6165f3-2de6-479d-87a7-46531822bd2c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605119_836d1f1a-51d2-4634-91e4-83f7151b9cdc_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605119_836d1f1a-51d2-4634-91e4-83f7151b9cdc_poly_0_">
                      <gml:posList srsDimension="3">568373.529 5516952.384 19.685000000000002 568373.567 5516952.627 19.434000000000026 568374.189 5516956.66 15.269000000000005 568374.189 5516956.66 15.859000000000009 568373.567 5516952.627 19.930000000000007 568373.529 5516952.384 19.685000000000002</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_605119_26a307a0-c1dc-4585-8eac-3ab2f1cfae5b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ba54a874-d50b-4f9f-a949-28d5d638d2e1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605119_26a307a0-c1dc-4585-8eac-3ab2f1cfae5b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605119_26a307a0-c1dc-4585-8eac-3ab2f1cfae5b_poly_0_">
                      <gml:posList srsDimension="3">568374.189 5516956.66 15.859000000000009 568374.189 5516956.66 15.269000000000005 568407.199 5516951.497 15.25200000000001 568407.199 5516951.497 0.0 568374.189 5516956.66 0.0 568372.887 5516956.864 0.0 568372.887 5516956.864 15.860000000000014 568374.189 5516956.66 15.859000000000009</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_605119_2fc3995d-77d6-4ee5-8676-086b20142fcb">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_743d6a2a-9f49-4a41-9a85-ca58ef4c6a60">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605119_2fc3995d-77d6-4ee5-8676-086b20142fcb_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605119_2fc3995d-77d6-4ee5-8676-086b20142fcb_poly_0_">
                      <gml:posList srsDimension="3">568410.08 5516940.412 12.720000000000027 568410.08 5516940.412 15.27000000000001 568372.593 5516946.29 15.265000000000015 568372.593 5516946.29 13.535000000000025 568372.593 5516946.29 12.720000000000027 568410.08 5516940.412 12.720000000000027</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_605119_b6f7917f-db42-45b1-85c8-5d7e5af99d00">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9d086a8e-a91c-4115-a0ac-20aed683c14a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605119_b6f7917f-db42-45b1-85c8-5d7e5af99d00_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605119_b6f7917f-db42-45b1-85c8-5d7e5af99d00_poly_0_">
                      <gml:posList srsDimension="3">568409.831 5516938.791 12.720000000000027 568410.08 5516940.412 12.720000000000027 568372.593 5516946.29 12.720000000000027 568372.338 5516944.67 12.720000000000027 568409.831 5516938.791 12.720000000000027</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_605119_3b250bc0-296b-4ab5-a39d-293394be2a70">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4030ef9a-1ab3-45dd-a90e-b82bee6300e8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605119_3b250bc0-296b-4ab5-a39d-293394be2a70_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605119_3b250bc0-296b-4ab5-a39d-293394be2a70_poly_0_">
                      <gml:posList srsDimension="3">568410.879 5516945.596 20.620000000000005 568411.543 5516949.912 16.16300000000001 568412.015 5516949.841 16.160000000000025 568412.15 5516950.704 15.27000000000001 568412.5 5516952.951 12.949000000000012 568407.55 5516953.722 12.954000000000008 568407.199 5516951.497 15.25200000000001 568374.189 5516956.66 15.269000000000005 568373.567 5516952.627 19.434000000000026 568373.529 5516952.384 19.685000000000002 568373.389 5516951.477 20.620000000000005 568410.879 5516945.596 20.620000000000005</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_605119_3c412dfc-ccad-4eb0-87da-100f415cbafa">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b87c6fd1-6d77-4ee0-bcc7-2efd35813fa4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605119_3c412dfc-ccad-4eb0-87da-100f415cbafa_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605119_3c412dfc-ccad-4eb0-87da-100f415cbafa_poly_0_">
                      <gml:posList srsDimension="3">568372.887 5516956.864 0.0 568373.239 5516959.162 0.0 568373.37 5516960.013 0.0 568373.37 5516960.013 12.681000000000012 568373.239 5516959.162 13.54000000000002 568372.887 5516956.864 15.860000000000014 568372.887 5516956.864 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_605119_820a5aad-91a8-469d-89cf-ced75522dfa5">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9d048068-f5b3-4428-8103-b8828edb6d26">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605119_820a5aad-91a8-469d-89cf-ced75522dfa5_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605119_820a5aad-91a8-469d-89cf-ced75522dfa5_poly_0_">
                      <gml:posList srsDimension="3">568370.429 5516946.633 13.539000000000016 568372.593 5516946.29 13.535000000000025 568373.389 5516951.477 18.77000000000001 568373.529 5516952.384 19.685000000000002 568373.567 5516952.627 19.930000000000007 568364.042 5516954.121 19.930000000000007 568363.023 5516947.795 13.54000000000002 568370.429 5516946.633 13.539000000000016</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_605119_09da283d-38a8-43e1-be00-8fb5de43fc6c">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4034fe37-3d97-41a9-bd80-e93cdaa56268">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605119_09da283d-38a8-43e1-be00-8fb5de43fc6c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605119_09da283d-38a8-43e1-be00-8fb5de43fc6c_poly_0_">
                      <gml:posList srsDimension="3">568407.199 5516951.497 0.0 568407.199 5516951.497 15.25200000000001 568407.55 5516953.722 12.954000000000008 568407.55 5516953.722 0.0 568407.199 5516951.497 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_605835">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9pI8n</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.93</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_d3ac57be-4bf6-47d8-a6b1-04112e4bfe0f">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_9eeaaeee-798c-4765-8982-f658dedd5a26">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605835_64b305db-67d7-4691-8490-2896c37eee75_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605835_420c8fa9-31dc-4aaf-963b-834c52290d5b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605835_15a9700f-690c-4c34-ac4b-8a2732a5ad49_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605835_db1258b7-eee5-4db8-9fc0-79e384344704_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605835_3af9d872-0de6-4c12-a020-a95fb2ddb7e6_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605835_66d626da-9ee9-4405-9054-a9af316289fe_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605835_15a9700f-690c-4c34-ac4b-8a2732a5ad49">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c369e5dc-cfbc-4558-a0c4-2327ad8d705b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605835_15a9700f-690c-4c34-ac4b-8a2732a5ad49_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605835_15a9700f-690c-4c34-ac4b-8a2732a5ad49_poly_0_">
                      <gml:posList srsDimension="3">568207.045 5516999.046 2.930000000000007 568207.335 5517005.039 2.930000000000007 568201.342 5517005.32 2.930000000000007 568201.061 5516999.338 2.930000000000007 568207.045 5516999.046 2.930000000000007</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_605835_db1258b7-eee5-4db8-9fc0-79e384344704">
For faster browsing, not all history is shown. View entire blame