Grombuehl_LoD2_mini.gml 1.28 MB
Newer Older
Ehlers's avatar
Ehlers committed
13001
13002
13003
13004
13005
13006
13007
13008
13009
13010
13011
13012
13013
13014
13015
13016
13017
13018
13019
13020
13021
13022
13023
13024
13025
13026
13027
13028
13029
13030
13031
13032
13033
13034
13035
13036
13037
13038
13039
13040
13041
13042
13043
13044
13045
13046
13047
13048
13049
13050
13051
13052
13053
13054
13055
13056
13057
13058
13059
13060
13061
13062
13063
13064
13065
13066
13067
13068
13069
13070
13071
13072
13073
13074
13075
13076
13077
13078
13079
13080
13081
13082
13083
13084
13085
13086
13087
13088
13089
13090
13091
13092
13093
13094
13095
13096
13097
13098
13099
13100
13101
13102
13103
13104
13105
13106
13107
13108
13109
13110
13111
13112
13113
13114
13115
13116
13117
13118
13119
13120
13121
13122
13123
13124
13125
13126
13127
13128
13129
13130
13131
13132
13133
13134
13135
13136
13137
13138
13139
13140
13141
13142
13143
13144
13145
13146
13147
13148
13149
13150
13151
13152
13153
13154
13155
13156
13157
13158
13159
13160
13161
13162
13163
13164
13165
13166
13167
13168
13169
13170
13171
13172
13173
13174
13175
13176
13177
13178
13179
13180
13181
13182
13183
13184
13185
13186
13187
13188
13189
13190
13191
13192
13193
13194
13195
13196
13197
13198
13199
13200
13201
13202
13203
13204
13205
13206
13207
13208
13209
13210
13211
13212
13213
13214
13215
13216
13217
13218
13219
13220
13221
13222
13223
13224
13225
13226
13227
13228
13229
13230
13231
13232
13233
13234
13235
13236
13237
13238
13239
13240
13241
13242
13243
13244
13245
13246
13247
13248
13249
13250
13251
13252
13253
13254
13255
13256
13257
13258
13259
13260
13261
13262
13263
13264
13265
13266
13267
13268
13269
13270
13271
13272
13273
13274
13275
13276
13277
13278
13279
13280
13281
13282
13283
13284
13285
13286
13287
13288
13289
13290
13291
13292
13293
13294
13295
13296
13297
13298
13299
13300
13301
13302
13303
13304
13305
13306
13307
13308
13309
13310
13311
13312
13313
13314
13315
13316
13317
13318
13319
13320
13321
13322
13323
13324
13325
13326
13327
13328
13329
13330
13331
13332
13333
13334
13335
13336
13337
13338
13339
13340
13341
13342
13343
13344
13345
13346
13347
13348
13349
13350
13351
13352
13353
13354
13355
13356
13357
13358
13359
13360
13361
13362
13363
13364
13365
13366
13367
13368
13369
13370
13371
13372
13373
13374
13375
13376
13377
13378
13379
13380
13381
13382
13383
13384
13385
13386
13387
13388
13389
13390
13391
13392
13393
13394
13395
13396
13397
13398
13399
13400
13401
13402
13403
13404
13405
13406
13407
13408
13409
13410
13411
13412
13413
13414
13415
13416
13417
13418
13419
13420
13421
13422
13423
13424
13425
13426
13427
13428
13429
13430
13431
13432
13433
13434
13435
13436
13437
13438
13439
13440
13441
13442
13443
13444
13445
13446
13447
13448
13449
13450
13451
13452
13453
13454
13455
13456
13457
13458
13459
13460
13461
13462
13463
13464
13465
13466
13467
13468
13469
13470
13471
13472
13473
13474
13475
13476
13477
13478
13479
13480
13481
13482
13483
13484
13485
13486
13487
13488
13489
13490
13491
13492
13493
13494
13495
13496
13497
13498
13499
13500
13501
13502
13503
13504
13505
13506
13507
13508
13509
13510
13511
13512
13513
13514
13515
13516
13517
13518
13519
13520
13521
13522
13523
13524
13525
13526
13527
13528
13529
13530
13531
13532
13533
13534
13535
13536
13537
13538
13539
13540
13541
13542
13543
13544
13545
13546
13547
13548
13549
13550
13551
13552
13553
13554
13555
13556
13557
13558
13559
13560
13561
13562
13563
13564
13565
13566
13567
13568
13569
13570
13571
13572
13573
13574
13575
13576
13577
13578
13579
13580
13581
13582
13583
13584
13585
13586
13587
13588
13589
13590
13591
13592
13593
13594
13595
13596
13597
13598
13599
13600
13601
13602
13603
13604
13605
13606
13607
13608
13609
13610
13611
13612
13613
13614
13615
13616
13617
13618
13619
13620
13621
13622
13623
13624
13625
13626
13627
13628
13629
13630
13631
13632
13633
13634
13635
13636
13637
13638
13639
13640
13641
13642
13643
13644
13645
13646
13647
13648
13649
13650
13651
13652
13653
13654
13655
13656
13657
13658
13659
13660
13661
13662
13663
13664
13665
13666
13667
13668
13669
13670
13671
13672
13673
13674
13675
13676
13677
13678
13679
13680
13681
13682
13683
13684
13685
13686
13687
13688
13689
13690
13691
13692
13693
13694
13695
13696
13697
13698
13699
13700
13701
13702
13703
13704
13705
13706
13707
13708
13709
13710
13711
13712
13713
13714
13715
13716
13717
13718
13719
13720
13721
13722
13723
13724
13725
13726
13727
13728
13729
13730
13731
13732
13733
13734
13735
13736
13737
13738
13739
13740
13741
13742
13743
13744
13745
13746
13747
13748
13749
13750
13751
13752
13753
13754
13755
13756
13757
13758
13759
13760
13761
13762
13763
13764
13765
13766
13767
13768
13769
13770
13771
13772
13773
13774
13775
13776
13777
13778
13779
13780
13781
13782
13783
13784
13785
13786
13787
13788
13789
13790
13791
13792
13793
13794
13795
13796
13797
13798
13799
13800
13801
13802
13803
13804
13805
13806
13807
13808
13809
13810
13811
13812
13813
13814
13815
13816
13817
13818
13819
13820
13821
13822
13823
13824
13825
13826
13827
13828
13829
13830
13831
13832
13833
13834
13835
13836
13837
13838
13839
13840
13841
13842
13843
13844
13845
13846
13847
13848
13849
13850
13851
13852
13853
13854
13855
13856
13857
13858
13859
13860
13861
13862
13863
13864
13865
13866
13867
13868
13869
13870
13871
13872
13873
13874
13875
13876
13877
13878
13879
13880
13881
13882
13883
13884
13885
13886
13887
13888
13889
13890
13891
13892
13893
13894
13895
13896
13897
13898
13899
13900
13901
13902
13903
13904
13905
13906
13907
13908
13909
13910
13911
13912
13913
13914
13915
13916
13917
13918
13919
13920
13921
13922
13923
13924
13925
13926
13927
13928
13929
13930
13931
13932
13933
13934
13935
13936
13937
13938
13939
13940
13941
13942
13943
13944
13945
13946
13947
13948
13949
13950
13951
13952
13953
13954
13955
13956
13957
13958
13959
13960
13961
13962
13963
13964
13965
13966
13967
13968
13969
13970
13971
13972
13973
13974
13975
13976
13977
13978
13979
13980
13981
13982
13983
13984
13985
13986
13987
13988
13989
13990
13991
13992
13993
13994
13995
13996
13997
13998
13999
14000
      <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.844</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_4a48edea-54ec-4b7e-9861-32ce062d0798">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_6bbf3d1c-a7c5-45a2-8af1-542ddb73b17f">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604945_fd98ce6b-d1fb-4fe2-9933-0f63aed5ce4b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604945_f9ee8ec3-a41a-4f65-a3cb-8e78abee8cea_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604945_ad666399-fa4e-437b-82ba-df80053f5912_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604945_70420065-443d-4474-a8f7-763fb2bc202d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604945_6bfda771-eb8d-461c-8d3f-47b6e2fe3e7a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604945_5dd70f35-fcea-44a6-9f1b-9525c0baca7c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604945_3809c4f9-407f-4e32-a582-bb89c8738ee0_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604945_34935015-4f4d-4b16-89cd-70f5ba7550e3_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_604945_34935015-4f4d-4b16-89cd-70f5ba7550e3">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d4e6d928-a53e-4c8b-91db-0cc70c4501ae">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604945_34935015-4f4d-4b16-89cd-70f5ba7550e3_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604945_34935015-4f4d-4b16-89cd-70f5ba7550e3_poly_0_">
                      <gml:posList srsDimension="3">568338.582 5517137.527 206.853 568339.229 5517142.156 210.004 568329.044 5517143.488 210.004 568328.550 5517138.871 206.874 568338.582 5517137.527 206.853</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_604945_5dd70f35-fcea-44a6-9f1b-9525c0baca7c">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c6d589ba-2929-4c8c-b77a-68ac2add08d5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604945_5dd70f35-fcea-44a6-9f1b-9525c0baca7c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604945_5dd70f35-fcea-44a6-9f1b-9525c0baca7c_poly_0_">
                      <gml:posList srsDimension="3">568328.550 5517138.871 206.874 568329.044 5517143.488 210.004 568329.109 5517144.100 209.589 568329.272 5517145.625 208.556 568329.272 5517145.625 199.160 568329.109 5517144.100 199.160 568329.044 5517143.488 199.160 568328.550 5517138.871 199.160 568328.550 5517138.871 206.874</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_604945_3809c4f9-407f-4e32-a582-bb89c8738ee0">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2731d3fb-5538-447a-bee2-d6b32581fc23">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604945_3809c4f9-407f-4e32-a582-bb89c8738ee0_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604945_3809c4f9-407f-4e32-a582-bb89c8738ee0_poly_0_">
                      <gml:posList srsDimension="3">568339.229 5517142.156 210.004 568339.875 5517146.772 206.862 568329.669 5517148.107 206.862 568329.543 5517148.124 206.862 568329.272 5517145.625 208.556 568329.109 5517144.100 209.589 568329.044 5517143.488 210.004 568339.229 5517142.156 210.004</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_604945_70420065-443d-4474-a8f7-763fb2bc202d">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f0d08148-3215-48ce-a0a5-c2d99033f324">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604945_70420065-443d-4474-a8f7-763fb2bc202d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604945_70420065-443d-4474-a8f7-763fb2bc202d_poly_0_">
                      <gml:posList srsDimension="3">568338.582 5517137.527 206.853 568338.582 5517137.527 199.160 568339.229 5517142.156 199.160 568339.875 5517146.772 199.160 568339.875 5517146.772 206.862 568339.229 5517142.156 210.004 568338.582 5517137.527 206.853</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_604945_fd98ce6b-d1fb-4fe2-9933-0f63aed5ce4b">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ee816f96-0ca3-4cde-b38c-a4eec23ec672">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604945_fd98ce6b-d1fb-4fe2-9933-0f63aed5ce4b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604945_fd98ce6b-d1fb-4fe2-9933-0f63aed5ce4b_poly_0_">
                      <gml:posList srsDimension="3">568329.272 5517145.625 199.160 568329.272 5517145.625 208.556 568329.543 5517148.124 206.862 568329.543 5517148.124 199.160 568329.272 5517145.625 199.160</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_604945_6bfda771-eb8d-461c-8d3f-47b6e2fe3e7a">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_626ac77f-98d0-4ffc-9dca-c748f8181280">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604945_6bfda771-eb8d-461c-8d3f-47b6e2fe3e7a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604945_6bfda771-eb8d-461c-8d3f-47b6e2fe3e7a_poly_0_">
                      <gml:posList srsDimension="3">568339.229 5517142.156 199.160 568338.582 5517137.527 199.160 568328.550 5517138.871 199.160 568329.044 5517143.488 199.160 568329.109 5517144.100 199.160 568329.272 5517145.625 199.160 568329.543 5517148.124 199.160 568329.669 5517148.107 199.160 568339.875 5517146.772 199.160 568339.229 5517142.156 199.160</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_604945_f9ee8ec3-a41a-4f65-a3cb-8e78abee8cea">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_79388a3f-77e6-4ada-9c8a-2b1b2206b90f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604945_f9ee8ec3-a41a-4f65-a3cb-8e78abee8cea_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604945_f9ee8ec3-a41a-4f65-a3cb-8e78abee8cea_poly_0_">
                      <gml:posList srsDimension="3">568329.669 5517148.107 206.862 568339.875 5517146.772 206.862 568339.875 5517146.772 199.160 568329.669 5517148.107 199.160 568329.543 5517148.124 199.160 568329.543 5517148.124 206.862 568329.669 5517148.107 206.862</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_604945_ad666399-fa4e-437b-82ba-df80053f5912">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_390297ca-1a63-46d4-9479-ce269d26ad20">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604945_ad666399-fa4e-437b-82ba-df80053f5912_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604945_ad666399-fa4e-437b-82ba-df80053f5912_poly_0_">
                      <gml:posList srsDimension="3">568338.582 5517137.527 199.160 568338.582 5517137.527 206.853 568328.550 5517138.871 206.874 568328.550 5517138.871 199.160 568338.582 5517137.527 199.160</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1962</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember><core:cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_604943">
      <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_604943</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>DEBYvAAAAAA9od8k</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.733</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_1386e31c-dade-4d86-bd1a-af2c4b5f0bb4">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_acfb7cb2-ad42-4d68-93aa-693e4023a7b4">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604943_ed87a315-f30e-48a1-ae37-a2a482402b83_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604943_d3c07be6-7694-461a-80d8-f74ba9f49948_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604943_c5643085-a85c-4aa9-b624-6a0661d4e56c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604943_aef6ec1e-9d73-4260-a092-5d44c30c1f1b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604943_aa324864-6c38-48c6-9789-3c7c89588925_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604943_4bcbc25a-930b-49f9-8696-70bbfecc0bbd_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604943_27db30b5-88e0-4a13-928e-8151f7e8aa09_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604943_14183821-5fd9-4bb9-a86f-8601e8214af2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604943_0450e547-32e5-440f-8afe-88e5016be3b6_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_604943_aa324864-6c38-48c6-9789-3c7c89588925">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c365dc48-e0c7-486d-867f-11ed050cb6a9">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604943_aa324864-6c38-48c6-9789-3c7c89588925_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604943_aa324864-6c38-48c6-9789-3c7c89588925_poly_0_">
                      <gml:posList srsDimension="3">568328.550 5517138.871 198.800 568328.550 5517138.871 211.102 568328.291 5517136.332 209.375 568328.291 5517136.332 198.800 568328.550 5517138.871 198.800</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_604943_27db30b5-88e0-4a13-928e-8151f7e8aa09">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4aecdb6f-21fe-4e34-b20f-319de8210d92">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604943_27db30b5-88e0-4a13-928e-8151f7e8aa09_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604943_27db30b5-88e0-4a13-928e-8151f7e8aa09_poly_0_">
                      <gml:posList srsDimension="3">568316.647 5517147.299 198.800 568316.647 5517147.299 209.381 568329.272 5517145.625 209.368 568329.272 5517145.625 198.800 568316.647 5517147.299 198.800</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_604943_d3c07be6-7694-461a-80d8-f74ba9f49948">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b85b1a39-a7ff-4490-9e55-dc7884990d3a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604943_d3c07be6-7694-461a-80d8-f74ba9f49948_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604943_d3c07be6-7694-461a-80d8-f74ba9f49948_poly_0_">
                      <gml:posList srsDimension="3">568315.435 5517138.055 209.375 568318.731 5517137.616 209.377 568328.291 5517136.332 209.375 568328.550 5517138.871 211.102 568328.774 5517140.974 212.533 568316.011 5517142.685 212.533 568315.640 5517139.993 210.693 568315.374 5517138.063 209.375 568315.435 5517138.055 209.375</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_604943_0450e547-32e5-440f-8afe-88e5016be3b6">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_aa8214b5-6169-4c8c-b46c-1f4bf5af7d18">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604943_0450e547-32e5-440f-8afe-88e5016be3b6_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604943_0450e547-32e5-440f-8afe-88e5016be3b6_poly_0_">
                      <gml:posList srsDimension="3">568328.550 5517138.871 211.102 568328.550 5517138.871 198.800 568328.774 5517140.974 198.800 568329.272 5517145.625 198.800 568329.272 5517145.625 209.368 568328.774 5517140.974 212.533 568328.550 5517138.871 211.102</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_604943_aef6ec1e-9d73-4260-a092-5d44c30c1f1b">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_25eb7a91-866b-43f4-a444-f6a3f1188114">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604943_aef6ec1e-9d73-4260-a092-5d44c30c1f1b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604943_aef6ec1e-9d73-4260-a092-5d44c30c1f1b_poly_0_">
                      <gml:posList srsDimension="3">568328.774 5517140.974 212.533 568329.272 5517145.625 209.368 568316.647 5517147.299 209.381 568316.011 5517142.685 212.533 568328.774 5517140.974 212.533</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_604943_ed87a315-f30e-48a1-ae37-a2a482402b83">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6f38ef0e-ca2b-4627-91a2-3b95e18d299d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604943_ed87a315-f30e-48a1-ae37-a2a482402b83_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604943_ed87a315-f30e-48a1-ae37-a2a482402b83_poly_0_">
                      <gml:posList srsDimension="3">568328.774 5517140.974 198.800 568328.550 5517138.871 198.800 568328.291 5517136.332 198.800 568318.731 5517137.616 198.800 568315.435 5517138.055 198.800 568315.374 5517138.063 198.800 568315.640 5517139.993 198.800 568316.011 5517142.685 198.800 568316.647 5517147.299 198.800 568329.272 5517145.625 198.800 568328.774 5517140.974 198.800</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_604943_4bcbc25a-930b-49f9-8696-70bbfecc0bbd">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ad38d5e3-abcd-4ef4-b966-8f181e2a2af0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604943_4bcbc25a-930b-49f9-8696-70bbfecc0bbd_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604943_4bcbc25a-930b-49f9-8696-70bbfecc0bbd_poly_0_">
                      <gml:posList srsDimension="3">568328.291 5517136.332 198.800 568328.291 5517136.332 209.375 568318.731 5517137.616 209.377 568318.731 5517137.616 198.800 568328.291 5517136.332 198.800</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_604943_14183821-5fd9-4bb9-a86f-8601e8214af2">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1f60659b-bb56-4e61-b70f-eb95132a3a56">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604943_14183821-5fd9-4bb9-a86f-8601e8214af2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604943_14183821-5fd9-4bb9-a86f-8601e8214af2_poly_0_">
                      <gml:posList srsDimension="3">568315.435 5517138.055 198.800 568318.731 5517137.616 198.800 568318.731 5517137.616 209.377 568315.435 5517138.055 209.375 568315.374 5517138.063 209.375 568315.374 5517138.063 198.800 568315.435 5517138.055 198.800</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_604943_c5643085-a85c-4aa9-b624-6a0661d4e56c">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_beb5f8c9-36e2-466a-ad9d-25684183a094">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604943_c5643085-a85c-4aa9-b624-6a0661d4e56c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604943_c5643085-a85c-4aa9-b624-6a0661d4e56c_poly_0_">
                      <gml:posList srsDimension="3">568315.374 5517138.063 209.375 568315.640 5517139.993 210.693 568316.011 5517142.685 212.533 568316.647 5517147.299 209.381 568316.647 5517147.299 198.800 568316.011 5517142.685 198.800 568315.640 5517139.993 198.800 568315.374 5517138.063 198.800 568315.374 5517138.063 209.375</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1950</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember><core:cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_604944">
      <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_604944</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>DEBYvAAAAAA9od7m</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>1000</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">3.155</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_ea2eeadb-4d87-43af-b341-e8376e00147c">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_0d71b8a9-3dc2-4987-ab51-35d83d04b335">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604944_e318c85f-73e5-445e-9181-0bb1a707c8ee_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604944_91a0cc48-7333-466a-8100-461c6b9d668c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604944_8e6d4850-212f-47a4-a8e8-bbd31c6150fe_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604944_602b1ff6-daff-4f91-a0b3-f5ea55d6c969_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604944_346dd52a-15e1-4058-ac9f-c4f7a1222450_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604944_2bbc9f39-bf8a-4d49-a110-5c9c58c24e46_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604944_1ed91103-0ed8-4dc8-a0dc-13853241b2ec_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604944_1ae99b6f-03c9-444b-b6f2-382e7a8ca3d1_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604944_118fb3ea-c11a-4d78-936c-d5c68f42d2b4_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_604944_1ae99b6f-03c9-444b-b6f2-382e7a8ca3d1">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ff1433d0-edb5-4c4a-8ce6-14a560517e0a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604944_1ae99b6f-03c9-444b-b6f2-382e7a8ca3d1_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604944_1ae99b6f-03c9-444b-b6f2-382e7a8ca3d1_poly_0_">
                      <gml:posList srsDimension="3">568324.688 5517125.887 196.650 568325.018 5517128.417 196.650 568325.025 5517128.468 196.650 568325.025 5517128.468 199.805 568325.018 5517128.417 199.805 568324.688 5517125.887 199.805 568324.688 5517125.887 196.650</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_604944_e318c85f-73e5-445e-9181-0bb1a707c8ee">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6c25f22f-c346-4d4f-91b2-ad98b299367d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604944_e318c85f-73e5-445e-9181-0bb1a707c8ee_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604944_e318c85f-73e5-445e-9181-0bb1a707c8ee_poly_0_">
                      <gml:posList srsDimension="3">568324.688 5517125.887 196.650 568324.688 5517125.887 199.805 568317.289 5517126.894 199.805 568317.289 5517126.894 196.650 568324.688 5517125.887 196.650</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_604944_8e6d4850-212f-47a4-a8e8-bbd31c6150fe">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_cae2c01d-42fd-4fb0-934c-bd04471c9bdf">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604944_8e6d4850-212f-47a4-a8e8-bbd31c6150fe_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604944_8e6d4850-212f-47a4-a8e8-bbd31c6150fe_poly_0_">
                      <gml:posList srsDimension="3">568325.061 5517128.464 196.650 568328.694 5517127.984 196.650 568328.694 5517127.984 199.805 568325.061 5517128.464 199.805 568325.025 5517128.468 199.805 568325.025 5517128.468 196.650 568325.061 5517128.464 196.650</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_604944_91a0cc48-7333-466a-8100-461c6b9d668c">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_12c12d37-a6f3-4084-bcf4-0b54190e3c61">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604944_91a0cc48-7333-466a-8100-461c6b9d668c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604944_91a0cc48-7333-466a-8100-461c6b9d668c_poly_0_">
                      <gml:posList srsDimension="3">568329.758 5517136.140 196.650 568329.758 5517136.140 199.805 568328.694 5517127.984 199.805 568328.694 5517127.984 196.650 568329.758 5517136.140 196.650</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_604944_2bbc9f39-bf8a-4d49-a110-5c9c58c24e46">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e80c30d6-e90f-460b-aa02-4e4bef035c1d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604944_2bbc9f39-bf8a-4d49-a110-5c9c58c24e46_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604944_2bbc9f39-bf8a-4d49-a110-5c9c58c24e46_poly_0_">
                      <gml:posList srsDimension="3">568328.291 5517136.332 196.650 568328.291 5517136.332 199.805 568329.758 5517136.140 199.805 568329.758 5517136.140 196.650 568328.291 5517136.332 196.650</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_604944_118fb3ea-c11a-4d78-936c-d5c68f42d2b4">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9a3b78d9-4391-4e47-b62a-6c98d3d8cc7e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604944_118fb3ea-c11a-4d78-936c-d5c68f42d2b4_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604944_118fb3ea-c11a-4d78-936c-d5c68f42d2b4_poly_0_">
                      <gml:posList srsDimension="3">568324.688 5517125.887 199.805 568325.018 5517128.417 199.805 568325.025 5517128.468 199.805 568325.061 5517128.464 199.805 568328.694 5517127.984 199.805 568329.758 5517136.140 199.805 568328.291 5517136.332 199.805 568326.158 5517136.618 199.805 568318.731 5517137.616 199.805 568317.626 5517129.405 199.805 568317.289 5517126.894 199.805 568324.688 5517125.887 199.805</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_604944_1ed91103-0ed8-4dc8-a0dc-13853241b2ec">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b01fcaf0-ce41-4308-a7ca-3e78af12ca20">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604944_1ed91103-0ed8-4dc8-a0dc-13853241b2ec_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604944_1ed91103-0ed8-4dc8-a0dc-13853241b2ec_poly_0_">
                      <gml:posList srsDimension="3">568326.158 5517136.618 199.805 568328.291 5517136.332 199.805 568328.291 5517136.332 196.650 568326.158 5517136.618 196.650 568318.731 5517137.616 196.650 568318.731 5517137.616 199.805 568326.158 5517136.618 199.805</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_604944_602b1ff6-daff-4f91-a0b3-f5ea55d6c969">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1564e06e-8219-498a-a4cb-b58cfce2c873">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604944_602b1ff6-daff-4f91-a0b3-f5ea55d6c969_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604944_602b1ff6-daff-4f91-a0b3-f5ea55d6c969_poly_0_">
                      <gml:posList srsDimension="3">568317.289 5517126.894 199.805 568317.626 5517129.405 199.805 568318.731 5517137.616 199.805 568318.731 5517137.616 196.650 568317.626 5517129.405 196.650 568317.289 5517126.894 196.650 568317.289 5517126.894 199.805</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_604944_346dd52a-15e1-4058-ac9f-c4f7a1222450">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8601ab15-2627-4455-a084-6a8fc73432eb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604944_346dd52a-15e1-4058-ac9f-c4f7a1222450_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604944_346dd52a-15e1-4058-ac9f-c4f7a1222450_poly_0_">
                      <gml:posList srsDimension="3">568328.694 5517127.984 196.650 568325.061 5517128.464 196.650 568325.025 5517128.468 196.650 568325.018 5517128.417 196.650 568324.688 5517125.887 196.650 568317.289 5517126.894 196.650 568317.626 5517129.405 196.650 568318.731 5517137.616 196.650 568326.158 5517136.618 196.650 568328.291 5517136.332 196.650 568329.758 5517136.140 196.650 568328.694 5517127.984 196.650</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1907</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember><core:cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_604946">
      <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_604946</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>DEBYvAAAAAA9oeBs</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">12.375</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_f59019d9-5137-4372-8e89-3427587120b8">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_f4f20ac1-f815-4b7f-abc1-0944bc7fcefb">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604946_bfb3c514-d669-47f1-b940-7c7f01b53c95_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604946_b8c0e78a-6682-42c7-aade-b92c15353e01_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604946_9ac725d1-808e-4cbe-ad18-a41a2075b64a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604946_9a8396ce-92e5-469c-914d-82c5a2b11c01_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604946_58ae09b3-8fcc-4e6c-9f6d-7250d94b315e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604946_287e7ec6-1744-4c0a-9740-e57cc61d86b2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604946_01e26bd8-653d-4a49-bf5a-e0a154173232_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="DEBY_LOD2_604946_bfb3c514-d669-47f1-b940-7c7f01b53c95">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b89d935b-4eea-4913-bba2-de5834fb61ae">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604946_bfb3c514-d669-47f1-b940-7c7f01b53c95_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604946_bfb3c514-d669-47f1-b940-7c7f01b53c95_poly_0_">
                      <gml:posList srsDimension="3">568319.507 5517168.379 200.250 568319.171 5517165.624 200.250 568318.943 5517163.761 200.250 568318.919 5517163.764 200.250 568305.999 5517165.412 200.250 568306.622 5517170.023 200.250 568307.249 5517174.665 200.250 568320.066 5517172.958 200.250 568319.507 5517168.379 200.250</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_604946_287e7ec6-1744-4c0a-9740-e57cc61d86b2">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_29ce7769-3885-40fd-856e-3ce67d1522bc">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604946_287e7ec6-1744-4c0a-9740-e57cc61d86b2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604946_287e7ec6-1744-4c0a-9740-e57cc61d86b2_poly_0_">
                      <gml:posList srsDimension="3">568305.999 5517165.412 209.578 568306.622 5517170.023 212.625 568307.249 5517174.665 209.558 568307.249 5517174.665 200.250 568306.622 5517170.023 200.250 568305.999 5517165.412 200.250 568305.999 5517165.412 209.578</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_604946_58ae09b3-8fcc-4e6c-9f6d-7250d94b315e">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a055bb66-1998-4467-b765-ea935253b7b8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604946_58ae09b3-8fcc-4e6c-9f6d-7250d94b315e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604946_58ae09b3-8fcc-4e6c-9f6d-7250d94b315e_poly_0_">
                      <gml:posList srsDimension="3">568319.507 5517168.379 212.625 568320.066 5517172.958 209.604 568307.249 5517174.665 209.558 568306.622 5517170.023 212.625 568319.507 5517168.379 212.625</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_604946_9ac725d1-808e-4cbe-ad18-a41a2075b64a">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_77cd024f-3bf6-4a5c-a033-564192e73896">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604946_9ac725d1-808e-4cbe-ad18-a41a2075b64a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604946_9ac725d1-808e-4cbe-ad18-a41a2075b64a_poly_0_">
                      <gml:posList srsDimension="3">568307.249 5517174.665 200.250 568307.249 5517174.665 209.558 568320.066 5517172.958 209.604 568320.066 5517172.958 200.250 568307.249 5517174.665 200.250</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_604946_9a8396ce-92e5-469c-914d-82c5a2b11c01">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_26e0a44d-6b80-4959-bec0-8174fc36c8df">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604946_9a8396ce-92e5-469c-914d-82c5a2b11c01_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604946_9a8396ce-92e5-469c-914d-82c5a2b11c01_poly_0_">
                      <gml:posList srsDimension="3">568318.919 5517163.764 209.578 568318.943 5517163.761 209.578 568319.171 5517165.624 210.809 568319.507 5517168.379 212.625 568306.622 5517170.023 212.625 568305.999 5517165.412 209.578 568318.919 5517163.764 209.578</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_604946_01e26bd8-653d-4a49-bf5a-e0a154173232">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a5f5137f-a641-48db-9d5f-f5b7304c0170">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604946_01e26bd8-653d-4a49-bf5a-e0a154173232_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604946_01e26bd8-653d-4a49-bf5a-e0a154173232_poly_0_">
                      <gml:posList srsDimension="3">568319.171 5517165.624 210.809 568318.943 5517163.761 209.578 568318.943 5517163.761 200.250 568319.171 5517165.624 200.250 568319.507 5517168.379 200.250 568320.066 5517172.958 200.250 568320.066 5517172.958 209.604 568319.507 5517168.379 212.625 568319.171 5517165.624 210.809</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_604946_b8c0e78a-6682-42c7-aade-b92c15353e01">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1736c423-4e2e-4826-850f-3ede751fe310">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604946_b8c0e78a-6682-42c7-aade-b92c15353e01_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604946_b8c0e78a-6682-42c7-aade-b92c15353e01_poly_0_">
                      <gml:posList srsDimension="3">568318.919 5517163.764 200.250 568318.943 5517163.761 200.250 568318.943 5517163.761 209.578 568318.919 5517163.764 209.578 568305.999 5517165.412 209.578 568305.999 5517165.412 200.250 568318.919 5517163.764 200.250</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1972</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember><core:cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_604948">
      <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_604948</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>DEBYvAAAAAA9oeDW</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">9.934</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_3c64f0ff-7d5a-478d-9b6b-8f1e9ea1017e">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_f1cff8b6-9552-4a01-a9a4-193c274c9e6f">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604948_eb3b2ee3-c967-4ae7-bc45-5fedb6924384_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604948_ea75e66c-25a4-4bea-9861-73b62e3364fe_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604948_ce545cbc-8808-4ffd-a25b-62e5c4fda293_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604948_c0500430-4b1e-4af1-907c-7e6ff5018801_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604948_bda42dc6-6858-465e-81fd-db29c402c1d8_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604948_59699bd6-f7c8-4514-8fa3-8531fbfdd40d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604948_2fc2de1a-0f28-4b35-935b-ed6fd2ea7a2a_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604948_2e485830-4eef-4fc0-9098-2fa13c69ff89_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_604948_bda42dc6-6858-465e-81fd-db29c402c1d8">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fcf66056-0002-4cee-af4a-9b9c6b255f31">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604948_bda42dc6-6858-465e-81fd-db29c402c1d8_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604948_bda42dc6-6858-465e-81fd-db29c402c1d8_poly_0_">
                      <gml:posList srsDimension="3">568331.253 5517159.671 200.090 568341.490 5517158.229 200.090 568341.490 5517158.229 206.962 568331.253 5517159.671 206.962 568331.194 5517159.680 206.962 568331.194 5517159.680 200.090 568331.253 5517159.671 200.090</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_604948_2fc2de1a-0f28-4b35-935b-ed6fd2ea7a2a">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_92c9e5fd-f5f7-4b68-ba4b-47e56027adeb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604948_2fc2de1a-0f28-4b35-935b-ed6fd2ea7a2a_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604948_2fc2de1a-0f28-4b35-935b-ed6fd2ea7a2a_poly_0_">
                      <gml:posList srsDimension="3">568331.596 5517162.144 208.618 568331.934 5517164.237 210.024 568332.662 5517168.765 206.984 568332.662 5517168.765 200.090 568331.934 5517164.237 200.090 568331.596 5517162.144 200.090 568331.596 5517162.144 208.618</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_604948_ce545cbc-8808-4ffd-a25b-62e5c4fda293">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_bedb8062-1756-4671-b9b5-0da66ee10235">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604948_ce545cbc-8808-4ffd-a25b-62e5c4fda293_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604948_ce545cbc-8808-4ffd-a25b-62e5c4fda293_poly_0_">
                      <gml:posList srsDimension="3">568342.090 5517162.806 200.090 568341.490 5517158.229 200.090 568331.253 5517159.671 200.090 568331.194 5517159.680 200.090 568331.500 5517161.559 200.090 568331.596 5517162.144 200.090 568331.934 5517164.237 200.090 568332.662 5517168.765 200.090 568342.695 5517167.434 200.090 568342.090 5517162.806 200.090</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_604948_eb3b2ee3-c967-4ae7-bc45-5fedb6924384">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_76713cf1-0191-449c-b101-cf696f1714e0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604948_eb3b2ee3-c967-4ae7-bc45-5fedb6924384_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604948_eb3b2ee3-c967-4ae7-bc45-5fedb6924384_poly_0_">
                      <gml:posList srsDimension="3">568341.490 5517158.229 206.962 568341.490 5517158.229 200.090 568342.090 5517162.806 200.090 568342.695 5517167.434 200.090 568342.695 5517167.434 206.930 568342.090 5517162.806 210.024 568341.490 5517158.229 206.962</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_604948_ea75e66c-25a4-4bea-9861-73b62e3364fe">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_426bc6fe-779d-4f5f-997a-57bb3b425e2d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604948_ea75e66c-25a4-4bea-9861-73b62e3364fe_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604948_ea75e66c-25a4-4bea-9861-73b62e3364fe_poly_0_">
                      <gml:posList srsDimension="3">568332.662 5517168.765 200.090 568332.662 5517168.765 206.984 568342.695 5517167.434 206.930 568342.695 5517167.434 200.090 568332.662 5517168.765 200.090</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_604948_2e485830-4eef-4fc0-9098-2fa13c69ff89">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_15d96ee4-a93a-46b2-916c-7b70ac8442d5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604948_2e485830-4eef-4fc0-9098-2fa13c69ff89_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604948_2e485830-4eef-4fc0-9098-2fa13c69ff89_poly_0_">
                      <gml:posList srsDimension="3">568331.253 5517159.671 206.962 568341.490 5517158.229 206.962 568342.090 5517162.806 210.024 568331.934 5517164.237 210.024 568331.596 5517162.144 208.618 568331.500 5517161.559 208.225 568331.194 5517159.680 206.962 568331.253 5517159.671 206.962</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_604948_c0500430-4b1e-4af1-907c-7e6ff5018801">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f8a4ed13-fe95-4ec1-93c9-233c2d06693b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604948_c0500430-4b1e-4af1-907c-7e6ff5018801_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604948_c0500430-4b1e-4af1-907c-7e6ff5018801_poly_0_">
                      <gml:posList srsDimension="3">568342.090 5517162.806 210.024 568342.695 5517167.434 206.930 568332.662 5517168.765 206.984 568331.934 5517164.237 210.024 568342.090 5517162.806 210.024</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_604948_59699bd6-f7c8-4514-8fa3-8531fbfdd40d">
          <core:creationDate>2013-06-25</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a78beb6a-61c6-4cba-a1fa-835f78f92ae3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_604948_59699bd6-f7c8-4514-8fa3-8531fbfdd40d_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_604948_59699bd6-f7c8-4514-8fa3-8531fbfdd40d_poly_0_">
                      <gml:posList srsDimension="3">568331.194 5517159.680 206.962 568331.500 5517161.559 208.225 568331.596 5517162.144 208.618 568331.596 5517162.144 200.090 568331.500 5517161.559 200.090 568331.194 5517159.680 200.090 568331.194 5517159.680 206.962</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1979</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember><core:cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_604947">
      <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_604947</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>DEBYvAAAAAA9oeD3</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">12.379</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_3b604774-b97b-4133-9517-3d56b92a9b79">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_80fcd81a-ec47-4fa8-857b-34daab133f81">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604947_dd61d39f-a364-484b-b6a4-e61f90553635_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604947_d2633873-b408-40dd-a3da-e6892c3f3eac_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604947_984a8366-3e19-4738-819b-d2563e0dc4b7_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604947_9632aeed-758d-4bd0-9448-f13de1c2c276_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604947_8225d2ed-6365-4f8a-8141-c8fcaebc3402_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604947_71fd493f-a6c6-4d8e-8e39-84e7d46b678f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604947_63b82236-3862-47a4-b8c9-2aa79152c102_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_604947_12eed3c8-fad9-4ca2-aa8f-71507be19165_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
For faster browsing, not all history is shown. View entire blame