Grombuehl_LoD2_mini.gml 1.28 MB
Newer Older
Ehlers's avatar
Ehlers committed
12001
12002
12003
12004
12005
12006
12007
12008
12009
12010
12011
12012
12013
12014
12015
12016
12017
12018
12019
12020
12021
12022
12023
12024
12025
12026
12027
12028
12029
12030
12031
12032
12033
12034
12035
12036
12037
12038
12039
12040
12041
12042
12043
12044
12045
12046
12047
12048
12049
12050
12051
12052
12053
12054
12055
12056
12057
12058
12059
12060
12061
12062
12063
12064
12065
12066
12067
12068
12069
12070
12071
12072
12073
12074
12075
12076
12077
12078
12079
12080
12081
12082
12083
12084
12085
12086
12087
12088
12089
12090
12091
12092
12093
12094
12095
12096
12097
12098
12099
12100
12101
12102
12103
12104
12105
12106
12107
12108
12109
12110
12111
12112
12113
12114
12115
12116
12117
12118
12119
12120
12121
12122
12123
12124
12125
12126
12127
12128
12129
12130
12131
12132
12133
12134
12135
12136
12137
12138
12139
12140
12141
12142
12143
12144
12145
12146
12147
12148
12149
12150
12151
12152
12153
12154
12155
12156
12157
12158
12159
12160
12161
12162
12163
12164
12165
12166
12167
12168
12169
12170
12171
12172
12173
12174
12175
12176
12177
12178
12179
12180
12181
12182
12183
12184
12185
12186
12187
12188
12189
12190
12191
12192
12193
12194
12195
12196
12197
12198
12199
12200
12201
12202
12203
12204
12205
12206
12207
12208
12209
12210
12211
12212
12213
12214
12215
12216
12217
12218
12219
12220
12221
12222
12223
12224
12225
12226
12227
12228
12229
12230
12231
12232
12233
12234
12235
12236
12237
12238
12239
12240
12241
12242
12243
12244
12245
12246
12247
12248
12249
12250
12251
12252
12253
12254
12255
12256
12257
12258
12259
12260
12261
12262
12263
12264
12265
12266
12267
12268
12269
12270
12271
12272
12273
12274
12275
12276
12277
12278
12279
12280
12281
12282
12283
12284
12285
12286
12287
12288
12289
12290
12291
12292
12293
12294
12295
12296
12297
12298
12299
12300
12301
12302
12303
12304
12305
12306
12307
12308
12309
12310
12311
12312
12313
12314
12315
12316
12317
12318
12319
12320
12321
12322
12323
12324
12325
12326
12327
12328
12329
12330
12331
12332
12333
12334
12335
12336
12337
12338
12339
12340
12341
12342
12343
12344
12345
12346
12347
12348
12349
12350
12351
12352
12353
12354
12355
12356
12357
12358
12359
12360
12361
12362
12363
12364
12365
12366
12367
12368
12369
12370
12371
12372
12373
12374
12375
12376
12377
12378
12379
12380
12381
12382
12383
12384
12385
12386
12387
12388
12389
12390
12391
12392
12393
12394
12395
12396
12397
12398
12399
12400
12401
12402
12403
12404
12405
12406
12407
12408
12409
12410
12411
12412
12413
12414
12415
12416
12417
12418
12419
12420
12421
12422
12423
12424
12425
12426
12427
12428
12429
12430
12431
12432
12433
12434
12435
12436
12437
12438
12439
12440
12441
12442
12443
12444
12445
12446
12447
12448
12449
12450
12451
12452
12453
12454
12455
12456
12457
12458
12459
12460
12461
12462
12463
12464
12465
12466
12467
12468
12469
12470
12471
12472
12473
12474
12475
12476
12477
12478
12479
12480
12481
12482
12483
12484
12485
12486
12487
12488
12489
12490
12491
12492
12493
12494
12495
12496
12497
12498
12499
12500
12501
12502
12503
12504
12505
12506
12507
12508
12509
12510
12511
12512
12513
12514
12515
12516
12517
12518
12519
12520
12521
12522
12523
12524
12525
12526
12527
12528
12529
12530
12531
12532
12533
12534
12535
12536
12537
12538
12539
12540
12541
12542
12543
12544
12545
12546
12547
12548
12549
12550
12551
12552
12553
12554
12555
12556
12557
12558
12559
12560
12561
12562
12563
12564
12565
12566
12567
12568
12569
12570
12571
12572
12573
12574
12575
12576
12577
12578
12579
12580
12581
12582
12583
12584
12585
12586
12587
12588
12589
12590
12591
12592
12593
12594
12595
12596
12597
12598
12599
12600
12601
12602
12603
12604
12605
12606
12607
12608
12609
12610
12611
12612
12613
12614
12615
12616
12617
12618
12619
12620
12621
12622
12623
12624
12625
12626
12627
12628
12629
12630
12631
12632
12633
12634
12635
12636
12637
12638
12639
12640
12641
12642
12643
12644
12645
12646
12647
12648
12649
12650
12651
12652
12653
12654
12655
12656
12657
12658
12659
12660
12661
12662
12663
12664
12665
12666
12667
12668
12669
12670
12671
12672
12673
12674
12675
12676
12677
12678
12679
12680
12681
12682
12683
12684
12685
12686
12687
12688
12689
12690
12691
12692
12693
12694
12695
12696
12697
12698
12699
12700
12701
12702
12703
12704
12705
12706
12707
12708
12709
12710
12711
12712
12713
12714
12715
12716
12717
12718
12719
12720
12721
12722
12723
12724
12725
12726
12727
12728
12729
12730
12731
12732
12733
12734
12735
12736
12737
12738
12739
12740
12741
12742
12743
12744
12745
12746
12747
12748
12749
12750
12751
12752
12753
12754
12755
12756
12757
12758
12759
12760
12761
12762
12763
12764
12765
12766
12767
12768
12769
12770
12771
12772
12773
12774
12775
12776
12777
12778
12779
12780
12781
12782
12783
12784
12785
12786
12787
12788
12789
12790
12791
12792
12793
12794
12795
12796
12797
12798
12799
12800
12801
12802
12803
12804
12805
12806
12807
12808
12809
12810
12811
12812
12813
12814
12815
12816
12817
12818
12819
12820
12821
12822
12823
12824
12825
12826
12827
12828
12829
12830
12831
12832
12833
12834
12835
12836
12837
12838
12839
12840
12841
12842
12843
12844
12845
12846
12847
12848
12849
12850
12851
12852
12853
12854
12855
12856
12857
12858
12859
12860
12861
12862
12863
12864
12865
12866
12867
12868
12869
12870
12871
12872
12873
12874
12875
12876
12877
12878
12879
12880
12881
12882
12883
12884
12885
12886
12887
12888
12889
12890
12891
12892
12893
12894
12895
12896
12897
12898
12899
12900
12901
12902
12903
12904
12905
12906
12907
12908
12909
12910
12911
12912
12913
12914
12915
12916
12917
12918
12919
12920
12921
12922
12923
12924
12925
12926
12927
12928
12929
12930
12931
12932
12933
12934
12935
12936
12937
12938
12939
12940
12941
12942
12943
12944
12945
12946
12947
12948
12949
12950
12951
12952
12953
12954
12955
12956
12957
12958
12959
12960
12961
12962
12963
12964
12965
12966
12967
12968
12969
12970
12971
12972
12973
12974
12975
12976
12977
12978
12979
12980
12981
12982
12983
12984
12985
12986
12987
12988
12989
12990
12991
12992
12993
12994
12995
12996
12997
12998
12999
13000
                    <gml:LinearRing gml:id="DEBY_LOD2_604930_91172a29-3cde-41e4-8c33-5f0f50435e0b_poly_0_">
                      <gml:posList srsDimension="3">568248.633 5517202.806 219.214 568253.066 5517206.444 215.025 568253.078 5517207.596 213.707 568242.971 5517207.662 213.704 568248.633 5517202.806 219.214</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_604930_e1f2b305-be5f-447b-92f0-6d0d6fb67bbf">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fa553a7f-9644-444b-9e4e-7f61b15a599e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604930_e1f2b305-be5f-447b-92f0-6d0d6fb67bbf_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604930_e1f2b305-be5f-447b-92f0-6d0d6fb67bbf_poly_0_">
                      <gml:posList srsDimension="3">568251.319 5517194.791 201.280 568251.319 5517194.791 216.527 568254.290 5517194.791 213.699 568254.290 5517194.791 201.280 568251.319 5517194.791 201.280</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_604930_cd013da9-0b85-49e2-b3d3-2b91cdbc3797">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fcdc728a-9d7c-4915-a8b5-7c6998321882">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604930_cd013da9-0b85-49e2-b3d3-2b91cdbc3797_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604930_cd013da9-0b85-49e2-b3d3-2b91cdbc3797_poly_0_">
                      <gml:posList srsDimension="3">568252.989 5517199.029 214.999 568253.027 5517202.748 219.220 568248.633 5517202.806 219.214 568252.989 5517199.029 214.999</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_604930_c901a940-a5ec-44b0-b876-bd36d2f3e895">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1a63b504-86f8-429a-b864-27fb209c1e55">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604930_c901a940-a5ec-44b0-b876-bd36d2f3e895_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604930_c901a940-a5ec-44b0-b876-bd36d2f3e895_poly_0_">
                      <gml:posList srsDimension="3">568242.604 5517190.848 213.691 568242.760 5517198.055 213.705 568242.971 5517207.662 213.704 568242.971 5517207.662 201.280 568242.760 5517198.055 201.280 568242.604 5517190.848 201.280 568242.604 5517190.848 213.691</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_604930_b3b31cab-6357-459a-a55f-1410067c0e7a">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8176e5a2-421d-43c5-aa2d-c3a83d62b08e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604930_b3b31cab-6357-459a-a55f-1410067c0e7a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604930_b3b31cab-6357-459a-a55f-1410067c0e7a_poly_0_">
                      <gml:posList srsDimension="3">568253.027 5517202.748 219.220 568253.066 5517206.444 215.025 568248.633 5517202.806 219.214 568253.027 5517202.748 219.220</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_604930_4850b12a-e4ba-499b-b37a-6b46f72841c5">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a57fee1c-b52f-45c8-b0f9-248597481893">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604930_4850b12a-e4ba-499b-b37a-6b46f72841c5_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604930_4850b12a-e4ba-499b-b37a-6b46f72841c5_poly_0_">
                      <gml:posList srsDimension="3">568252.977 5517197.849 201.280 568252.977 5517197.849 214.995 568251.316 5517197.852 216.575 568251.316 5517197.852 201.280 568252.977 5517197.849 201.280</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_604930_052f4ff1-f08c-46d7-903a-d6e1bc40e96b">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_155c9fdb-a2b8-4524-87ec-43850c688c7a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604930_052f4ff1-f08c-46d7-903a-d6e1bc40e96b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604930_052f4ff1-f08c-46d7-903a-d6e1bc40e96b_poly_0_">
                      <gml:posList srsDimension="3">568248.419 5517190.732 219.227 568248.547 5517197.939 219.213 568248.633 5517202.806 219.214 568242.971 5517207.662 213.704 568242.760 5517198.055 213.705 568242.604 5517190.848 213.691 568248.419 5517190.732 219.227</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_604930_33eaf79e-5645-4bc0-8534-e0d9ecec6aad">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_66a7273b-729d-4bdc-9ae5-8f5f14d06674">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604930_33eaf79e-5645-4bc0-8534-e0d9ecec6aad_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604930_33eaf79e-5645-4bc0-8534-e0d9ecec6aad_poly_0_">
                      <gml:posList srsDimension="3">568254.198 5517190.615 201.280 568248.419 5517190.732 201.280 568242.604 5517190.848 201.280 568242.760 5517198.055 201.280 568242.971 5517207.662 201.280 568253.078 5517207.596 201.280 568253.066 5517206.444 201.280 568253.027 5517202.748 201.280 568252.989 5517199.029 201.280 568252.977 5517197.849 201.280 568251.316 5517197.852 201.280 568251.319 5517194.791 201.280 568254.290 5517194.791 201.280 568254.198 5517190.615 201.280</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_604930_9fa79e26-df9c-432b-bfcd-c5b231f6eca6">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f371a893-fe6a-4aa5-959b-f0edd3012249">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604930_9fa79e26-df9c-432b-bfcd-c5b231f6eca6_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604930_9fa79e26-df9c-432b-bfcd-c5b231f6eca6_poly_0_">
                      <gml:posList srsDimension="3">568242.971 5517207.662 201.280 568242.971 5517207.662 213.704 568253.078 5517207.596 213.707 568253.078 5517207.596 201.280 568242.971 5517207.662 201.280</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_604930_a8333274-5a4b-4b8c-8afd-a26df47a848b">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d6013d43-702d-4180-9414-a3107c31b62b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604930_a8333274-5a4b-4b8c-8afd-a26df47a848b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604930_a8333274-5a4b-4b8c-8afd-a26df47a848b_poly_0_">
                      <gml:posList srsDimension="3">568252.989 5517199.029 214.999 568252.977 5517197.849 214.995 568252.977 5517197.849 201.280 568252.989 5517199.029 201.280 568253.027 5517202.748 201.280 568253.066 5517206.444 201.280 568253.078 5517207.596 201.280 568253.078 5517207.596 213.707 568253.066 5517206.444 215.025 568253.027 5517202.748 219.220 568252.989 5517199.029 214.999</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_604930_6926c5cc-5fa5-4e4e-b049-4deca4ba8672">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_56acc04e-9cd1-432b-9e3e-7826a400d4b4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604930_6926c5cc-5fa5-4e4e-b049-4deca4ba8672_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604930_6926c5cc-5fa5-4e4e-b049-4deca4ba8672_poly_0_">
                      <gml:posList srsDimension="3">568248.419 5517190.732 201.280 568254.198 5517190.615 201.280 568254.198 5517190.615 213.724 568248.419 5517190.732 219.227 568242.604 5517190.848 213.691 568242.604 5517190.848 201.280 568248.419 5517190.732 201.280</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_604930_4e1779d4-2eda-4fab-a572-fd28c7bbb3e9">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_78f88112-eb03-486b-879b-7a14c774b9d4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604930_4e1779d4-2eda-4fab-a572-fd28c7bbb3e9_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604930_4e1779d4-2eda-4fab-a572-fd28c7bbb3e9_poly_0_">
                      <gml:posList srsDimension="3">568254.198 5517190.615 213.724 568254.290 5517194.791 213.699 568251.319 5517194.791 216.527 568251.316 5517197.852 216.575 568252.977 5517197.849 214.995 568252.989 5517199.029 214.999 568248.633 5517202.806 219.214 568248.547 5517197.939 219.213 568248.419 5517190.732 219.227 568254.198 5517190.615 213.724</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_604930_e7672f6f-4504-4180-a9f8-19cc5c896077">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_66092ef2-022c-4776-a25e-940ee6b286d9">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604930_e7672f6f-4504-4180-a9f8-19cc5c896077_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604930_e7672f6f-4504-4180-a9f8-19cc5c896077_poly_0_">
                      <gml:posList srsDimension="3">568251.316 5517197.852 201.280 568251.316 5517197.852 216.575 568251.319 5517194.791 216.527 568251.319 5517194.791 201.280 568251.316 5517197.852 201.280</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_604930_c6f63dd0-a041-49bd-9b60-940b2415fa0f">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_afcd95ec-b3e1-49cb-a0cf-19f8c0561248">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604930_c6f63dd0-a041-49bd-9b60-940b2415fa0f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604930_c6f63dd0-a041-49bd-9b60-940b2415fa0f_poly_0_">
                      <gml:posList srsDimension="3">568254.290 5517194.791 201.280 568254.290 5517194.791 213.699 568254.198 5517190.615 213.724 568254.198 5517190.615 201.280 568254.290 5517194.791 201.280</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1943</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember><core:cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_604934">
      <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_604934</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>DEBYvAAAAAA9ofIR</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">15.793</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_0a15c29b-5042-42e1-96f9-7b11377f5c0f">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_87c9739e-e3c1-4e75-b721-4eceddf58440">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604934_f3253a57-0067-4d7a-9a2e-4c6550dec20f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604934_c3e8bec6-a207-4bb3-940a-16af2e07f0e7_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604934_abb5d3dc-8306-4af9-ab9d-0087bcec150b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604934_a8065eea-1c6c-48bc-8344-5d4532bc64ba_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604934_92f01f60-1c4b-451e-bf62-b8610583c76d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604934_903664ed-1fd4-438a-86af-f268cf802d45_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604934_7889a76f-4171-42f7-9630-30095e61f980_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604934_433a9ce1-9406-43f3-b929-6d28528f94aa_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="DEBY_LOD2_604934_92f01f60-1c4b-451e-bf62-b8610583c76d">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8544ccc0-b193-4673-a718-9d1a3f20c60d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604934_92f01f60-1c4b-451e-bf62-b8610583c76d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604934_92f01f60-1c4b-451e-bf62-b8610583c76d_poly_0_">
                      <gml:posList srsDimension="3">568282.456 5517149.025 198.450 568281.967 5517144.412 198.450 568268.112 5517145.544 198.450 568268.990 5517154.792 198.450 568282.945 5517153.641 198.450 568282.456 5517149.025 198.450</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_604934_7889a76f-4171-42f7-9630-30095e61f980">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_df6c80d0-2088-4a7b-ba50-907a31545eab">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604934_7889a76f-4171-42f7-9630-30095e61f980_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604934_7889a76f-4171-42f7-9630-30095e61f980_poly_0_">
                      <gml:posList srsDimension="3">568268.990 5517154.792 198.450 568268.990 5517154.792 209.404 568282.945 5517153.641 209.404 568282.945 5517153.641 198.450 568268.990 5517154.792 198.450</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_604934_a8065eea-1c6c-48bc-8344-5d4532bc64ba">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_02c0c30e-e8df-4544-9b45-dcc6135bcb55">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604934_a8065eea-1c6c-48bc-8344-5d4532bc64ba_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604934_a8065eea-1c6c-48bc-8344-5d4532bc64ba_poly_0_">
                      <gml:posList srsDimension="3">568273.178 5517149.790 214.243 568268.990 5517154.792 209.404 568268.112 5517145.544 209.404 568273.178 5517149.790 214.243</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_604934_c3e8bec6-a207-4bb3-940a-16af2e07f0e7">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3f78f03a-bcc6-47da-887e-5f0f98f97dc5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604934_c3e8bec6-a207-4bb3-940a-16af2e07f0e7_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604934_c3e8bec6-a207-4bb3-940a-16af2e07f0e7_poly_0_">
                      <gml:posList srsDimension="3">568281.967 5517144.412 209.408 568282.456 5517149.025 214.243 568273.178 5517149.790 214.243 568268.112 5517145.544 209.404 568281.967 5517144.412 209.408</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_604934_903664ed-1fd4-438a-86af-f268cf802d45">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_659287c0-7b38-45d5-b848-7ae320058b05">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604934_903664ed-1fd4-438a-86af-f268cf802d45_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604934_903664ed-1fd4-438a-86af-f268cf802d45_poly_0_">
                      <gml:posList srsDimension="3">568268.112 5517145.544 198.450 568268.112 5517145.544 209.404 568268.990 5517154.792 209.404 568268.990 5517154.792 198.450 568268.112 5517145.544 198.450</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_604934_433a9ce1-9406-43f3-b929-6d28528f94aa">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2e570044-aee8-4099-aebc-a17ef7eff48e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604934_433a9ce1-9406-43f3-b929-6d28528f94aa_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604934_433a9ce1-9406-43f3-b929-6d28528f94aa_poly_0_">
                      <gml:posList srsDimension="3">568281.967 5517144.412 198.450 568281.967 5517144.412 209.408 568268.112 5517145.544 209.404 568268.112 5517145.544 198.450 568281.967 5517144.412 198.450</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_604934_abb5d3dc-8306-4af9-ab9d-0087bcec150b">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ed80b6d6-2128-4a7a-ad53-ef9ffb8bd7e9">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604934_abb5d3dc-8306-4af9-ab9d-0087bcec150b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604934_abb5d3dc-8306-4af9-ab9d-0087bcec150b_poly_0_">
                      <gml:posList srsDimension="3">568281.967 5517144.412 209.408 568281.967 5517144.412 198.450 568282.456 5517149.025 198.450 568282.945 5517153.641 198.450 568282.945 5517153.641 209.404 568282.456 5517149.025 214.243 568281.967 5517144.412 209.408</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_604934_f3253a57-0067-4d7a-9a2e-4c6550dec20f">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b84e5e7b-1283-4f52-80ef-993197d28e70">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604934_f3253a57-0067-4d7a-9a2e-4c6550dec20f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604934_f3253a57-0067-4d7a-9a2e-4c6550dec20f_poly_0_">
                      <gml:posList srsDimension="3">568273.178 5517149.790 214.243 568282.456 5517149.025 214.243 568282.945 5517153.641 209.404 568268.990 5517154.792 209.404 568273.178 5517149.790 214.243</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>2019</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember><core:cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_604933">
      <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_604933</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>DEBYvAAAAAA9ofM9</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">15.498</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_330bee80-196b-4e4a-8b5e-5745e1e68070">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_c4fe2394-5ca4-4b06-99e1-058e27d7392e">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604933_f74c063c-28d3-4838-942a-5463b3bf330c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604933_d8a04c95-d05a-4265-8f18-74b2299bb566_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604933_bf2bb35a-753c-47f9-b090-ee68eb1d666d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604933_b4f79646-7322-4217-bb85-c46510763b4d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604933_65015ff7-29b1-4735-88eb-fcb8b12b5dc9_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604933_41311c15-e3f7-4599-a4f8-f2d3d4d25224_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604933_3a66eaed-07b9-46f6-af36-f9f0fe22a512_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604933_3131aa6b-dc73-4cbc-80d5-ce4464c16349_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="DEBY_LOD2_604933_3131aa6b-dc73-4cbc-80d5-ce4464c16349">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8abb0180-02dd-4d46-beaa-d39b44fdc8c6">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604933_3131aa6b-dc73-4cbc-80d5-ce4464c16349_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604933_3131aa6b-dc73-4cbc-80d5-ce4464c16349_poly_0_">
                      <gml:posList srsDimension="3">568298.656 5517166.523 199.140 568284.734 5517167.602 199.140 568285.109 5517172.234 199.140 568285.484 5517176.864 199.140 568299.365 5517175.794 199.140 568298.656 5517166.523 199.140</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_604933_3a66eaed-07b9-46f6-af36-f9f0fe22a512">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b851b95a-a28c-4efb-8e73-d60a9205da70">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604933_3a66eaed-07b9-46f6-af36-f9f0fe22a512_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604933_3a66eaed-07b9-46f6-af36-f9f0fe22a512_poly_0_">
                      <gml:posList srsDimension="3">568299.365 5517175.794 199.140 568299.365 5517175.794 209.811 568298.656 5517166.523 209.814 568298.656 5517166.523 199.140 568299.365 5517175.794 199.140</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_604933_b4f79646-7322-4217-bb85-c46510763b4d">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d4c6fce7-aca8-4e92-9f4a-29755c46f04e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604933_b4f79646-7322-4217-bb85-c46510763b4d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604933_b4f79646-7322-4217-bb85-c46510763b4d_poly_0_">
                      <gml:posList srsDimension="3">568298.656 5517166.523 209.814 568299.365 5517175.794 209.811 568294.378 5517171.515 214.638 568298.656 5517166.523 209.814</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_604933_41311c15-e3f7-4599-a4f8-f2d3d4d25224">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d926e420-2dab-4617-aa89-a1bcf335fb76">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604933_41311c15-e3f7-4599-a4f8-f2d3d4d25224_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604933_41311c15-e3f7-4599-a4f8-f2d3d4d25224_poly_0_">
                      <gml:posList srsDimension="3">568285.484 5517176.864 199.140 568285.484 5517176.864 209.817 568299.365 5517175.794 209.811 568299.365 5517175.794 199.140 568285.484 5517176.864 199.140</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_604933_65015ff7-29b1-4735-88eb-fcb8b12b5dc9">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1fdf2d09-b9f4-4ae2-a1be-944d8e1bbf12">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604933_65015ff7-29b1-4735-88eb-fcb8b12b5dc9_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604933_65015ff7-29b1-4735-88eb-fcb8b12b5dc9_poly_0_">
                      <gml:posList srsDimension="3">568284.734 5517167.602 209.814 568285.109 5517172.234 214.638 568285.484 5517176.864 209.817 568285.484 5517176.864 199.140 568285.109 5517172.234 199.140 568284.734 5517167.602 199.140 568284.734 5517167.602 209.814</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_604933_bf2bb35a-753c-47f9-b090-ee68eb1d666d">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_31870d77-18a3-4313-be12-52eefc6003ab">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604933_bf2bb35a-753c-47f9-b090-ee68eb1d666d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604933_bf2bb35a-753c-47f9-b090-ee68eb1d666d_poly_0_">
                      <gml:posList srsDimension="3">568298.656 5517166.523 209.814 568294.378 5517171.515 214.638 568285.109 5517172.234 214.638 568284.734 5517167.602 209.814 568298.656 5517166.523 209.814</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_604933_d8a04c95-d05a-4265-8f18-74b2299bb566">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_44eff860-c211-4d3d-becc-423ac690f1ae">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604933_d8a04c95-d05a-4265-8f18-74b2299bb566_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604933_d8a04c95-d05a-4265-8f18-74b2299bb566_poly_0_">
                      <gml:posList srsDimension="3">568298.656 5517166.523 199.140 568298.656 5517166.523 209.814 568284.734 5517167.602 209.814 568284.734 5517167.602 199.140 568298.656 5517166.523 199.140</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_604933_f74c063c-28d3-4838-942a-5463b3bf330c">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e5d87eb5-a34b-4509-a598-4c2eb12d78b3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604933_f74c063c-28d3-4838-942a-5463b3bf330c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604933_f74c063c-28d3-4838-942a-5463b3bf330c_poly_0_">
                      <gml:posList srsDimension="3">568294.378 5517171.515 214.638 568299.365 5517175.794 209.811 568285.484 5517176.864 209.817 568285.109 5517172.234 214.638 568294.378 5517171.515 214.638</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1986</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember><core:cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_604935">
      <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_604935</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>DEBYvAAAAAA9ofHx</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">15.838</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_dddc424f-e1b6-406f-9f83-d59db50d46a7">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_36a72104-77d7-43b4-9d79-c1037ef37a6c">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604935_e1b9351d-bd28-4dfc-bacf-4b4c87b9e4c2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604935_cf1fcc92-9ad4-4c14-96b2-0f66b2feb3a0_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604935_b5932d48-f8f3-442e-a0ab-41ac42c123cc_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604935_9498b982-862b-4956-a66f-794c4610ac3c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604935_90c4f4d7-5ed0-4713-9561-4bf196b626f0_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604935_6fd56e25-0c91-4995-932b-318a488c3bea_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604935_66634b98-d028-4b51-ab02-d8ec6f7e6253_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604935_3beb313a-9dc8-41bf-9aaf-6c3aa9803d38_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_604935_6fd56e25-0c91-4995-932b-318a488c3bea">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a7acc77c-235c-44ab-8a89-f868fcf103ec">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604935_6fd56e25-0c91-4995-932b-318a488c3bea_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604935_6fd56e25-0c91-4995-932b-318a488c3bea_poly_0_">
                      <gml:posList srsDimension="3">568295.976 5517143.267 209.493 568296.766 5517152.514 209.489 568291.747 5517148.267 214.228 568295.976 5517143.267 209.493</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_604935_3beb313a-9dc8-41bf-9aaf-6c3aa9803d38">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7a05a361-67e9-4163-83dc-61601892a200">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604935_3beb313a-9dc8-41bf-9aaf-6c3aa9803d38_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604935_3beb313a-9dc8-41bf-9aaf-6c3aa9803d38_poly_0_">
                      <gml:posList srsDimension="3">568296.766 5517152.514 198.390 568296.766 5517152.514 209.489 568295.976 5517143.267 209.493 568295.976 5517143.267 198.390 568296.766 5517152.514 198.390</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_604935_90c4f4d7-5ed0-4713-9561-4bf196b626f0">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ba098157-ade9-4497-ad9c-7ffc357a00a2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604935_90c4f4d7-5ed0-4713-9561-4bf196b626f0_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604935_90c4f4d7-5ed0-4713-9561-4bf196b626f0_poly_0_">
                      <gml:posList srsDimension="3">568291.747 5517148.267 214.228 568296.766 5517152.514 209.489 568282.945 5517153.641 209.496 568282.456 5517149.029 214.228 568291.747 5517148.267 214.228</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_604935_9498b982-862b-4956-a66f-794c4610ac3c">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_de4611ea-eb8f-483f-bf74-aa042899d319">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604935_9498b982-862b-4956-a66f-794c4610ac3c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604935_9498b982-862b-4956-a66f-794c4610ac3c_poly_0_">
                      <gml:posList srsDimension="3">568281.995 5517144.411 198.390 568295.976 5517143.267 198.390 568295.976 5517143.267 209.493 568281.995 5517144.411 209.493 568281.967 5517144.412 209.493 568281.967 5517144.412 198.390 568281.995 5517144.411 198.390</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_604935_66634b98-d028-4b51-ab02-d8ec6f7e6253">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_77cf2b57-c9ea-46d4-a3ea-38a439bc4628">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604935_66634b98-d028-4b51-ab02-d8ec6f7e6253_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604935_66634b98-d028-4b51-ab02-d8ec6f7e6253_poly_0_">
                      <gml:posList srsDimension="3">568282.945 5517153.641 198.390 568282.945 5517153.641 209.496 568296.766 5517152.514 209.489 568296.766 5517152.514 198.390 568282.945 5517153.641 198.390</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_604935_b5932d48-f8f3-442e-a0ab-41ac42c123cc">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_486a6837-312f-4514-9542-4d0c573c5b94">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604935_b5932d48-f8f3-442e-a0ab-41ac42c123cc_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604935_b5932d48-f8f3-442e-a0ab-41ac42c123cc_poly_0_">
                      <gml:posList srsDimension="3">568281.967 5517144.412 209.493 568282.110 5517145.766 210.882 568282.456 5517149.029 214.228 568282.945 5517153.641 209.496 568282.945 5517153.641 198.390 568282.456 5517149.029 198.390 568282.110 5517145.766 198.390 568281.967 5517144.412 198.390 568281.967 5517144.412 209.493</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_604935_e1b9351d-bd28-4dfc-bacf-4b4c87b9e4c2">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2bfe6a3d-9a21-44d3-8f18-45117de9afc3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604935_e1b9351d-bd28-4dfc-bacf-4b4c87b9e4c2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604935_e1b9351d-bd28-4dfc-bacf-4b4c87b9e4c2_poly_0_">
                      <gml:posList srsDimension="3">568281.995 5517144.411 209.493 568295.976 5517143.267 209.493 568291.747 5517148.267 214.228 568282.456 5517149.029 214.228 568282.110 5517145.766 210.882 568281.967 5517144.412 209.493 568281.995 5517144.411 209.493</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_604935_cf1fcc92-9ad4-4c14-96b2-0f66b2feb3a0">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3f11f7d1-1b12-438a-ad1d-7608b119c6e9">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604935_cf1fcc92-9ad4-4c14-96b2-0f66b2feb3a0_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604935_cf1fcc92-9ad4-4c14-96b2-0f66b2feb3a0_poly_0_">
                      <gml:posList srsDimension="3">568295.976 5517143.267 198.390 568281.995 5517144.411 198.390 568281.967 5517144.412 198.390 568282.110 5517145.766 198.390 568282.456 5517149.029 198.390 568282.945 5517153.641 198.390 568296.766 5517152.514 198.390 568295.976 5517143.267 198.390</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1988</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember><core:cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_604942">
      <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_604942</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>DEBYvAAAAAA9oeER</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">13.732</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_5d872891-90aa-4eae-a7f0-cd5b748ae291">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_1f585132-b66e-4806-8dd1-8be47780a129">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604942_980a5e95-9df4-49b3-afa1-76f21603a08b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604942_919f0ad0-8bc0-4de2-9689-ddcab7045f45_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604942_88904a47-47de-4903-b1ef-ccbfc1d03f74_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604942_79825db1-a1ed-4445-b2eb-5b3f69a0ccb5_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604942_74e76e8e-6585-4ff5-b5e3-992f77fc25fb_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604942_2e1dcb14-ebbf-45d2-96da-be8e70a669e2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604942_1c7055a4-fe44-4c95-b640-044afe2531c8_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="DEBY_LOD2_604942_1c7055a4-fe44-4c95-b640-044afe2531c8">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fb107527-66a8-45ca-8a0e-80dc07213bb9">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604942_1c7055a4-fe44-4c95-b640-044afe2531c8_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604942_1c7055a4-fe44-4c95-b640-044afe2531c8_poly_0_">
                      <gml:posList srsDimension="3">568316.011 5517142.684 198.830 568315.374 5517138.063 198.830 568302.543 5517139.777 198.830 568303.137 5517144.390 198.830 568303.734 5517149.010 198.830 568316.647 5517147.299 198.830 568316.011 5517142.684 198.830</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_604942_2e1dcb14-ebbf-45d2-96da-be8e70a669e2">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_64c47893-4ba9-4f9b-a97d-35dbe2a8ec14">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604942_2e1dcb14-ebbf-45d2-96da-be8e70a669e2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604942_2e1dcb14-ebbf-45d2-96da-be8e70a669e2_poly_0_">
                      <gml:posList srsDimension="3">568315.374 5517138.063 209.359 568315.374 5517138.063 198.830 568316.011 5517142.684 198.830 568316.647 5517147.299 198.830 568316.647 5517147.299 209.363 568316.011 5517142.684 212.562 568315.374 5517138.063 209.359</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_604942_79825db1-a1ed-4445-b2eb-5b3f69a0ccb5">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6d06c7b4-b827-48f1-8014-c395d27f72b0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604942_79825db1-a1ed-4445-b2eb-5b3f69a0ccb5_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604942_79825db1-a1ed-4445-b2eb-5b3f69a0ccb5_poly_0_">
                      <gml:posList srsDimension="3">568303.734 5517149.010 198.830 568303.734 5517149.010 209.363 568316.647 5517147.299 209.363 568316.647 5517147.299 198.830 568303.734 5517149.010 198.830</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_604942_88904a47-47de-4903-b1ef-ccbfc1d03f74">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_928ff2bc-742a-4251-9409-43c8d3b0e0ab">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604942_88904a47-47de-4903-b1ef-ccbfc1d03f74_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604942_88904a47-47de-4903-b1ef-ccbfc1d03f74_poly_0_">
                      <gml:posList srsDimension="3">568316.011 5517142.684 212.562 568316.647 5517147.299 209.363 568303.734 5517149.010 209.363 568303.137 5517144.390 212.562 568316.011 5517142.684 212.562</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_604942_980a5e95-9df4-49b3-afa1-76f21603a08b">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_03fea182-f1d1-4c51-85ac-4ac59d7ae605">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604942_980a5e95-9df4-49b3-afa1-76f21603a08b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604942_980a5e95-9df4-49b3-afa1-76f21603a08b_poly_0_">
                      <gml:posList srsDimension="3">568315.374 5517138.063 209.359 568316.011 5517142.684 212.562 568303.137 5517144.390 212.562 568302.543 5517139.777 209.369 568315.374 5517138.063 209.359</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_604942_74e76e8e-6585-4ff5-b5e3-992f77fc25fb">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_524c4228-8f13-4ccc-8f5d-6290d9f64390">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604942_74e76e8e-6585-4ff5-b5e3-992f77fc25fb_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604942_74e76e8e-6585-4ff5-b5e3-992f77fc25fb_poly_0_">
                      <gml:posList srsDimension="3">568315.374 5517138.063 198.830 568315.374 5517138.063 209.359 568302.543 5517139.777 209.369 568302.543 5517139.777 198.830 568315.374 5517138.063 198.830</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_604942_919f0ad0-8bc0-4de2-9689-ddcab7045f45">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f59c8b6c-024a-4589-8b94-30cc621555c4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604942_919f0ad0-8bc0-4de2-9689-ddcab7045f45_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604942_919f0ad0-8bc0-4de2-9689-ddcab7045f45_poly_0_">
                      <gml:posList srsDimension="3">568302.543 5517139.777 209.369 568303.137 5517144.390 212.562 568303.734 5517149.010 209.363 568303.734 5517149.010 198.830 568303.137 5517144.390 198.830 568302.543 5517139.777 198.830 568302.543 5517139.777 209.369</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1953</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember><core:cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_604945">
      <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_604945</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>DEBYvAAAAAA9oeEh</core:name>
        </core:externalObject>
      </core:externalReference>
For faster browsing, not all history is shown. View entire blame