Grafenbühl.gml 9.36 MB
Newer Older
Ehlers's avatar
Ehlers committed
28001
28002
28003
28004
28005
28006
28007
28008
28009
28010
28011
28012
28013
28014
28015
28016
28017
28018
28019
28020
28021
28022
28023
28024
28025
28026
28027
28028
28029
28030
28031
28032
28033
28034
28035
28036
28037
28038
28039
28040
28041
28042
28043
28044
28045
28046
28047
28048
28049
28050
28051
28052
28053
28054
28055
28056
28057
28058
28059
28060
28061
28062
28063
28064
28065
28066
28067
28068
28069
28070
28071
28072
28073
28074
28075
28076
28077
28078
28079
28080
28081
28082
28083
28084
28085
28086
28087
28088
28089
28090
28091
28092
28093
28094
28095
28096
28097
28098
28099
28100
28101
28102
28103
28104
28105
28106
28107
28108
28109
28110
28111
28112
28113
28114
28115
28116
28117
28118
28119
28120
28121
28122
28123
28124
28125
28126
28127
28128
28129
28130
28131
28132
28133
28134
28135
28136
28137
28138
28139
28140
28141
28142
28143
28144
28145
28146
28147
28148
28149
28150
28151
28152
28153
28154
28155
28156
28157
28158
28159
28160
28161
28162
28163
28164
28165
28166
28167
28168
28169
28170
28171
28172
28173
28174
28175
28176
28177
28178
28179
28180
28181
28182
28183
28184
28185
28186
28187
28188
28189
28190
28191
28192
28193
28194
28195
28196
28197
28198
28199
28200
28201
28202
28203
28204
28205
28206
28207
28208
28209
28210
28211
28212
28213
28214
28215
28216
28217
28218
28219
28220
28221
28222
28223
28224
28225
28226
28227
28228
28229
28230
28231
28232
28233
28234
28235
28236
28237
28238
28239
28240
28241
28242
28243
28244
28245
28246
28247
28248
28249
28250
28251
28252
28253
28254
28255
28256
28257
28258
28259
28260
28261
28262
28263
28264
28265
28266
28267
28268
28269
28270
28271
28272
28273
28274
28275
28276
28277
28278
28279
28280
28281
28282
28283
28284
28285
28286
28287
28288
28289
28290
28291
28292
28293
28294
28295
28296
28297
28298
28299
28300
28301
28302
28303
28304
28305
28306
28307
28308
28309
28310
28311
28312
28313
28314
28315
28316
28317
28318
28319
28320
28321
28322
28323
28324
28325
28326
28327
28328
28329
28330
28331
28332
28333
28334
28335
28336
28337
28338
28339
28340
28341
28342
28343
28344
28345
28346
28347
28348
28349
28350
28351
28352
28353
28354
28355
28356
28357
28358
28359
28360
28361
28362
28363
28364
28365
28366
28367
28368
28369
28370
28371
28372
28373
28374
28375
28376
28377
28378
28379
28380
28381
28382
28383
28384
28385
28386
28387
28388
28389
28390
28391
28392
28393
28394
28395
28396
28397
28398
28399
28400
28401
28402
28403
28404
28405
28406
28407
28408
28409
28410
28411
28412
28413
28414
28415
28416
28417
28418
28419
28420
28421
28422
28423
28424
28425
28426
28427
28428
28429
28430
28431
28432
28433
28434
28435
28436
28437
28438
28439
28440
28441
28442
28443
28444
28445
28446
28447
28448
28449
28450
28451
28452
28453
28454
28455
28456
28457
28458
28459
28460
28461
28462
28463
28464
28465
28466
28467
28468
28469
28470
28471
28472
28473
28474
28475
28476
28477
28478
28479
28480
28481
28482
28483
28484
28485
28486
28487
28488
28489
28490
28491
28492
28493
28494
28495
28496
28497
28498
28499
28500
28501
28502
28503
28504
28505
28506
28507
28508
28509
28510
28511
28512
28513
28514
28515
28516
28517
28518
28519
28520
28521
28522
28523
28524
28525
28526
28527
28528
28529
28530
28531
28532
28533
28534
28535
28536
28537
28538
28539
28540
28541
28542
28543
28544
28545
28546
28547
28548
28549
28550
28551
28552
28553
28554
28555
28556
28557
28558
28559
28560
28561
28562
28563
28564
28565
28566
28567
28568
28569
28570
28571
28572
28573
28574
28575
28576
28577
28578
28579
28580
28581
28582
28583
28584
28585
28586
28587
28588
28589
28590
28591
28592
28593
28594
28595
28596
28597
28598
28599
28600
28601
28602
28603
28604
28605
28606
28607
28608
28609
28610
28611
28612
28613
28614
28615
28616
28617
28618
28619
28620
28621
28622
28623
28624
28625
28626
28627
28628
28629
28630
28631
28632
28633
28634
28635
28636
28637
28638
28639
28640
28641
28642
28643
28644
28645
28646
28647
28648
28649
28650
28651
28652
28653
28654
28655
28656
28657
28658
28659
28660
28661
28662
28663
28664
28665
28666
28667
28668
28669
28670
28671
28672
28673
28674
28675
28676
28677
28678
28679
28680
28681
28682
28683
28684
28685
28686
28687
28688
28689
28690
28691
28692
28693
28694
28695
28696
28697
28698
28699
28700
28701
28702
28703
28704
28705
28706
28707
28708
28709
28710
28711
28712
28713
28714
28715
28716
28717
28718
28719
28720
28721
28722
28723
28724
28725
28726
28727
28728
28729
28730
28731
28732
28733
28734
28735
28736
28737
28738
28739
28740
28741
28742
28743
28744
28745
28746
28747
28748
28749
28750
28751
28752
28753
28754
28755
28756
28757
28758
28759
28760
28761
28762
28763
28764
28765
28766
28767
28768
28769
28770
28771
28772
28773
28774
28775
28776
28777
28778
28779
28780
28781
28782
28783
28784
28785
28786
28787
28788
28789
28790
28791
28792
28793
28794
28795
28796
28797
28798
28799
28800
28801
28802
28803
28804
28805
28806
28807
28808
28809
28810
28811
28812
28813
28814
28815
28816
28817
28818
28819
28820
28821
28822
28823
28824
28825
28826
28827
28828
28829
28830
28831
28832
28833
28834
28835
28836
28837
28838
28839
28840
28841
28842
28843
28844
28845
28846
28847
28848
28849
28850
28851
28852
28853
28854
28855
28856
28857
28858
28859
28860
28861
28862
28863
28864
28865
28866
28867
28868
28869
28870
28871
28872
28873
28874
28875
28876
28877
28878
28879
28880
28881
28882
28883
28884
28885
28886
28887
28888
28889
28890
28891
28892
28893
28894
28895
28896
28897
28898
28899
28900
28901
28902
28903
28904
28905
28906
28907
28908
28909
28910
28911
28912
28913
28914
28915
28916
28917
28918
28919
28920
28921
28922
28923
28924
28925
28926
28927
28928
28929
28930
28931
28932
28933
28934
28935
28936
28937
28938
28939
28940
28941
28942
28943
28944
28945
28946
28947
28948
28949
28950
28951
28952
28953
28954
28955
28956
28957
28958
28959
28960
28961
28962
28963
28964
28965
28966
28967
28968
28969
28970
28971
28972
28973
28974
28975
28976
28977
28978
28979
28980
28981
28982
28983
28984
28985
28986
28987
28988
28989
28990
28991
28992
28993
28994
28995
28996
28997
28998
28999
29000
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_963ce8c4-e7a0-4a94-9cd7-afdb30ad3210">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_cc930654-e4be-4c92-a0d4-3fc7a3f4a5fb">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_cc930654-e4be-4c92-a0d4-3fc7a3f4a5fb_0_">
                      <gml:posList srsDimension="3">511008.880 5417152.620 274.695 511008.860 5417151.630 274.695 511008.860 5417151.630 283.017 511008.880 5417152.620 283.515 511008.880 5417152.620 274.695</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="UUID_7ea2cd48-8a73-4b64-9acf-32b6dd91a2e2">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_29558f5b-5398-4b23-ae1e-e79d43df10df">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_ae98df58-6d81-41c7-b450-12178a472d23">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_ae98df58-6d81-41c7-b450-12178a472d23_0_">
                      <gml:posList srsDimension="3">511004.180 5417152.720 274.695 511004.160 5417151.720 274.695 511003.880 5417151.730 274.695 511003.974 5417157.201 274.695 511004.060 5417162.230 274.695 511022.600 5417161.890 274.695 511022.510 5417156.865 274.695 511022.410 5417151.340 274.695 511022.140 5417151.350 274.695 511022.160 5417152.350 274.695 511017.420 5417152.440 274.695 511017.400 5417151.450 274.695 511008.860 5417151.630 274.695 511008.880 5417152.620 274.695 511004.180 5417152.720 274.695</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_30af376d-3df0-4fe0-8290-360001b9a7ce">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c08643cb-1499-4bd6-8341-eedc24542d0c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_2e4bdcf3-00fd-4ed8-885b-a8dd4fce3c67">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_2e4bdcf3-00fd-4ed8-885b-a8dd4fce3c67_0_">
                      <gml:posList srsDimension="3">511017.400 5417151.450 282.997 511008.860 5417151.630 283.017 511008.860 5417151.630 274.695 511017.400 5417151.450 274.695 511017.400 5417151.450 282.997</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_be309f1d-de92-4f2c-91ea-c688fe83bd18">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_56371843-297b-4ac9-9e11-6402cc18fa60">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_748f39a4-7199-4a4a-afd6-dc154292da64">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_748f39a4-7199-4a4a-afd6-dc154292da64_0_">
                      <gml:posList srsDimension="3">511017.400 5417151.450 274.695 511017.420 5417152.440 274.695 511017.420 5417152.440 283.494 511017.400 5417151.450 282.997 511017.400 5417151.450 274.695</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1956</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember>
  <core:cityObjectMember>
    <bldg:Building gml:id="DEBW_0010000ZZDF">
      <core:creationDate>2019-01-27</core:creationDate>
      <core:externalReference>
        <core:informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</core:informationSystem>
        <core:externalObject>
          <core:name>DEBWL0010000ZZDF</core:name>
        </core:externalObject>
      </core:externalReference>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>08118003</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2020-03-23</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_2523</bldg:function>
      <bldg:roofType>9999</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">1.525</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_ba59d8dc-17dd-433c-b17f-810d29f44eb2">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_3fe8b364-af53-4fca-85b9-986cef127c81">
              <gml:surfaceMember xlink:href="#UUID_c4f769f3-2009-48ed-b91c-47aab4472464"/>
              <gml:surfaceMember xlink:href="#UUID_0704394b-4dfb-47e2-a012-923a1f7744d1"/>
              <gml:surfaceMember xlink:href="#UUID_364fd49d-71f7-45c6-b9c5-087da330f8a9"/>
              <gml:surfaceMember xlink:href="#UUID_7b42ea59-16f8-4a61-8b6b-ede29b682fbc"/>
              <gml:surfaceMember xlink:href="#UUID_ca5cd3f8-a6ff-41ee-a43b-d0f109294624"/>
              <gml:surfaceMember xlink:href="#UUID_c7a7ac13-fe68-4e39-976a-a78568ac635e"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="UUID_78869d05-14d1-4f37-94f5-5e86a0b8ed9c">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ea89354c-a1eb-493a-8430-5bea01390ce2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="UUID_c4f769f3-2009-48ed-b91c-47aab4472464">
                  <gml:exterior>
                    <gml:LinearRing gml:id="UUID_c4f769f3-2009-48ed-b91c-47aab4472464_0_">
                      <gml:posList srsDimension="3">510950.940 5417090.730 271.275 510953.120 5417090.800 271.275 510953.160 5417089.430 271.275 510951.010 5417089.350 271.275 510950.940 5417090.730 271.275</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="UUID_c26f5195-4037-4aed-a9e3-8953d08765bf">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_07553506-2fd0-4c34-9c1e-6f3effafbc05">
              <gml:surfaceMember>
                <gml:Polygon gml:id="UUID_364fd49d-71f7-45c6-b9c5-087da330f8a9">
                  <gml:exterior>
                    <gml:LinearRing gml:id="UUID_364fd49d-71f7-45c6-b9c5-087da330f8a9_0_">
                      <gml:posList srsDimension="3">510953.120 5417090.800 272.800 510950.940 5417090.730 272.800 510951.010 5417089.350 272.800 510953.160 5417089.430 272.800 510953.120 5417090.800 272.800</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_0ffa342b-4836-483b-bc69-17d2c1fd3bf6">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_15c21fb2-65a7-4785-8d1f-eac2c012f8e1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="UUID_c7a7ac13-fe68-4e39-976a-a78568ac635e">
                  <gml:exterior>
                    <gml:LinearRing gml:id="UUID_c7a7ac13-fe68-4e39-976a-a78568ac635e_0_">
                      <gml:posList srsDimension="3">510951.010 5417089.350 271.275 510953.160 5417089.430 271.275 510953.160 5417089.430 272.800 510951.010 5417089.350 272.800 510951.010 5417089.350 271.275</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_06387eed-65c5-46f3-8551-2a2071e66254">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b33b9ce4-e19b-4583-8d20-3ea627c9089c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="UUID_0704394b-4dfb-47e2-a012-923a1f7744d1">
                  <gml:exterior>
                    <gml:LinearRing gml:id="UUID_0704394b-4dfb-47e2-a012-923a1f7744d1_0_">
                      <gml:posList srsDimension="3">510953.160 5417089.430 272.800 510953.160 5417089.430 271.275 510953.120 5417090.800 271.275 510953.120 5417090.800 272.800 510953.160 5417089.430 272.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="UUID_6a96fffb-2f75-41f5-9f1e-1253c2b119b0">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_bd1d4c1c-2c05-4977-9d7c-a337d632601e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="UUID_7b42ea59-16f8-4a61-8b6b-ede29b682fbc">
                  <gml:exterior>
                    <gml:LinearRing gml:id="UUID_7b42ea59-16f8-4a61-8b6b-ede29b682fbc_0_">
                      <gml:posList srsDimension="3">510953.120 5417090.800 271.275 510950.940 5417090.730 271.275 510950.940 5417090.730 272.800 510953.120 5417090.800 272.800 510953.120 5417090.800 271.275</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_fa8e5545-5159-4c67-8e35-e95d98abcb94">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4fd6d018-6ddd-42c7-964a-8f1eeb8372dc">
              <gml:surfaceMember>
                <gml:Polygon gml:id="UUID_ca5cd3f8-a6ff-41ee-a43b-d0f109294624">
                  <gml:exterior>
                    <gml:LinearRing gml:id="UUID_ca5cd3f8-a6ff-41ee-a43b-d0f109294624_0_">
                      <gml:posList srsDimension="3">510951.010 5417089.350 271.275 510951.010 5417089.350 272.800 510950.940 5417090.730 272.800 510950.940 5417090.730 271.275 510951.010 5417089.350 271.275</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1948</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember>
  <core:cityObjectMember>
    <bldg:Building gml:id="DEBW_0010000ZZDE">
      <core:creationDate>2019-01-27</core:creationDate>
      <core:externalReference>
        <core:informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</core:informationSystem>
        <core:externalObject>
          <core:name>DEBWL0010000ZZDE</core:name>
        </core:externalObject>
      </core:externalReference>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>08118003</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2020-03-23</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_1010</bldg:function>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">10.268</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_1ff8b01a-6994-4eeb-926e-a8e6150636a2">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_a5eeae2a-b635-4b4d-ba71-f3be716662ea">
              <gml:surfaceMember xlink:href="#Srf_15fe1ef1-66fd-4913-8b81-c75f2e71f171"/>
              <gml:surfaceMember xlink:href="#Srf_d858ee1f-d734-40c4-a4a8-66d3ea165fe5"/>
              <gml:surfaceMember xlink:href="#Srf_8704b730-1db4-42a2-872f-f34dc53e8a43"/>
              <gml:surfaceMember xlink:href="#Srf_73d4e16f-bad2-4652-8708-720a8fa779ae"/>
              <gml:surfaceMember xlink:href="#Srf_8f82dcec-bba1-4489-acba-ab9d05e8d3b1"/>
              <gml:surfaceMember xlink:href="#Srf_0f7770ac-14de-4ac6-90ae-7ac66149ec6c"/>
              <gml:surfaceMember xlink:href="#Srf_de32cabd-8311-4878-a209-8dd3c4420d58"/>
              <gml:surfaceMember xlink:href="#Srf_a6d895c7-9f96-423d-aa90-3b37708dd032"/>
              <gml:surfaceMember xlink:href="#Srf_b7e85c3a-4033-47c1-a655-1f96f0dd10e1"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="UUID_29d74bc4-b02a-417e-a6cd-20a859641f51">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7cb7ca52-6ee1-4f38-8cbe-315012845859">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_b7e85c3a-4033-47c1-a655-1f96f0dd10e1">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_b7e85c3a-4033-47c1-a655-1f96f0dd10e1_0_">
                      <gml:posList srsDimension="3">510940.550 5417077.520 269.825 510945.104 5417080.653 269.825 510949.620 5417083.760 269.825 510953.200 5417078.590 269.825 510948.663 5417075.484 269.825 510944.100 5417072.360 269.825 510940.550 5417077.520 269.825</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_20e6dd36-f92b-4427-8119-8e1cfd5663b1">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_45a9d29c-7c14-451f-8b18-bb7298cf4608">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_8f82dcec-bba1-4489-acba-ab9d05e8d3b1">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_8f82dcec-bba1-4489-acba-ab9d05e8d3b1_0_">
                      <gml:posList srsDimension="3">510944.100 5417072.360 269.825 510948.663 5417075.484 269.825 510948.663 5417075.484 280.087 510944.100 5417072.360 276.229 510944.100 5417072.360 269.825</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_48feb80e-be9c-40ba-af5d-69791dc5c4dd">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8e65176e-07bf-48f2-b019-957a09a62539">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_0f7770ac-14de-4ac6-90ae-7ac66149ec6c">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_0f7770ac-14de-4ac6-90ae-7ac66149ec6c_0_">
                      <gml:posList srsDimension="3">510953.200 5417078.590 276.259 510948.663 5417075.484 280.087 510948.663 5417075.484 269.825 510953.200 5417078.590 269.825 510953.200 5417078.590 276.259</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_ed92a0cc-8fd9-4418-94c5-023f823c9041">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6f7c9807-d7e2-4d20-9db1-689325332dc4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_8704b730-1db4-42a2-872f-f34dc53e8a43">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_8704b730-1db4-42a2-872f-f34dc53e8a43_0_">
                      <gml:posList srsDimension="3">510949.620 5417083.760 276.277 510953.200 5417078.590 276.259 510953.200 5417078.590 269.825 510949.620 5417083.760 269.825 510949.620 5417083.760 276.277</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_fd11e4ee-c503-4aab-9615-7e879e1bcbcc">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c36eea57-6088-41aa-b4f1-29a448f0f065">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_73d4e16f-bad2-4652-8708-720a8fa779ae">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_73d4e16f-bad2-4652-8708-720a8fa779ae_0_">
                      <gml:posList srsDimension="3">510945.104 5417080.653 280.093 510949.620 5417083.760 276.277 510949.620 5417083.760 269.825 510945.104 5417080.653 269.825 510945.104 5417080.653 280.093</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="UUID_11d06252-6506-4217-9ce7-61fa7615f928">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_47a744f1-337c-48a8-b8bb-4d1b7238aacf">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_d858ee1f-d734-40c4-a4a8-66d3ea165fe5">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_d858ee1f-d734-40c4-a4a8-66d3ea165fe5_0_">
                      <gml:posList srsDimension="3">510945.104 5417080.653 280.093 510940.550 5417077.520 276.237 510944.100 5417072.360 276.229 510948.663 5417075.484 280.087 510945.104 5417080.653 280.093</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_6b2b5edb-0415-417a-8099-d707b59b37ca">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1c814c3c-b105-4fcd-9a73-f520797c4c4f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_a6d895c7-9f96-423d-aa90-3b37708dd032">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_a6d895c7-9f96-423d-aa90-3b37708dd032_0_">
                      <gml:posList srsDimension="3">510945.104 5417080.653 269.825 510940.550 5417077.520 269.825 510940.550 5417077.520 276.237 510945.104 5417080.653 280.093 510945.104 5417080.653 269.825</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_3045cf66-5d7b-4e48-b921-5e17b381fdb4">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_60fd2a95-3197-49a0-b7bb-ba4a031d4782">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_de32cabd-8311-4878-a209-8dd3c4420d58">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_de32cabd-8311-4878-a209-8dd3c4420d58_0_">
                      <gml:posList srsDimension="3">510944.100 5417072.360 276.229 510940.550 5417077.520 276.237 510940.550 5417077.520 269.825 510944.100 5417072.360 269.825 510944.100 5417072.360 276.229</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="UUID_4ea31cfc-78f3-42b9-b9b3-314449fc2849">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7e8741c5-32a0-4f33-a488-f519784ee795">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_15fe1ef1-66fd-4913-8b81-c75f2e71f171">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_15fe1ef1-66fd-4913-8b81-c75f2e71f171_0_">
                      <gml:posList srsDimension="3">510953.200 5417078.590 276.259 510949.620 5417083.760 276.277 510945.104 5417080.653 280.093 510948.663 5417075.484 280.087 510953.200 5417078.590 276.259</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1987</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember>
  <core:cityObjectMember>
    <bldg:Building gml:id="DEBW_0010000ZZDC">
      <core:creationDate>2019-01-27</core:creationDate>
      <core:externalReference>
        <core:informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</core:informationSystem>
        <core:externalObject>
          <core:name>DEBWL0010000ZZDC</core:name>
        </core:externalObject>
      </core:externalReference>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>08118003</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2020-03-23</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_1010</bldg:function>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">10.409</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_706550e7-11aa-4dd4-ad35-cd53eaee4295">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_5fe57ffa-73f8-4b07-afa7-b12530b595cd">
              <gml:surfaceMember xlink:href="#Srf_6c322a0c-a56d-4a2e-a425-293a0d010dfd"/>
              <gml:surfaceMember xlink:href="#Srf_6b815309-2275-4a61-9ef0-a265dbf52d98"/>
              <gml:surfaceMember xlink:href="#Srf_96640201-4549-45b1-894b-0873f54ce2cf"/>
              <gml:surfaceMember xlink:href="#Srf_7af570f7-3d98-4919-a245-cf43299be37a"/>
              <gml:surfaceMember xlink:href="#Srf_44f70c17-ae8b-4378-8657-7dda2ac6cdcf"/>
              <gml:surfaceMember xlink:href="#Srf_27d55403-30e4-4e01-9335-c2a01683b61c"/>
              <gml:surfaceMember xlink:href="#Srf_5595b9cb-a3f9-4105-b1ca-7782de13aba3"/>
              <gml:surfaceMember xlink:href="#Srf_bd3963ce-e57e-4955-97a3-c0fc1bfb063f"/>
              <gml:surfaceMember xlink:href="#Srf_214c6f58-8ec8-43bb-8eeb-34fe2e6c3be8"/>
              <gml:surfaceMember xlink:href="#Srf_e2157040-a6d5-4b9b-8593-3f3354d9e139"/>
              <gml:surfaceMember xlink:href="#Srf_f24f35f3-2e05-4d2f-aa3d-40837740ba29"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_4521a98e-f81a-4ea8-b87b-909528a7314b">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8b41e9f6-05d6-4d89-a493-2b9280c592fd">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_bd3963ce-e57e-4955-97a3-c0fc1bfb063f">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_bd3963ce-e57e-4955-97a3-c0fc1bfb063f_0_">
                      <gml:posList srsDimension="3">510939.030 5417084.080 269.825 510937.010 5417082.670 269.825 510937.010 5417082.670 276.371 510939.030 5417084.080 278.097 510939.030 5417084.080 269.825</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_e0198088-bb5e-4c3f-9ccc-3a591b922222">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a8d28e58-0ed6-467d-941c-f4c12a0e45be">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_7af570f7-3d98-4919-a245-cf43299be37a">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_7af570f7-3d98-4919-a245-cf43299be37a_0_">
                      <gml:posList srsDimension="3">510949.620 5417083.760 269.825 510946.090 5417088.910 269.825 510946.090 5417088.910 276.408 510949.620 5417083.760 276.413 510949.620 5417083.760 269.825</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_ac368a8e-0d1b-4cee-a2a8-a3c21ccb202a">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9a6c3d16-a438-42fe-a4f3-253045766e4d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_214c6f58-8ec8-43bb-8eeb-34fe2e6c3be8">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_214c6f58-8ec8-43bb-8eeb-34fe2e6c3be8_0_">
                      <gml:posList srsDimension="3">510940.550 5417077.520 276.369 510937.010 5417082.670 276.371 510937.010 5417082.670 269.825 510940.550 5417077.520 269.825 510940.550 5417077.520 276.369</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="UUID_01955508-245c-4b6d-a544-46d3c75819a1">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f108b312-db05-4cd1-8628-a9560effff2c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_f24f35f3-2e05-4d2f-aa3d-40837740ba29">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_f24f35f3-2e05-4d2f-aa3d-40837740ba29_0_">
                      <gml:posList srsDimension="3">510937.010 5417082.670 269.825 510939.030 5417084.080 269.825 510941.550 5417085.802 269.825 510943.990 5417087.470 269.825 510946.090 5417088.910 269.825 510949.620 5417083.760 269.825 510945.095 5417080.647 269.825 510940.550 5417077.520 269.825 510937.010 5417082.670 269.825</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="UUID_f6fceac4-b03b-4b86-86f6-ef2227a08abc">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ecd6cefb-dbbc-41ff-8940-c738488fba45">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_96640201-4549-45b1-894b-0873f54ce2cf">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_96640201-4549-45b1-894b-0873f54ce2cf_0_">
                      <gml:posList srsDimension="3">510939.030 5417084.080 278.097 510937.010 5417082.670 276.371 510940.550 5417077.520 276.369 510945.095 5417080.647 280.233 510941.550 5417085.802 280.234 510939.030 5417084.080 278.097</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_9258c1b6-3f67-4de6-b645-078a946b8502">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c3c097c0-bd7e-40a6-9596-2ca12f32b9ad">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_6c322a0c-a56d-4a2e-a425-293a0d010dfd">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_6c322a0c-a56d-4a2e-a425-293a0d010dfd_0_">
                      <gml:posList srsDimension="3">510943.990 5417087.470 278.179 510946.090 5417088.910 276.408 510946.090 5417088.910 269.825 510943.990 5417087.470 269.825 510943.990 5417087.470 278.179</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_a798d3fa-7093-4ae8-8ba8-dfe9501ecdd5">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3623b2cb-a1e3-442b-989e-c8f61b87f6d5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_27d55403-30e4-4e01-9335-c2a01683b61c">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_27d55403-30e4-4e01-9335-c2a01683b61c_0_">
                      <gml:posList srsDimension="3">510941.550 5417085.802 280.234 510943.990 5417087.470 278.179 510943.990 5417087.470 269.825 510941.550 5417085.802 269.825 510941.550 5417085.802 280.234</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="UUID_36f48ce0-a365-49c7-ac8d-e6b6171a8888">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3a50b3cc-48e8-4cfb-b0fe-f40207e8f03e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_6b815309-2275-4a61-9ef0-a265dbf52d98">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_6b815309-2275-4a61-9ef0-a265dbf52d98_0_">
                      <gml:posList srsDimension="3">510945.095 5417080.647 280.233 510949.620 5417083.760 276.413 510946.090 5417088.910 276.408 510943.990 5417087.470 278.179 510941.550 5417085.802 280.234 510945.095 5417080.647 280.233</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_347951a7-dc4c-459d-aaa5-3c6283330a5d">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_210f1d39-8d8e-4698-961f-db9177e53fcf">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_5595b9cb-a3f9-4105-b1ca-7782de13aba3">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_5595b9cb-a3f9-4105-b1ca-7782de13aba3_0_">
                      <gml:posList srsDimension="3">510941.550 5417085.802 269.825 510939.030 5417084.080 269.825 510939.030 5417084.080 278.097 510941.550 5417085.802 280.234 510941.550 5417085.802 269.825</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_13dd668c-486d-40f0-9e09-3041d30b411b">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_be389dde-8f01-4001-8a67-498e0dba4607">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_e2157040-a6d5-4b9b-8593-3f3354d9e139">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_e2157040-a6d5-4b9b-8593-3f3354d9e139_0_">
                      <gml:posList srsDimension="3">510940.550 5417077.520 269.825 510945.095 5417080.647 269.825 510945.095 5417080.647 280.233 510940.550 5417077.520 276.369 510940.550 5417077.520 269.825</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_5e4a3463-7cef-4678-a59c-960c47cd2608">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ee456d11-ab5e-4867-94cc-1f1f56a951ce">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_44f70c17-ae8b-4378-8657-7dda2ac6cdcf">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_44f70c17-ae8b-4378-8657-7dda2ac6cdcf_0_">
                      <gml:posList srsDimension="3">510949.620 5417083.760 276.413 510945.095 5417080.647 280.233 510945.095 5417080.647 269.825 510949.620 5417083.760 269.825 510949.620 5417083.760 276.413</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1915</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember>
  <core:cityObjectMember>
    <bldg:Building gml:id="DEBW_0010000ZZD2">
      <core:creationDate>2019-01-27</core:creationDate>
      <core:externalReference>
        <core:informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</core:informationSystem>
        <core:externalObject>
          <core:name>DEBWL0010000ZZD2</core:name>
        </core:externalObject>
      </core:externalReference>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>08118003</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2020-03-23</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_1010</bldg:function>
      <bldg:roofType>2100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">6.141</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_e5d2ff7b-64d4-4ab5-935f-767da77731f6">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_b8112c4a-b57f-462e-9e57-2236465ed72a">
              <gml:surfaceMember xlink:href="#Srf_4075fc17-cc80-4cbc-bfe3-5fbc14d51769"/>
              <gml:surfaceMember xlink:href="#Srf_47b3ec72-5a17-4e2a-9581-4b0027a5ec2e"/>
              <gml:surfaceMember xlink:href="#Srf_a9145898-1282-4ae9-a1be-7d206c57beba"/>
              <gml:surfaceMember xlink:href="#Srf_03dc2d9a-36f2-4b0a-a256-ca7044fa6745"/>
              <gml:surfaceMember xlink:href="#Srf_08c4ce9f-f9f7-432a-8e5b-4963a046d1d8"/>
              <gml:surfaceMember xlink:href="#Srf_b78dc3d6-1462-43fe-870e-347e058cf296"/>
              <gml:surfaceMember xlink:href="#Srf_e89fb6d3-f5b1-47c2-9edd-60cc78e8e103"/>
              <gml:surfaceMember xlink:href="#Srf_8153cbfc-a213-4243-bbc5-53481dc82472"/>
              <gml:surfaceMember xlink:href="#Srf_6561561d-3dd4-4e51-872e-d37c90d32db3"/>
              <gml:surfaceMember xlink:href="#Srf_c84e69e8-ac45-4bd1-a593-c091fb9a1437"/>
              <gml:surfaceMember xlink:href="#Srf_94c1263f-693f-48e3-8e04-0f0db9388f75"/>
              <gml:surfaceMember xlink:href="#Srf_3f89ab5a-f4e6-40ae-83a5-bb48fd3c2ea6"/>
              <gml:surfaceMember xlink:href="#Srf_6acb6b03-1ad2-4f98-8d5d-8ecfcf1ee2eb"/>
              <gml:surfaceMember xlink:href="#Srf_43d7089f-4dbe-48cb-903f-a7c717f08f18"/>
              <gml:surfaceMember xlink:href="#Srf_ae7a8510-50ba-4eb0-b2c0-f67ce3765fe4"/>
              <gml:surfaceMember xlink:href="#Srf_5128597e-0b0a-4036-a709-936d935a950e"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_c9713ad4-a0ab-4a23-a44a-17059bfb36ff">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5cc79a98-a3e3-4f33-be4b-f71153f55d9b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_6561561d-3dd4-4e51-872e-d37c90d32db3">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_6561561d-3dd4-4e51-872e-d37c90d32db3_0_">
                      <gml:posList srsDimension="3">510966.310 5417141.230 273.629 510971.290 5417141.110 273.629 510971.290 5417141.110 277.916 510966.310 5417141.230 277.916 510966.310 5417141.230 273.629</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_2a60077e-40b4-4ac5-8dcc-11d696d58e6a">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e17f876d-c766-4250-87a8-4cc5ea490ba1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_3f89ab5a-f4e6-40ae-83a5-bb48fd3c2ea6">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_3f89ab5a-f4e6-40ae-83a5-bb48fd3c2ea6_0_">
                      <gml:posList srsDimension="3">510971.290 5417141.110 273.629 510971.580 5417153.070 273.629 510971.580 5417153.070 279.770 510971.290 5417141.110 277.916 510971.290 5417141.110 273.629</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_15c9ff22-f892-42a9-ad49-8459d98c623b">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8c94e031-50e8-499f-b1e0-86eba5f62d9d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_b78dc3d6-1462-43fe-870e-347e058cf296">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_b78dc3d6-1462-43fe-870e-347e058cf296_0_">
                      <gml:posList srsDimension="3">510971.580 5417153.070 273.629 510966.570 5417153.190 273.629 510966.570 5417153.190 279.769 510971.580 5417153.070 279.770 510971.580 5417153.070 273.629</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_269c71b7-75c6-4850-950f-9ca70b2209d7">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_92e1a1c4-872c-469a-91b4-33e8973b08cd">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_47b3ec72-5a17-4e2a-9581-4b0027a5ec2e">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_47b3ec72-5a17-4e2a-9581-4b0027a5ec2e_0_">
                      <gml:posList srsDimension="3">510966.550 5417152.180 273.629 510966.550 5417152.180 279.613 510966.570 5417153.190 279.769 510966.570 5417153.190 273.629 510966.550 5417152.180 273.629</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_8e3d8020-da0b-4f8e-b9cf-3c6c02ae295f">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1fb5ec8e-6950-40a4-b411-7283fd96c921">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_a9145898-1282-4ae9-a1be-7d206c57beba">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_a9145898-1282-4ae9-a1be-7d206c57beba_0_">
                      <gml:posList srsDimension="3">510966.550 5417152.180 273.629 510954.590 5417152.470 273.629 510954.590 5417152.470 279.612 510966.550 5417152.180 279.613 510966.550 5417152.180 273.629</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="UUID_c66c5e9e-12a5-48ec-9b04-a23821e85168">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_204027df-2e8c-4de9-9776-9a3d461aed21">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_5128597e-0b0a-4036-a709-936d935a950e">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_5128597e-0b0a-4036-a709-936d935a950e_0_">
                      <gml:posList srsDimension="3">510958.330 5417143.000 278.160 510958.320 5417142.470 278.078 510959.060 5417142.440 278.076 510959.070 5417142.980 278.160 510966.350 5417142.810 278.161 510966.310 5417141.230 277.916 510971.290 5417141.110 277.916 510971.580 5417153.070 279.770 510966.570 5417153.190 279.769 510966.550 5417152.180 279.613 510954.590 5417152.470 279.612 510954.480 5417147.830 278.893 510956.150 5417147.790 278.894 510956.040 5417143.060 278.161 510958.330 5417143.000 278.160</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_7af59e88-686d-42a9-a6f1-7db19abe35d5">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2a992dd3-de9f-4047-8dc0-907b4980856f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_e89fb6d3-f5b1-47c2-9edd-60cc78e8e103">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_e89fb6d3-f5b1-47c2-9edd-60cc78e8e103_0_">
                      <gml:posList srsDimension="3">510954.590 5417152.470 273.629 510954.480 5417147.830 273.629 510954.480 5417147.830 278.893 510954.590 5417152.470 279.612 510954.590 5417152.470 273.629</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_0e8b62d0-505f-422b-bc9d-5d068797aaa5">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5650dae2-94d5-4472-aac1-86d3b18864df">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_03dc2d9a-36f2-4b0a-a256-ca7044fa6745">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_03dc2d9a-36f2-4b0a-a256-ca7044fa6745_0_">
                      <gml:posList srsDimension="3">510956.150 5417147.790 273.629 510956.040 5417143.060 273.629 510956.040 5417143.060 278.161 510956.150 5417147.790 278.894 510956.150 5417147.790 273.629</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_57b5cb3d-f815-493f-91fb-dd151779831c">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d0994a19-982c-4753-a3da-f5a29a4e8627">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_43d7089f-4dbe-48cb-903f-a7c717f08f18">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_43d7089f-4dbe-48cb-903f-a7c717f08f18_0_">
                      <gml:posList srsDimension="3">510958.330 5417143.000 278.160 510956.040 5417143.060 278.161 510956.040 5417143.060 273.629 510958.330 5417143.000 273.629 510958.330 5417143.000 278.160</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_f5b99b2e-e078-415e-b095-14153621b277">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_793033e7-85cf-4bfa-8215-56e06bedc6db">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_6acb6b03-1ad2-4f98-8d5d-8ecfcf1ee2eb">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_6acb6b03-1ad2-4f98-8d5d-8ecfcf1ee2eb_0_">
                      <gml:posList srsDimension="3">510954.480 5417147.830 273.629 510956.150 5417147.790 273.629 510956.150 5417147.790 278.894 510954.480 5417147.830 278.893 510954.480 5417147.830 273.629</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="UUID_5606aa8a-6cdc-4371-8db5-bd1c322737a3">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_51526297-5700-43e0-8b4e-8a9f636f0af7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_94c1263f-693f-48e3-8e04-0f0db9388f75">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_94c1263f-693f-48e3-8e04-0f0db9388f75_0_">
                      <gml:posList srsDimension="3">510958.320 5417142.470 273.629 510958.330 5417143.000 273.629 510956.040 5417143.060 273.629 510956.150 5417147.790 273.629 510954.480 5417147.830 273.629 510954.590 5417152.470 273.629 510966.550 5417152.180 273.629 510966.570 5417153.190 273.629 510971.580 5417153.070 273.629 510971.290 5417141.110 273.629 510966.310 5417141.230 273.629 510966.350 5417142.810 273.629 510959.070 5417142.980 273.629 510959.060 5417142.440 273.629 510958.320 5417142.470 273.629</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_942808b8-3033-44ca-b0fa-631e2c532604">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ae73836b-78e4-4005-9c9f-3800cd3cb41a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_08c4ce9f-f9f7-432a-8e5b-4963a046d1d8">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_08c4ce9f-f9f7-432a-8e5b-4963a046d1d8_0_">
                      <gml:posList srsDimension="3">510958.320 5417142.470 273.629 510958.320 5417142.470 278.078 510958.330 5417143.000 278.160 510958.330 5417143.000 273.629 510958.320 5417142.470 273.629</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_2b2acfed-c72f-4439-835f-c41ede5d6214">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d75bb376-47ca-4ae6-89cd-6decae5a66ea">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_c84e69e8-ac45-4bd1-a593-c091fb9a1437">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_c84e69e8-ac45-4bd1-a593-c091fb9a1437_0_">
                      <gml:posList srsDimension="3">510959.060 5417142.440 278.076 510958.320 5417142.470 278.078 510958.320 5417142.470 273.629 510959.060 5417142.440 273.629 510959.060 5417142.440 278.076</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_b4c3cc83-5627-46e2-849a-0ee941204e43">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9070185f-f376-4c5e-b574-e9739be8e983">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_8153cbfc-a213-4243-bbc5-53481dc82472">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_8153cbfc-a213-4243-bbc5-53481dc82472_0_">
                      <gml:posList srsDimension="3">510959.060 5417142.440 278.076 510959.060 5417142.440 273.629 510959.070 5417142.980 273.629 510959.070 5417142.980 278.160 510959.060 5417142.440 278.076</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_bf36fe98-ee16-44dd-af89-c3e2483181b1">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
For faster browsing, not all history is shown. View entire blame