Grombuehl_LoD2_mini.gml 1.28 MB
Newer Older
Ehlers's avatar
Ehlers committed
15001
15002
15003
15004
15005
15006
15007
15008
15009
15010
15011
15012
15013
15014
15015
15016
15017
15018
15019
15020
15021
15022
15023
15024
15025
15026
15027
15028
15029
15030
15031
15032
15033
15034
15035
15036
15037
15038
15039
15040
15041
15042
15043
15044
15045
15046
15047
15048
15049
15050
15051
15052
15053
15054
15055
15056
15057
15058
15059
15060
15061
15062
15063
15064
15065
15066
15067
15068
15069
15070
15071
15072
15073
15074
15075
15076
15077
15078
15079
15080
15081
15082
15083
15084
15085
15086
15087
15088
15089
15090
15091
15092
15093
15094
15095
15096
15097
15098
15099
15100
15101
15102
15103
15104
15105
15106
15107
15108
15109
15110
15111
15112
15113
15114
15115
15116
15117
15118
15119
15120
15121
15122
15123
15124
15125
15126
15127
15128
15129
15130
15131
15132
15133
15134
15135
15136
15137
15138
15139
15140
15141
15142
15143
15144
15145
15146
15147
15148
15149
15150
15151
15152
15153
15154
15155
15156
15157
15158
15159
15160
15161
15162
15163
15164
15165
15166
15167
15168
15169
15170
15171
15172
15173
15174
15175
15176
15177
15178
15179
15180
15181
15182
15183
15184
15185
15186
15187
15188
15189
15190
15191
15192
15193
15194
15195
15196
15197
15198
15199
15200
15201
15202
15203
15204
15205
15206
15207
15208
15209
15210
15211
15212
15213
15214
15215
15216
15217
15218
15219
15220
15221
15222
15223
15224
15225
15226
15227
15228
15229
15230
15231
15232
15233
15234
15235
15236
15237
15238
15239
15240
15241
15242
15243
15244
15245
15246
15247
15248
15249
15250
15251
15252
15253
15254
15255
15256
15257
15258
15259
15260
15261
15262
15263
15264
15265
15266
15267
15268
15269
15270
15271
15272
15273
15274
15275
15276
15277
15278
15279
15280
15281
15282
15283
15284
15285
15286
15287
15288
15289
15290
15291
15292
15293
15294
15295
15296
15297
15298
15299
15300
15301
15302
15303
15304
15305
15306
15307
15308
15309
15310
15311
15312
15313
15314
15315
15316
15317
15318
15319
15320
15321
15322
15323
15324
15325
15326
15327
15328
15329
15330
15331
15332
15333
15334
15335
15336
15337
15338
15339
15340
15341
15342
15343
15344
15345
15346
15347
15348
15349
15350
15351
15352
15353
15354
15355
15356
15357
15358
15359
15360
15361
15362
15363
15364
15365
15366
15367
15368
15369
15370
15371
15372
15373
15374
15375
15376
15377
15378
15379
15380
15381
15382
15383
15384
15385
15386
15387
15388
15389
15390
15391
15392
15393
15394
15395
15396
15397
15398
15399
15400
15401
15402
15403
15404
15405
15406
15407
15408
15409
15410
15411
15412
15413
15414
15415
15416
15417
15418
15419
15420
15421
15422
15423
15424
15425
15426
15427
15428
15429
15430
15431
15432
15433
15434
15435
15436
15437
15438
15439
15440
15441
15442
15443
15444
15445
15446
15447
15448
15449
15450
15451
15452
15453
15454
15455
15456
15457
15458
15459
15460
15461
15462
15463
15464
15465
15466
15467
15468
15469
15470
15471
15472
15473
15474
15475
15476
15477
15478
15479
15480
15481
15482
15483
15484
15485
15486
15487
15488
15489
15490
15491
15492
15493
15494
15495
15496
15497
15498
15499
15500
15501
15502
15503
15504
15505
15506
15507
15508
15509
15510
15511
15512
15513
15514
15515
15516
15517
15518
15519
15520
15521
15522
15523
15524
15525
15526
15527
15528
15529
15530
15531
15532
15533
15534
15535
15536
15537
15538
15539
15540
15541
15542
15543
15544
15545
15546
15547
15548
15549
15550
15551
15552
15553
15554
15555
15556
15557
15558
15559
15560
15561
15562
15563
15564
15565
15566
15567
15568
15569
15570
15571
15572
15573
15574
15575
15576
15577
15578
15579
15580
15581
15582
15583
15584
15585
15586
15587
15588
15589
15590
15591
15592
15593
15594
15595
15596
15597
15598
15599
15600
15601
15602
15603
15604
15605
15606
15607
15608
15609
15610
15611
15612
15613
15614
15615
15616
15617
15618
15619
15620
15621
15622
15623
15624
15625
15626
15627
15628
15629
15630
15631
15632
15633
15634
15635
15636
15637
15638
15639
15640
15641
15642
15643
15644
15645
15646
15647
15648
15649
15650
15651
15652
15653
15654
15655
15656
15657
15658
15659
15660
15661
15662
15663
15664
15665
15666
15667
15668
15669
15670
15671
15672
15673
15674
15675
15676
15677
15678
15679
15680
15681
15682
15683
15684
15685
15686
15687
15688
15689
15690
15691
15692
15693
15694
15695
15696
15697
15698
15699
15700
15701
15702
15703
15704
15705
15706
15707
15708
15709
15710
15711
15712
15713
15714
15715
15716
15717
15718
15719
15720
15721
15722
15723
15724
15725
15726
15727
15728
15729
15730
15731
15732
15733
15734
15735
15736
15737
15738
15739
15740
15741
15742
15743
15744
15745
15746
15747
15748
15749
15750
15751
15752
15753
15754
15755
15756
15757
15758
15759
15760
15761
15762
15763
15764
15765
15766
15767
15768
15769
15770
15771
15772
15773
15774
15775
15776
15777
15778
15779
15780
15781
15782
15783
15784
15785
15786
15787
15788
15789
15790
15791
15792
15793
15794
15795
15796
15797
15798
15799
15800
15801
15802
15803
15804
15805
15806
15807
15808
15809
15810
15811
15812
15813
15814
15815
15816
15817
15818
15819
15820
15821
15822
15823
15824
15825
15826
15827
15828
15829
15830
15831
15832
15833
15834
15835
15836
15837
15838
15839
15840
15841
15842
15843
15844
15845
15846
15847
15848
15849
15850
15851
15852
15853
15854
15855
15856
15857
15858
15859
15860
15861
15862
15863
15864
15865
15866
15867
15868
15869
15870
15871
15872
15873
15874
15875
15876
15877
15878
15879
15880
15881
15882
15883
15884
15885
15886
15887
15888
15889
15890
15891
15892
15893
15894
15895
15896
15897
15898
15899
15900
15901
15902
15903
15904
15905
15906
15907
15908
15909
15910
15911
15912
15913
15914
15915
15916
15917
15918
15919
15920
15921
15922
15923
15924
15925
15926
15927
15928
15929
15930
15931
15932
15933
15934
15935
15936
15937
15938
15939
15940
15941
15942
15943
15944
15945
15946
15947
15948
15949
15950
15951
15952
15953
15954
15955
15956
15957
15958
15959
15960
15961
15962
15963
15964
15965
15966
15967
15968
15969
15970
15971
15972
15973
15974
15975
15976
15977
15978
15979
15980
15981
15982
15983
15984
15985
15986
15987
15988
15989
15990
15991
15992
15993
15994
15995
15996
15997
15998
15999
16000
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_604961_33beb9d8-7823-45c8-bb28-c9eb0e4a368b">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1574d225-f0dc-4c9a-989d-52b6ef7215c2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604961_33beb9d8-7823-45c8-bb28-c9eb0e4a368b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604961_33beb9d8-7823-45c8-bb28-c9eb0e4a368b_poly_0_">
                      <gml:posList srsDimension="3">568353.993 5517158.382 210.001 568360.455 5517156.296 210.001 568361.439 5517159.552 207.007 568358.532 5517160.454 207.038 568358.543 5517160.488 207.007 568354.968 5517161.642 207.007 568350.543 5517163.072 207.007 568350.503 5517162.939 207.129 568349.569 5517159.813 210.001 568353.993 5517158.382 210.001</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_604961_78bc3ab0-054c-488c-a399-36e3072d684a">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d56c5f2e-11d6-43ff-8cd3-4c1be60b183e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604961_78bc3ab0-054c-488c-a399-36e3072d684a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604961_78bc3ab0-054c-488c-a399-36e3072d684a_poly_0_">
                      <gml:posList srsDimension="3">568354.968 5517161.642 203.300 568355.591 5517163.727 203.300 568355.571 5517163.733 203.300 568355.598 5517163.804 203.300 568351.200 5517165.266 203.300 568350.543 5517163.072 203.300 568354.968 5517161.642 203.300</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_604961_76262675-23d5-4503-a63b-571045de1607">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2923be4c-e8cb-4c99-8537-b4caab4fbcce">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604961_76262675-23d5-4503-a63b-571045de1607_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604961_76262675-23d5-4503-a63b-571045de1607_poly_0_">
                      <gml:posList srsDimension="3">568349.963 5517156.121 201.200 568349.963 5517156.121 207.016 568348.596 5517156.556 207.010 568348.596 5517156.556 201.200 568349.963 5517156.121 201.200</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_604961_2222fd6b-63bd-4fcb-8837-c0f9e51afd18">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_42af686d-eb21-4e42-8d34-f5cc40eb4577">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604961_2222fd6b-63bd-4fcb-8837-c0f9e51afd18_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604961_2222fd6b-63bd-4fcb-8837-c0f9e51afd18_poly_0_">
                      <gml:posList srsDimension="3">568348.596 5517156.556 207.010 568349.569 5517159.813 210.001 568350.503 5517162.939 207.129 568350.503 5517162.939 201.200 568349.569 5517159.813 201.200 568348.596 5517156.556 201.200 568348.596 5517156.556 207.010</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_604961_544bc495-04b7-489e-b3ed-9fdab8d99f00">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3e359a8c-11df-4b24-bc62-215584dda044">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604961_544bc495-04b7-489e-b3ed-9fdab8d99f00_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604961_544bc495-04b7-489e-b3ed-9fdab8d99f00_poly_0_">
                      <gml:posList srsDimension="3">568358.543 5517160.488 204.206 568359.188 5517162.570 204.206 568355.591 5517163.727 204.206 568354.968 5517161.642 204.206 568358.543 5517160.488 204.206</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_604961_3175138b-8e93-4673-b3d5-5f60a73bd1b0">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8c56d2c9-d993-4d26-ac5f-8bc3121fb74a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604961_3175138b-8e93-4673-b3d5-5f60a73bd1b0_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604961_3175138b-8e93-4673-b3d5-5f60a73bd1b0_poly_0_">
                      <gml:posList srsDimension="3">568354.968 5517161.642 203.300 568354.968 5517161.642 204.206 568355.591 5517163.727 204.206 568355.591 5517163.727 203.300 568354.968 5517161.642 203.300</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_604961_1c08f457-d904-4d4d-b93f-c00c4034de4d">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_afd57fae-12d8-4d92-afc0-b49978e6ea4a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604961_1c08f457-d904-4d4d-b93f-c00c4034de4d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604961_1c08f457-d904-4d4d-b93f-c00c4034de4d_poly_0_">
                      <gml:posList srsDimension="3">568349.963 5517156.121 207.016 568353.028 5517155.155 207.036 568359.493 5517153.116 207.078 568360.455 5517156.296 210.001 568353.993 5517158.382 210.001 568349.569 5517159.813 210.001 568348.596 5517156.556 207.010 568349.963 5517156.121 207.016</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_604961_44f0657a-3162-4714-bc55-5b1837d62381">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9ad9f3c5-4b0f-446b-854d-f42e07bd58a5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604961_44f0657a-3162-4714-bc55-5b1837d62381_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604961_44f0657a-3162-4714-bc55-5b1837d62381_poly_0_">
                      <gml:posList srsDimension="3">568358.532 5517160.454 201.200 568358.532 5517160.454 207.038 568361.439 5517159.552 207.007 568361.439 5517159.552 201.200 568358.532 5517160.454 201.200</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_604961_1b48f518-4114-4148-ad0c-904ae2c3a748">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ac90b1dd-816c-41c9-b4ad-467884c65cfe">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604961_1b48f518-4114-4148-ad0c-904ae2c3a748_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604961_1b48f518-4114-4148-ad0c-904ae2c3a748_poly_0_">
                      <gml:posList srsDimension="3">568359.188 5517162.570 204.206 568359.188 5517162.570 201.200 568355.591 5517163.727 201.200 568355.571 5517163.733 201.200 568355.571 5517163.733 203.300 568355.591 5517163.727 203.300 568355.591 5517163.727 204.206 568359.188 5517162.570 204.206</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1897</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember><core:cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_604964">
      <gen:stringAttribute name="comment">
        <gen:value>Random year of construction, with probability from CGSC PPT Page 15.</gen:value>
      </gen:stringAttribute>
      <gml:name>DEBY_LOD2_604964</gml:name>
      <core:creationDate>2013-06-25</core:creationDate>
      <core:externalReference>
        <core:informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</core:informationSystem>
        <core:externalObject>
          <core:name>DEBYvAAAAAA9odqT</core:name>
        </core:externalObject>
      </core:externalReference>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_1000</bldg:function>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">10.084</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_03d6e253-2717-4513-9e13-af095d0b5660">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_132d0e17-d9ca-4392-a7ba-5c332b944c68">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604964_f50c8cb7-9482-4758-985a-aee8c97bd41e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604964_df809e7c-d435-4a00-9ad8-b71f193549bf_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604964_dcea4a36-ed16-4826-9bba-4173a1d7ae8e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604964_d7fcb6c1-6f2b-40b7-80df-4dd24bd8ad49_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604964_d4c15812-b0eb-4c26-902f-72b9881929b5_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604964_d17c24d8-f351-445a-8f01-26419f585caf_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604964_cef76fe6-2205-43f1-a9b6-9d3c176fc428_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604964_b9ae8073-aa0b-4fa6-8ef2-03f6dd9b6cf6_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604964_93d1bb3f-fd0f-4f6e-aef1-cbd68473a093_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604964_8d041d3b-ce12-4986-bbe9-0fd68b464e12_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604964_6db8783a-db98-4b8a-97e7-43ae8b9bdc1c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604964_6c240ef9-213c-46f5-b3d3-15c7782e6aea_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604964_673845ae-a75c-49c7-9b57-7203058aa911_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604964_5227e2bf-286e-4a0b-8474-cff82a955b7a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604964_1fb3f684-e0f9-45e2-ae9d-b566009c9893_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_604964_6db8783a-db98-4b8a-97e7-43ae8b9bdc1c">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_61088a8e-d548-477e-b9d4-ffd3c1de28e7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604964_6db8783a-db98-4b8a-97e7-43ae8b9bdc1c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604964_6db8783a-db98-4b8a-97e7-43ae8b9bdc1c_poly_0_">
                      <gml:posList srsDimension="3">568358.845 5517178.027 202.690 568358.845 5517178.027 210.944 568354.626 5517178.727 210.968 568354.626 5517178.727 202.690 568358.845 5517178.027 202.690</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_604964_1fb3f684-e0f9-45e2-ae9d-b566009c9893">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b26db447-5f4b-4ba1-8d36-3bc089affda1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604964_1fb3f684-e0f9-45e2-ae9d-b566009c9893_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604964_1fb3f684-e0f9-45e2-ae9d-b566009c9893_poly_0_">
                      <gml:posList srsDimension="3">568365.718 5517176.974 202.690 568365.718 5517176.974 210.948 568365.106 5517173.259 209.037 568365.106 5517173.259 202.690 568365.718 5517176.974 202.690</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_604964_dcea4a36-ed16-4826-9bba-4173a1d7ae8e">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_053b6e7e-7e4b-48ea-9028-53475a0f885b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604964_dcea4a36-ed16-4826-9bba-4173a1d7ae8e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604964_dcea4a36-ed16-4826-9bba-4173a1d7ae8e_poly_0_">
                      <gml:posList srsDimension="3">568358.845 5517178.027 210.944 568358.232 5517174.312 209.033 568365.106 5517173.259 209.037 568365.718 5517176.974 210.948 568369.927 5517176.274 210.922 568370.502 5517179.859 212.765 568355.198 5517182.239 212.774 568354.626 5517178.727 210.968 568358.845 5517178.027 210.944</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_604964_cef76fe6-2205-43f1-a9b6-9d3c176fc428">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ff684580-366b-4e3c-b92e-476ea4449d57">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604964_cef76fe6-2205-43f1-a9b6-9d3c176fc428_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604964_cef76fe6-2205-43f1-a9b6-9d3c176fc428_poly_0_">
                      <gml:posList srsDimension="3">568369.927 5517176.274 202.690 568369.927 5517176.274 210.922 568365.718 5517176.974 210.948 568365.718 5517176.974 202.690 568369.927 5517176.274 202.690</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_604964_6c240ef9-213c-46f5-b3d3-15c7782e6aea">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_18071122-a6ca-4705-bf10-20a348216fe3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604964_6c240ef9-213c-46f5-b3d3-15c7782e6aea_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604964_6c240ef9-213c-46f5-b3d3-15c7782e6aea_poly_0_">
                      <gml:posList srsDimension="3">568356.489 5517185.474 202.690 568356.489 5517185.474 211.050 568357.133 5517189.400 209.031 568357.133 5517189.400 202.690 568356.489 5517185.474 202.690</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_604964_5227e2bf-286e-4a0b-8474-cff82a955b7a">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2809bfeb-8ae0-4b44-9d74-0b436fc8c49d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604964_5227e2bf-286e-4a0b-8474-cff82a955b7a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604964_5227e2bf-286e-4a0b-8474-cff82a955b7a_poly_0_">
                      <gml:posList srsDimension="3">568358.232 5517174.312 202.690 568358.232 5517174.312 209.033 568358.845 5517178.027 210.944 568358.845 5517178.027 202.690 568358.232 5517174.312 202.690</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_604964_b9ae8073-aa0b-4fa6-8ef2-03f6dd9b6cf6">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a70337b6-69e7-4e60-b306-aa66d20df7f5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604964_b9ae8073-aa0b-4fa6-8ef2-03f6dd9b6cf6_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604964_b9ae8073-aa0b-4fa6-8ef2-03f6dd9b6cf6_poly_0_">
                      <gml:posList srsDimension="3">568365.106 5517173.259 202.690 568365.106 5517173.259 209.037 568358.232 5517174.312 209.033 568358.232 5517174.312 202.690 568365.106 5517173.259 202.690</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_604964_8d041d3b-ce12-4986-bbe9-0fd68b464e12">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b4a80464-44b9-49be-8763-59f63a91e1e2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604964_8d041d3b-ce12-4986-bbe9-0fd68b464e12_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604964_8d041d3b-ce12-4986-bbe9-0fd68b464e12_poly_0_">
                      <gml:posList srsDimension="3">568370.961 5517187.218 202.690 568370.961 5517187.218 209.039 568370.287 5517183.300 211.056 568370.287 5517183.300 202.690 568370.961 5517187.218 202.690</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_604964_f50c8cb7-9482-4758-985a-aee8c97bd41e">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_454ebca8-b728-4c23-8619-07f70cf99cc3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604964_f50c8cb7-9482-4758-985a-aee8c97bd41e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604964_f50c8cb7-9482-4758-985a-aee8c97bd41e_poly_0_">
                      <gml:posList srsDimension="3">568370.287 5517183.300 202.690 568371.033 5517183.170 202.690 568370.502 5517179.859 202.690 568369.927 5517176.274 202.690 568365.718 5517176.974 202.690 568365.106 5517173.259 202.690 568358.232 5517174.312 202.690 568358.845 5517178.027 202.690 568354.626 5517178.727 202.690 568355.198 5517182.239 202.690 568355.744 5517185.594 202.690 568356.489 5517185.474 202.690 568357.133 5517189.400 202.690 568370.961 5517187.218 202.690 568370.287 5517183.300 202.690</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_604964_d4c15812-b0eb-4c26-902f-72b9881929b5">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ccb85ef8-3b61-47c9-80c1-6e7fca3bdda6">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604964_d4c15812-b0eb-4c26-902f-72b9881929b5_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604964_d4c15812-b0eb-4c26-902f-72b9881929b5_poly_0_">
                      <gml:posList srsDimension="3">568355.744 5517185.594 202.690 568355.744 5517185.594 211.049 568356.489 5517185.474 211.050 568356.489 5517185.474 202.690 568355.744 5517185.594 202.690</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_604964_93d1bb3f-fd0f-4f6e-aef1-cbd68473a093">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8a79350d-2ceb-45f2-972d-148efe25d236">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604964_93d1bb3f-fd0f-4f6e-aef1-cbd68473a093_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604964_93d1bb3f-fd0f-4f6e-aef1-cbd68473a093_poly_0_">
                      <gml:posList srsDimension="3">568357.133 5517189.400 202.690 568357.133 5517189.400 209.031 568370.961 5517187.218 209.039 568370.961 5517187.218 202.690 568357.133 5517189.400 202.690</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_604964_d17c24d8-f351-445a-8f01-26419f585caf">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2a0c55d2-b0f7-4744-a903-606118bc63e5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604964_d17c24d8-f351-445a-8f01-26419f585caf_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604964_d17c24d8-f351-445a-8f01-26419f585caf_poly_0_">
                      <gml:posList srsDimension="3">568369.927 5517176.274 210.922 568369.927 5517176.274 202.690 568370.502 5517179.859 202.690 568371.033 5517183.170 202.690 568371.033 5517183.170 211.063 568370.502 5517179.859 212.765 568369.927 5517176.274 210.922</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_604964_df809e7c-d435-4a00-9ad8-b71f193549bf">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_0be09bbc-9992-4eb4-953e-e07d87027db4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604964_df809e7c-d435-4a00-9ad8-b71f193549bf_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604964_df809e7c-d435-4a00-9ad8-b71f193549bf_poly_0_">
                      <gml:posList srsDimension="3">568370.502 5517179.859 212.765 568371.033 5517183.170 211.063 568370.287 5517183.300 211.056 568370.961 5517187.218 209.039 568357.133 5517189.400 209.031 568356.489 5517185.474 211.050 568355.744 5517185.594 211.049 568355.198 5517182.239 212.774 568370.502 5517179.859 212.765</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_604964_673845ae-a75c-49c7-9b57-7203058aa911">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_66941ecd-d4f4-450e-83b6-142fad51584f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604964_673845ae-a75c-49c7-9b57-7203058aa911_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604964_673845ae-a75c-49c7-9b57-7203058aa911_poly_0_">
                      <gml:posList srsDimension="3">568370.287 5517183.300 202.690 568370.287 5517183.300 211.056 568371.033 5517183.170 211.063 568371.033 5517183.170 202.690 568370.287 5517183.300 202.690</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_604964_d7fcb6c1-6f2b-40b7-80df-4dd24bd8ad49">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_581cda28-84a7-423a-a2e1-b07b09101d2c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604964_d7fcb6c1-6f2b-40b7-80df-4dd24bd8ad49_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604964_d7fcb6c1-6f2b-40b7-80df-4dd24bd8ad49_poly_0_">
                      <gml:posList srsDimension="3">568354.626 5517178.727 210.968 568355.198 5517182.239 212.774 568355.744 5517185.594 211.049 568355.744 5517185.594 202.690 568355.198 5517182.239 202.690 568354.626 5517178.727 202.690 568354.626 5517178.727 210.968</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1973</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember><core:cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_605149">
      <gen:stringAttribute name="comment">
        <gen:value>Random year of construction, with probability from CGSC PPT Page 15.</gen:value>
      </gen:stringAttribute>
      <gml:name>DEBY_LOD2_605149</gml:name>
      <core:creationDate>2013-06-25</core:creationDate>
      <core:externalReference>
        <core:informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</core:informationSystem>
        <core:externalObject>
          <core:name>DEBYvAAAAAA9pJdJ</core:name>
        </core:externalObject>
      </core:externalReference>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_1000</bldg:function>
      <bldg:roofType>3200</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">17.080</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_fd217ff5-cef1-45b0-b3d7-3decc3cd11b0">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_7e09fb0f-2792-4bb8-a673-fcd63d3de76c">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605149_ed33878e-2887-478c-93fc-9de27a4d68b3_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605149_e92e6db1-0bbb-4e85-8b9f-104e16df3b4b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605149_d3961fec-0532-44ac-a8f6-ad472a30ecfb_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605149_c2c3a6ca-d9bb-4272-8f80-dd227dd65120_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605149_c049b65c-12a9-4857-aedf-8f723edf0a44_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605149_bcad126b-5b80-45e6-93d1-b8c6fbeb5093_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605149_b02ab36b-199e-43dd-a821-4621a0640e02_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605149_8dd4aa5f-b077-4ef4-85e6-bdb208f9f5a0_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605149_77182171-c474-4d9c-80fd-0a30e46df57f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605149_75400716-a04e-4cdd-9c04-463ef022f36f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605149_4cfedbfc-5980-4a87-b1d7-6807adc8e642_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605149_2800ba44-fe51-4e83-866a-5005b7ef8fcd_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605149_213a4be8-e691-476a-b3bb-9fd69d367fc2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605149_0f5c5f89-cd00-40ec-a74f-07e55c5f523e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605149_05c33b71-cc8e-4a02-9fe7-6fc332d8553f_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605149_bcad126b-5b80-45e6-93d1-b8c6fbeb5093">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5177bfb1-d5ce-4263-a283-295a88d2cd2b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605149_bcad126b-5b80-45e6-93d1-b8c6fbeb5093_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605149_bcad126b-5b80-45e6-93d1-b8c6fbeb5093_poly_0_">
                      <gml:posList srsDimension="3">568252.995 5517126.113 195.430 568252.995 5517126.113 205.958 568252.808 5517117.031 205.924 568252.808 5517117.031 195.430 568252.995 5517126.113 195.430</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_605149_c2c3a6ca-d9bb-4272-8f80-dd227dd65120">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6b6f40be-1d07-4446-8d80-f5a07dd41431">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605149_c2c3a6ca-d9bb-4272-8f80-dd227dd65120_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605149_c2c3a6ca-d9bb-4272-8f80-dd227dd65120_poly_0_">
                      <gml:posList srsDimension="3">568247.052 5517122.203 212.510 568247.195 5517128.220 212.510 568241.467 5517133.428 205.956 568241.081 5517117.174 205.956 568247.052 5517122.203 212.510</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_605149_ed33878e-2887-478c-93fc-9de27a4d68b3">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4a9741e9-6121-40b1-95dc-b137fbf5fb2e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605149_ed33878e-2887-478c-93fc-9de27a4d68b3_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605149_ed33878e-2887-478c-93fc-9de27a4d68b3_poly_0_">
                      <gml:posList srsDimension="3">568253.047 5517126.111 205.900 568257.512 5517125.973 205.842 568257.512 5517126.027 205.900 568257.570 5517129.605 209.760 568253.133 5517129.686 209.760 568249.704 5517129.748 209.760 568253.047 5517126.111 205.900</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_605149_213a4be8-e691-476a-b3bb-9fd69d367fc2">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e9e2df20-47fe-4267-94f4-02e178a0fe01">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605149_213a4be8-e691-476a-b3bb-9fd69d367fc2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605149_213a4be8-e691-476a-b3bb-9fd69d367fc2_poly_0_">
                      <gml:posList srsDimension="3">568241.081 5517117.174 195.430 568241.081 5517117.174 205.956 568241.467 5517133.428 205.956 568241.467 5517133.428 195.430 568241.081 5517117.174 195.430</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_605149_77182171-c474-4d9c-80fd-0a30e46df57f">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5a5b7223-cba7-4575-959f-bdcab34509ef">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605149_77182171-c474-4d9c-80fd-0a30e46df57f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605149_77182171-c474-4d9c-80fd-0a30e46df57f_poly_0_">
                      <gml:posList srsDimension="3">568253.160 5517133.214 205.964 568253.217 5517133.212 205.954 568257.626 5517133.132 205.954 568257.626 5517133.132 195.430 568253.217 5517133.212 195.430 568253.160 5517133.214 195.430 568241.467 5517133.428 195.430 568241.467 5517133.428 205.956 568253.160 5517133.214 205.964</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_605149_8dd4aa5f-b077-4ef4-85e6-bdb208f9f5a0">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b944c6b2-3e10-42b6-9168-6bdb453bc53a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605149_8dd4aa5f-b077-4ef4-85e6-bdb208f9f5a0_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605149_8dd4aa5f-b077-4ef4-85e6-bdb208f9f5a0_poly_0_">
                      <gml:posList srsDimension="3">568252.772 5517117.032 195.430 568252.808 5517117.031 195.430 568252.808 5517117.031 205.924 568252.772 5517117.032 205.964 568241.081 5517117.174 205.956 568241.081 5517117.174 195.430 568252.772 5517117.032 195.430</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_605149_0f5c5f89-cd00-40ec-a74f-07e55c5f523e">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5129084d-59fc-41ac-80e2-4506ee86a9da">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605149_0f5c5f89-cd00-40ec-a74f-07e55c5f523e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605149_0f5c5f89-cd00-40ec-a74f-07e55c5f523e_poly_0_">
                      <gml:posList srsDimension="3">568253.133 5517129.686 209.760 568257.570 5517129.605 209.760 568257.626 5517133.132 205.954 568253.217 5517133.212 205.954 568253.160 5517133.214 205.964 568251.949 5517131.999 207.288 568249.704 5517129.748 209.760 568253.133 5517129.686 209.760</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_605149_e92e6db1-0bbb-4e85-8b9f-104e16df3b4b">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1a1f0ba6-68be-474c-8d7f-e551737f5131">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605149_e92e6db1-0bbb-4e85-8b9f-104e16df3b4b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605149_e92e6db1-0bbb-4e85-8b9f-104e16df3b4b_poly_0_">
                      <gml:posList srsDimension="3">568257.512 5517126.027 205.900 568257.512 5517125.973 205.842 568257.512 5517125.973 195.430 568257.512 5517126.027 195.430 568257.570 5517129.605 195.430 568257.626 5517133.132 195.430 568257.626 5517133.132 205.954 568257.570 5517129.605 209.760 568257.512 5517126.027 205.900</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_605149_d3961fec-0532-44ac-a8f6-ad472a30ecfb">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a587a782-7bef-479b-8234-881e10201342">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605149_d3961fec-0532-44ac-a8f6-ad472a30ecfb_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605149_d3961fec-0532-44ac-a8f6-ad472a30ecfb_poly_0_">
                      <gml:posList srsDimension="3">568247.195 5517128.220 212.510 568253.160 5517133.214 205.964 568241.467 5517133.428 205.956 568247.195 5517128.220 212.510</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_605149_b02ab36b-199e-43dd-a821-4621a0640e02">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9299fa9d-9fb6-4d01-b49d-37737345e198">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605149_b02ab36b-199e-43dd-a821-4621a0640e02_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605149_b02ab36b-199e-43dd-a821-4621a0640e02_poly_0_">
                      <gml:posList srsDimension="3">568253.047 5517126.111 205.900 568249.704 5517129.748 209.760 568249.704 5517129.748 209.741 568253.047 5517126.111 205.900</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_605149_2800ba44-fe51-4e83-866a-5005b7ef8fcd">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_76439058-0e11-44fe-9f1b-f18be6d3f8de">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605149_2800ba44-fe51-4e83-866a-5005b7ef8fcd_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605149_2800ba44-fe51-4e83-866a-5005b7ef8fcd_poly_0_">
                      <gml:posList srsDimension="3">568257.570 5517129.605 195.430 568257.512 5517126.027 195.430 568257.512 5517125.973 195.430 568253.047 5517126.111 195.430 568252.995 5517126.113 195.430 568252.808 5517117.031 195.430 568252.772 5517117.032 195.430 568241.081 5517117.174 195.430 568241.467 5517133.428 195.430 568253.160 5517133.214 195.430 568253.217 5517133.212 195.430 568257.626 5517133.132 195.430 568257.570 5517129.605 195.430</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605149_05c33b71-cc8e-4a02-9fe7-6fc332d8553f">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b278ebbc-3dab-4b02-b3db-1879c793da9d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605149_05c33b71-cc8e-4a02-9fe7-6fc332d8553f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605149_05c33b71-cc8e-4a02-9fe7-6fc332d8553f_poly_0_">
                      <gml:posList srsDimension="3">568252.772 5517117.032 205.964 568247.052 5517122.203 212.510 568241.081 5517117.174 205.956 568252.772 5517117.032 205.964</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_605149_75400716-a04e-4cdd-9c04-463ef022f36f">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_44eb2bc7-0893-4415-af2e-0203da2676d3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605149_75400716-a04e-4cdd-9c04-463ef022f36f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605149_75400716-a04e-4cdd-9c04-463ef022f36f_poly_0_">
                      <gml:posList srsDimension="3">568253.047 5517126.111 195.430 568257.512 5517125.973 195.430 568257.512 5517125.973 205.842 568253.047 5517126.111 205.900 568252.995 5517126.113 205.958 568252.995 5517126.113 195.430 568253.047 5517126.111 195.430</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_605149_4cfedbfc-5980-4a87-b1d7-6807adc8e642">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f29019c4-e42c-458c-bbfc-e394a99c158a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605149_4cfedbfc-5980-4a87-b1d7-6807adc8e642_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605149_4cfedbfc-5980-4a87-b1d7-6807adc8e642_poly_0_">
                      <gml:posList srsDimension="3">568249.704 5517129.748 209.741 568249.704 5517129.748 209.760 568251.949 5517131.999 207.288 568249.704 5517129.748 209.741</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_605149_c049b65c-12a9-4857-aedf-8f723edf0a44">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a9a05f47-b138-46d2-a187-820b42d2cde6">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605149_c049b65c-12a9-4857-aedf-8f723edf0a44_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605149_c049b65c-12a9-4857-aedf-8f723edf0a44_poly_0_">
                      <gml:posList srsDimension="3">568252.772 5517117.032 205.964 568252.808 5517117.031 205.924 568252.995 5517126.113 205.958 568253.047 5517126.111 205.900 568249.704 5517129.748 209.741 568251.949 5517131.999 207.288 568253.160 5517133.214 205.964 568247.195 5517128.220 212.510 568247.052 5517122.203 212.510 568252.772 5517117.032 205.964</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1946</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember><core:cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_605148">
      <gen:stringAttribute name="comment">
        <gen:value>Random year of construction, with probability from CGSC PPT Page 15.</gen:value>
      </gen:stringAttribute>
      <gml:name>DEBY_LOD2_605148</gml:name>
      <core:creationDate>2013-06-25</core:creationDate>
      <core:externalReference>
        <core:informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</core:informationSystem>
        <core:externalObject>
          <core:name>DEBYvAAAAAA9pJd0</core:name>
        </core:externalObject>
      </core:externalReference>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_9998</bldg:function>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">17.302</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_e7924a48-4502-4ffb-a01a-44144e4575b4">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_5de17540-7f17-4c89-a2a3-b29e537412ff">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605148_fbbda10d-6ad2-4e1d-ba8c-703c579e533f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605148_f3573b9f-5c74-4354-adcb-ffadb9e63be3_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605148_f33f8baf-b953-4c28-ac4b-844d6ed5b063_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605148_e3cf213b-cf99-4112-9ff3-9226401d0b7f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605148_dc0d135c-4320-4cfd-a401-20c3b0e2094b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605148_db84e04d-ab37-4457-82ae-b9e298727f3b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605148_d406fce4-cbb5-46a2-9237-70fff71a36d8_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605148_b9d65244-7f03-4580-a292-372d0b34b739_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605148_a6d646d5-32a1-4766-b37c-3dbadfcb35cf_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605148_a34039c8-c5af-4e80-8822-3f62d701e5df_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605148_a29bb797-af02-4532-b7af-2483552983fa_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605148_9cf76f75-471e-457a-9ee4-6ab83655b3f6_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605148_8ac2858d-0c77-46d0-ad8e-b1fda36aab24_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605148_7a6f9a4d-eebb-4836-983d-aedeea6f8753_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605148_71e80132-70a8-4dde-81a2-5e97f56c77f1_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605148_6e5643a1-ecd5-4a0d-a3fd-7b21092ef9af_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605148_48d555c8-b2a7-495b-8c2f-fb8c91481cd5_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605148_3d8c08c4-f58d-44b5-88ab-21ea3c2cffe4_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605148_360fc741-51cf-4d21-8d52-b16e42539a5c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605148_2ba27b94-1631-4956-94be-eab638b077e6_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605148_289a1562-0adb-4248-9909-bbc7bde7366a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605148_170ce167-37b2-4f35-9ace-ea35eae5ffd3_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605148_f3573b9f-5c74-4354-adcb-ffadb9e63be3">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f63adb73-3ac8-4543-995a-100d0ccda509">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605148_f3573b9f-5c74-4354-adcb-ffadb9e63be3_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605148_f3573b9f-5c74-4354-adcb-ffadb9e63be3_poly_0_">
                      <gml:posList srsDimension="3">568247.594 5517097.704 193.670 568247.594 5517097.704 205.432 568243.474 5517096.468 205.441 568243.474 5517096.468 193.670 568247.594 5517097.704 193.670</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_605148_db84e04d-ab37-4457-82ae-b9e298727f3b">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_537b8926-6c22-47ad-a8b2-7d727c9d0820">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605148_db84e04d-ab37-4457-82ae-b9e298727f3b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605148_db84e04d-ab37-4457-82ae-b9e298727f3b_poly_0_">
                      <gml:posList srsDimension="3">568250.756 5517112.077 193.670 568250.756 5517112.077 205.524 568250.720 5517108.753 205.481 568250.720 5517108.753 193.670 568250.756 5517112.077 193.670</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_605148_71e80132-70a8-4dde-81a2-5e97f56c77f1">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_23b38d7e-1379-45e2-9228-6eb60af4cd40">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605148_71e80132-70a8-4dde-81a2-5e97f56c77f1_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605148_71e80132-70a8-4dde-81a2-5e97f56c77f1_poly_0_">
                      <gml:posList srsDimension="3">568250.700 5517103.666 210.972 568257.802 5517105.800 210.972 568256.434 5517110.392 205.460 568250.815 5517108.781 205.374 568245.679 5517102.158 210.972 568250.700 5517103.666 210.972</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_605148_a34039c8-c5af-4e80-8822-3f62d701e5df">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d9db2606-c30d-4397-80bc-9617c8f9a360">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605148_a34039c8-c5af-4e80-8822-3f62d701e5df_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605148_a34039c8-c5af-4e80-8822-3f62d701e5df_poly_0_">
                      <gml:posList srsDimension="3">568243.474 5517096.468 205.441 568245.679 5517102.158 210.972 568240.668 5517098.725 205.433 568240.666 5517098.647 205.374 568243.474 5517096.468 205.441</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_605148_7a6f9a4d-eebb-4836-983d-aedeea6f8753">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_168c3cbc-a73d-4087-9cbc-38c9ea4355af">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605148_7a6f9a4d-eebb-4836-983d-aedeea6f8753_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605148_7a6f9a4d-eebb-4836-983d-aedeea6f8753_poly_0_">
                      <gml:posList srsDimension="3">568247.549 5517097.832 193.670 568250.590 5517098.747 193.670 568259.138 5517101.316 193.670 568259.138 5517101.316 205.591 568250.590 5517098.747 205.589 568247.549 5517097.832 205.588 568247.549 5517097.832 193.670</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_605148_a6d646d5-32a1-4766-b37c-3dbadfcb35cf">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2806814b-27fb-4f1a-b1f4-1d2640a26e53">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605148_a6d646d5-32a1-4766-b37c-3dbadfcb35cf_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605148_a6d646d5-32a1-4766-b37c-3dbadfcb35cf_poly_0_">
                      <gml:posList srsDimension="3">568240.764 5517102.923 193.670 568240.764 5517102.923 205.436 568240.914 5517102.919 205.605 568240.914 5517102.919 193.670 568240.764 5517102.923 193.670</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_605148_2ba27b94-1631-4956-94be-eab638b077e6">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_960f0bf6-1146-4325-ba5b-4fe3025642bc">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605148_2ba27b94-1631-4956-94be-eab638b077e6_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605148_2ba27b94-1631-4956-94be-eab638b077e6_poly_0_">
                      <gml:posList srsDimension="3">568245.795 5517107.305 210.972 568250.692 5517112.078 205.596 568246.023 5517112.158 205.597 568246.027 5517112.308 205.431 568240.973 5517112.397 205.433 568245.795 5517107.305 210.972</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
For faster browsing, not all history is shown. View entire blame