Grafenbühl.gml 9.36 MB
Newer Older
Ehlers's avatar
Ehlers committed
38001
38002
38003
38004
38005
38006
38007
38008
38009
38010
38011
38012
38013
38014
38015
38016
38017
38018
38019
38020
38021
38022
38023
38024
38025
38026
38027
38028
38029
38030
38031
38032
38033
38034
38035
38036
38037
38038
38039
38040
38041
38042
38043
38044
38045
38046
38047
38048
38049
38050
38051
38052
38053
38054
38055
38056
38057
38058
38059
38060
38061
38062
38063
38064
38065
38066
38067
38068
38069
38070
38071
38072
38073
38074
38075
38076
38077
38078
38079
38080
38081
38082
38083
38084
38085
38086
38087
38088
38089
38090
38091
38092
38093
38094
38095
38096
38097
38098
38099
38100
38101
38102
38103
38104
38105
38106
38107
38108
38109
38110
38111
38112
38113
38114
38115
38116
38117
38118
38119
38120
38121
38122
38123
38124
38125
38126
38127
38128
38129
38130
38131
38132
38133
38134
38135
38136
38137
38138
38139
38140
38141
38142
38143
38144
38145
38146
38147
38148
38149
38150
38151
38152
38153
38154
38155
38156
38157
38158
38159
38160
38161
38162
38163
38164
38165
38166
38167
38168
38169
38170
38171
38172
38173
38174
38175
38176
38177
38178
38179
38180
38181
38182
38183
38184
38185
38186
38187
38188
38189
38190
38191
38192
38193
38194
38195
38196
38197
38198
38199
38200
38201
38202
38203
38204
38205
38206
38207
38208
38209
38210
38211
38212
38213
38214
38215
38216
38217
38218
38219
38220
38221
38222
38223
38224
38225
38226
38227
38228
38229
38230
38231
38232
38233
38234
38235
38236
38237
38238
38239
38240
38241
38242
38243
38244
38245
38246
38247
38248
38249
38250
38251
38252
38253
38254
38255
38256
38257
38258
38259
38260
38261
38262
38263
38264
38265
38266
38267
38268
38269
38270
38271
38272
38273
38274
38275
38276
38277
38278
38279
38280
38281
38282
38283
38284
38285
38286
38287
38288
38289
38290
38291
38292
38293
38294
38295
38296
38297
38298
38299
38300
38301
38302
38303
38304
38305
38306
38307
38308
38309
38310
38311
38312
38313
38314
38315
38316
38317
38318
38319
38320
38321
38322
38323
38324
38325
38326
38327
38328
38329
38330
38331
38332
38333
38334
38335
38336
38337
38338
38339
38340
38341
38342
38343
38344
38345
38346
38347
38348
38349
38350
38351
38352
38353
38354
38355
38356
38357
38358
38359
38360
38361
38362
38363
38364
38365
38366
38367
38368
38369
38370
38371
38372
38373
38374
38375
38376
38377
38378
38379
38380
38381
38382
38383
38384
38385
38386
38387
38388
38389
38390
38391
38392
38393
38394
38395
38396
38397
38398
38399
38400
38401
38402
38403
38404
38405
38406
38407
38408
38409
38410
38411
38412
38413
38414
38415
38416
38417
38418
38419
38420
38421
38422
38423
38424
38425
38426
38427
38428
38429
38430
38431
38432
38433
38434
38435
38436
38437
38438
38439
38440
38441
38442
38443
38444
38445
38446
38447
38448
38449
38450
38451
38452
38453
38454
38455
38456
38457
38458
38459
38460
38461
38462
38463
38464
38465
38466
38467
38468
38469
38470
38471
38472
38473
38474
38475
38476
38477
38478
38479
38480
38481
38482
38483
38484
38485
38486
38487
38488
38489
38490
38491
38492
38493
38494
38495
38496
38497
38498
38499
38500
38501
38502
38503
38504
38505
38506
38507
38508
38509
38510
38511
38512
38513
38514
38515
38516
38517
38518
38519
38520
38521
38522
38523
38524
38525
38526
38527
38528
38529
38530
38531
38532
38533
38534
38535
38536
38537
38538
38539
38540
38541
38542
38543
38544
38545
38546
38547
38548
38549
38550
38551
38552
38553
38554
38555
38556
38557
38558
38559
38560
38561
38562
38563
38564
38565
38566
38567
38568
38569
38570
38571
38572
38573
38574
38575
38576
38577
38578
38579
38580
38581
38582
38583
38584
38585
38586
38587
38588
38589
38590
38591
38592
38593
38594
38595
38596
38597
38598
38599
38600
38601
38602
38603
38604
38605
38606
38607
38608
38609
38610
38611
38612
38613
38614
38615
38616
38617
38618
38619
38620
38621
38622
38623
38624
38625
38626
38627
38628
38629
38630
38631
38632
38633
38634
38635
38636
38637
38638
38639
38640
38641
38642
38643
38644
38645
38646
38647
38648
38649
38650
38651
38652
38653
38654
38655
38656
38657
38658
38659
38660
38661
38662
38663
38664
38665
38666
38667
38668
38669
38670
38671
38672
38673
38674
38675
38676
38677
38678
38679
38680
38681
38682
38683
38684
38685
38686
38687
38688
38689
38690
38691
38692
38693
38694
38695
38696
38697
38698
38699
38700
38701
38702
38703
38704
38705
38706
38707
38708
38709
38710
38711
38712
38713
38714
38715
38716
38717
38718
38719
38720
38721
38722
38723
38724
38725
38726
38727
38728
38729
38730
38731
38732
38733
38734
38735
38736
38737
38738
38739
38740
38741
38742
38743
38744
38745
38746
38747
38748
38749
38750
38751
38752
38753
38754
38755
38756
38757
38758
38759
38760
38761
38762
38763
38764
38765
38766
38767
38768
38769
38770
38771
38772
38773
38774
38775
38776
38777
38778
38779
38780
38781
38782
38783
38784
38785
38786
38787
38788
38789
38790
38791
38792
38793
38794
38795
38796
38797
38798
38799
38800
38801
38802
38803
38804
38805
38806
38807
38808
38809
38810
38811
38812
38813
38814
38815
38816
38817
38818
38819
38820
38821
38822
38823
38824
38825
38826
38827
38828
38829
38830
38831
38832
38833
38834
38835
38836
38837
38838
38839
38840
38841
38842
38843
38844
38845
38846
38847
38848
38849
38850
38851
38852
38853
38854
38855
38856
38857
38858
38859
38860
38861
38862
38863
38864
38865
38866
38867
38868
38869
38870
38871
38872
38873
38874
38875
38876
38877
38878
38879
38880
38881
38882
38883
38884
38885
38886
38887
38888
38889
38890
38891
38892
38893
38894
38895
38896
38897
38898
38899
38900
38901
38902
38903
38904
38905
38906
38907
38908
38909
38910
38911
38912
38913
38914
38915
38916
38917
38918
38919
38920
38921
38922
38923
38924
38925
38926
38927
38928
38929
38930
38931
38932
38933
38934
38935
38936
38937
38938
38939
38940
38941
38942
38943
38944
38945
38946
38947
38948
38949
38950
38951
38952
38953
38954
38955
38956
38957
38958
38959
38960
38961
38962
38963
38964
38965
38966
38967
38968
38969
38970
38971
38972
38973
38974
38975
38976
38977
38978
38979
38980
38981
38982
38983
38984
38985
38986
38987
38988
38989
38990
38991
38992
38993
38994
38995
38996
38997
38998
38999
39000
      <core:externalReference>
        <core:informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</core:informationSystem>
        <core:externalObject>
          <core:name>DEBWL0010000ZZDd</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">9.959</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_e8dc0b4a-7a64-4557-a1f9-0cd560027c50">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_a87ce514-1e5f-416c-884b-9b82ce6fea60">
              <gml:surfaceMember xlink:href="#Srf_6aa441e7-884f-4d76-9a6d-0912ebdf852f"/>
              <gml:surfaceMember xlink:href="#Srf_2455961f-999a-4f3d-8cce-224ce90b1e21"/>
              <gml:surfaceMember xlink:href="#Srf_60d026d4-af6a-4cbc-ba8d-06a9e9b017a6"/>
              <gml:surfaceMember xlink:href="#Srf_b2166428-ea34-4714-a792-5d3bae573ac2"/>
              <gml:surfaceMember xlink:href="#Srf_f24ec6aa-1718-4e10-bb06-bfe4bcaa1357"/>
              <gml:surfaceMember xlink:href="#Srf_1016f529-9f66-4941-a452-8fa3cab7d1cb"/>
              <gml:surfaceMember xlink:href="#Srf_a86fbf02-bcca-4d04-b004-86d294581d13"/>
              <gml:surfaceMember xlink:href="#Srf_a3c73254-04c2-4412-9273-4d47c28ce8b7"/>
              <gml:surfaceMember xlink:href="#Srf_016ab220-a54b-41bf-9905-9d5b142890db"/>
              <gml:surfaceMember xlink:href="#Srf_88047e4f-0ffd-49eb-bae0-73e3111c8a54"/>
              <gml:surfaceMember xlink:href="#Srf_c6ab5b66-a82d-4a6e-b499-e561707a7fef"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="UUID_b9e8e861-33dd-4267-ae24-b7b75fc305b0">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6215fe82-18fd-482f-ae8f-445c1efbe581">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_60d026d4-af6a-4cbc-ba8d-06a9e9b017a6">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_60d026d4-af6a-4cbc-ba8d-06a9e9b017a6_0_">
                      <gml:posList srsDimension="3">511060.790 5417160.160 280.031 511060.734 5417154.967 283.588 511066.835 5417154.853 283.603 511066.920 5417160.090 280.015 511060.790 5417160.160 280.031</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="UUID_6bd4d93d-deb5-4cf3-b7d4-b7c67b4b68ae">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5d3f946a-83f0-4d01-9bdc-d1c962d80367">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_f24ec6aa-1718-4e10-bb06-bfe4bcaa1357">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_f24ec6aa-1718-4e10-bb06-bfe4bcaa1357_0_">
                      <gml:posList srsDimension="3">511060.960 5417150.260 273.644 511060.670 5417150.260 273.644 511060.730 5417154.570 273.644 511060.734 5417154.967 273.644 511060.790 5417160.160 273.644 511066.920 5417160.090 273.644 511066.835 5417154.853 273.644 511066.760 5417150.190 273.644 511060.960 5417150.260 273.644</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_7a833c75-3153-4b89-87b7-491b9843f6b4">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_086159f3-11b9-428c-a0c3-25cf4322ef9d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_a86fbf02-bcca-4d04-b004-86d294581d13">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_a86fbf02-bcca-4d04-b004-86d294581d13_0_">
                      <gml:posList srsDimension="3">511060.960 5417150.260 273.644 511066.760 5417150.190 273.644 511066.760 5417150.190 280.448 511060.960 5417150.260 280.408 511060.960 5417150.260 273.644</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_ac81e903-0ae8-4401-b434-509f62e40cf3">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_58e9d1bd-8dd2-4890-8135-622f6da7a9e5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_88047e4f-0ffd-49eb-bae0-73e3111c8a54">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_88047e4f-0ffd-49eb-bae0-73e3111c8a54_0_">
                      <gml:posList srsDimension="3">511066.760 5417150.190 273.644 511066.835 5417154.853 273.644 511066.835 5417154.853 283.603 511066.760 5417150.190 280.448 511066.760 5417150.190 273.644</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_4e6fbe71-c795-42b5-8458-8c0d79a3af0f">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ae5a8f5a-811b-440a-926f-81afd322cea4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_a3c73254-04c2-4412-9273-4d47c28ce8b7">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_a3c73254-04c2-4412-9273-4d47c28ce8b7_0_">
                      <gml:posList srsDimension="3">511066.920 5417160.090 280.015 511066.835 5417154.853 283.603 511066.835 5417154.853 273.644 511066.920 5417160.090 273.644 511066.920 5417160.090 280.015</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_b9b48360-67fd-4b2b-959b-d023ee28c244">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ff8382ac-b830-4984-b837-17383839217e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_1016f529-9f66-4941-a452-8fa3cab7d1cb">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_1016f529-9f66-4941-a452-8fa3cab7d1cb_0_">
                      <gml:posList srsDimension="3">511060.790 5417160.160 280.031 511066.920 5417160.090 280.015 511066.920 5417160.090 273.644 511060.790 5417160.160 273.644 511060.790 5417160.160 280.031</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_82dfd70a-e77a-493d-ba93-4cb451d74ef5">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_bbddf71a-9643-4f2e-bcee-240a92ac3807">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_6aa441e7-884f-4d76-9a6d-0912ebdf852f">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_6aa441e7-884f-4d76-9a6d-0912ebdf852f_0_">
                      <gml:posList srsDimension="3">511060.734 5417154.967 283.588 511060.790 5417160.160 280.031 511060.790 5417160.160 273.644 511060.734 5417154.967 273.644 511060.734 5417154.967 283.588</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_b8625fdc-0825-4190-8817-20a1dfe6eb3a">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_df71526f-57fc-4842-8d1a-9fa2561d257b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_b2166428-ea34-4714-a792-5d3bae573ac2">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_b2166428-ea34-4714-a792-5d3bae573ac2_0_">
                      <gml:posList srsDimension="3">511060.730 5417154.570 273.644 511060.730 5417154.570 283.320 511060.734 5417154.967 283.588 511060.734 5417154.967 273.644 511060.730 5417154.570 273.644</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_62fce50f-ba13-4abb-bb09-b2df4bc1fff0">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_92a28c93-3ee1-435e-a214-8a111b38245d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_2455961f-999a-4f3d-8cce-224ce90b1e21">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_2455961f-999a-4f3d-8cce-224ce90b1e21_0_">
                      <gml:posList srsDimension="3">511060.730 5417154.570 273.644 511060.670 5417150.260 273.644 511060.670 5417150.260 280.404 511060.730 5417154.570 283.320 511060.730 5417154.570 273.644</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_ac7ac45a-518c-4e27-871f-afc4bb61707f">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f978fb83-49c3-4d1b-af68-a654918e05d7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_016ab220-a54b-41bf-9905-9d5b142890db">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_016ab220-a54b-41bf-9905-9d5b142890db_0_">
                      <gml:posList srsDimension="3">511060.670 5417150.260 280.404 511060.960 5417150.260 280.408 511066.760 5417150.190 280.448 511066.835 5417154.853 283.603 511060.734 5417154.967 283.588 511060.730 5417154.570 283.320 511060.670 5417150.260 280.404</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_cd6cd19b-026f-429b-aaf7-7493d2063596">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a3b947f4-a4c1-4572-a6ab-6e82616081c5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_c6ab5b66-a82d-4a6e-b499-e561707a7fef">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_c6ab5b66-a82d-4a6e-b499-e561707a7fef_0_">
                      <gml:posList srsDimension="3">511060.670 5417150.260 273.644 511060.960 5417150.260 273.644 511060.960 5417150.260 280.408 511060.670 5417150.260 280.404 511060.670 5417150.260 273.644</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1925</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember>
  <core:cityObjectMember>
    <bldg:Building gml:id="DEBW_0010000ZZDs">
      <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>DEBWL0010000ZZDs</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.551</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_f50a3e18-6462-4851-b5fb-7a4a4381cde3">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_b8f56cb8-1019-4994-bd13-4b47e58e29bb">
              <gml:surfaceMember xlink:href="#Srf_9d701286-147f-4866-8592-d314a9333607"/>
              <gml:surfaceMember xlink:href="#Srf_a789c5b7-3167-4751-b8ed-a2435cc985bb"/>
              <gml:surfaceMember xlink:href="#Srf_bdb00568-4844-42cd-8d0f-d666bcb853bb"/>
              <gml:surfaceMember xlink:href="#Srf_3fbc7851-fb3c-4a78-b9d2-38190e9daf46"/>
              <gml:surfaceMember xlink:href="#Srf_4841e0ec-832d-41b9-ac28-c2b1fbc67a2e"/>
              <gml:surfaceMember xlink:href="#Srf_b00e30ef-54db-44fd-bb2e-0fbbb2536f93"/>
              <gml:surfaceMember xlink:href="#Srf_2e67b0ae-48cc-4d69-9cba-9f1803d7058c"/>
              <gml:surfaceMember xlink:href="#Srf_c60fc38a-5d08-4fc6-9449-9a798f525c9f"/>
              <gml:surfaceMember xlink:href="#Srf_c1c3274e-5c3b-420a-92ea-932a240204b9"/>
              <gml:surfaceMember xlink:href="#Srf_2eb86fac-0a6c-4002-a734-adee946396ac"/>
              <gml:surfaceMember xlink:href="#Srf_f0a4ced3-5e42-4a30-9b4f-99a3ab1bebf3"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_3f61ea42-10bb-4df0-a93e-1f3a66421868">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_188f8c24-188b-44b6-a643-896e101aec24">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_a789c5b7-3167-4751-b8ed-a2435cc985bb">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_a789c5b7-3167-4751-b8ed-a2435cc985bb_0_">
                      <gml:posList srsDimension="3">510926.010 5417121.730 278.413 510931.890 5417112.880 278.276 510931.890 5417112.880 271.513 510926.010 5417121.730 271.513 510926.010 5417121.730 278.413</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_af3fa732-62ca-46e6-b318-cc976e1c446b">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b554b3fc-778b-413e-a3fb-d6f689fde457">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_c1c3274e-5c3b-420a-92ea-932a240204b9">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_c1c3274e-5c3b-420a-92ea-932a240204b9_0_">
                      <gml:posList srsDimension="3">510925.660 5417122.250 278.424 510926.010 5417121.730 278.413 510926.010 5417121.730 271.513 510925.660 5417122.250 271.513 510925.660 5417122.250 278.424</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_91e1e80e-f2de-49e4-aaca-12d972131c9e">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3e0dd55e-0093-4334-abe4-ae6ee29d2308">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_2eb86fac-0a6c-4002-a734-adee946396ac">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_2eb86fac-0a6c-4002-a734-adee946396ac_0_">
                      <gml:posList srsDimension="3">510923.060 5417120.520 280.734 510925.660 5417122.250 278.424 510925.660 5417122.250 271.513 510923.060 5417120.520 271.513 510923.060 5417120.520 280.734</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_d59678d5-b42d-4235-a6cd-2ede8a165880">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6a31a5fd-f2aa-4297-b2ef-27aa0589779a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_c60fc38a-5d08-4fc6-9449-9a798f525c9f">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_c60fc38a-5d08-4fc6-9449-9a798f525c9f_0_">
                      <gml:posList srsDimension="3">510921.566 5417119.520 282.064 510923.060 5417120.520 280.734 510923.060 5417120.520 271.513 510921.566 5417119.520 271.513 510921.566 5417119.520 282.064</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_baa9bfb8-231c-4d5b-81d6-fd0568e6aee2">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_0608f760-31ae-4bb8-abd4-95fd351e08c2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_b00e30ef-54db-44fd-bb2e-0fbbb2536f93">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_b00e30ef-54db-44fd-bb2e-0fbbb2536f93_0_">
                      <gml:posList srsDimension="3">510927.708 5417110.102 281.990 510921.566 5417119.520 282.064 510917.280 5417116.650 278.292 510923.460 5417107.280 278.261 510927.708 5417110.102 281.990</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_985620f9-5c7d-4810-a3fe-751d1a03ad81">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_09ea5207-a9d9-47fa-8ad6-e7eb60e55ebe">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_bdb00568-4844-42cd-8d0f-d666bcb853bb">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_bdb00568-4844-42cd-8d0f-d666bcb853bb_0_">
                      <gml:posList srsDimension="3">510921.566 5417119.520 271.513 510917.280 5417116.650 271.513 510917.280 5417116.650 278.292 510921.566 5417119.520 282.064 510921.566 5417119.520 271.513</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_a0083e40-47c4-4a0e-9107-8ae68fdcc505">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1d984fb5-b236-4a09-ae1a-043a9b19a04d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_4841e0ec-832d-41b9-ac28-c2b1fbc67a2e">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_4841e0ec-832d-41b9-ac28-c2b1fbc67a2e_0_">
                      <gml:posList srsDimension="3">510923.460 5417107.280 278.261 510917.280 5417116.650 278.292 510917.280 5417116.650 271.513 510923.460 5417107.280 271.513 510923.460 5417107.280 278.261</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_c761d163-b781-4267-a5fc-94a4f6ce3291">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e4d90366-cdc7-43d3-a386-104110e8d9bc">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_9d701286-147f-4866-8592-d314a9333607">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_9d701286-147f-4866-8592-d314a9333607_0_">
                      <gml:posList srsDimension="3">510923.060 5417120.520 280.734 510921.566 5417119.520 282.064 510927.708 5417110.102 281.990 510931.890 5417112.880 278.276 510926.010 5417121.730 278.413 510925.660 5417122.250 278.424 510923.060 5417120.520 280.734</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="UUID_33442c52-e2ef-4ebc-9878-791b9bafc02b">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_72815463-24e6-44b4-bf96-7e588ba590e8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_2e67b0ae-48cc-4d69-9cba-9f1803d7058c">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_2e67b0ae-48cc-4d69-9cba-9f1803d7058c_0_">
                      <gml:posList srsDimension="3">510917.280 5417116.650 271.513 510921.566 5417119.520 271.513 510923.060 5417120.520 271.513 510925.660 5417122.250 271.513 510926.010 5417121.730 271.513 510931.890 5417112.880 271.513 510927.708 5417110.102 271.513 510923.460 5417107.280 271.513 510917.280 5417116.650 271.513</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_0227776f-ffbd-4f10-bc0e-d34977483d32">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1bff2035-2b29-4102-8a74-bccb8c3baf38">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_f0a4ced3-5e42-4a30-9b4f-99a3ab1bebf3">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_f0a4ced3-5e42-4a30-9b4f-99a3ab1bebf3_0_">
                      <gml:posList srsDimension="3">510923.460 5417107.280 271.513 510927.708 5417110.102 271.513 510927.708 5417110.102 281.990 510923.460 5417107.280 278.261 510923.460 5417107.280 271.513</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_29e095d7-ad39-4532-9054-e44fca33af4d">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d602a866-b315-468a-a977-68ea2d12d10a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_3fbc7851-fb3c-4a78-b9d2-38190e9daf46">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_3fbc7851-fb3c-4a78-b9d2-38190e9daf46_0_">
                      <gml:posList srsDimension="3">510931.890 5417112.880 278.276 510927.708 5417110.102 281.990 510927.708 5417110.102 271.513 510931.890 5417112.880 271.513 510931.890 5417112.880 278.276</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1967</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember>
  <core:cityObjectMember>
    <bldg:Building gml:id="DEBW_0010000ZZE0">
      <core:creationDate>2019-01-26</core:creationDate>
      <core:externalReference>
        <core:informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</core:informationSystem>
        <core:externalObject>
          <core:name>DEBWL0010000ZZE0</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_2463</bldg:function>
      <bldg:roofType>1000</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">2.392</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_d2fa9893-a73d-47d6-bb1a-a2f810ae79a1">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_84d4c617-d92e-4cc8-8f1c-d88938531557">
              <gml:surfaceMember xlink:href="#Srf_6caa0693-a497-46ff-ba76-de466e3a73c8"/>
              <gml:surfaceMember xlink:href="#Srf_6a3f4be9-388a-46bb-ae5e-067e89393bb7"/>
              <gml:surfaceMember xlink:href="#Srf_8a0fd79d-84db-444d-8404-94d77f7b8024"/>
              <gml:surfaceMember xlink:href="#Srf_dd4d234f-2dae-4b84-962c-f97ac6147684"/>
              <gml:surfaceMember xlink:href="#Srf_ea723619-a6a5-4275-a4dc-f593e3348727"/>
              <gml:surfaceMember xlink:href="#Srf_ecb83153-eccd-4b0b-a547-0899ca583350"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="UUID_0382b5c3-ded5-4787-beed-a3c9cc0b878e">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1599b6cb-821f-434c-a79e-8b44f9c3954a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_ecb83153-eccd-4b0b-a547-0899ca583350">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_ecb83153-eccd-4b0b-a547-0899ca583350_0_">
                      <gml:posList srsDimension="3">511109.850 5417069.390 273.930 511103.800 5417069.020 273.930 511103.970 5417066.400 273.930 511110.030 5417066.740 273.930 511109.850 5417069.390 273.930</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_5d3ae59c-8f79-4e8c-8f51-c68d4737a059">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5d847ee9-aba0-4eba-a382-0c6a75df6547">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_6a3f4be9-388a-46bb-ae5e-067e89393bb7">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_6a3f4be9-388a-46bb-ae5e-067e89393bb7_0_">
                      <gml:posList srsDimension="3">511103.970 5417066.400 271.538 511110.030 5417066.740 271.538 511110.030 5417066.740 273.930 511103.970 5417066.400 273.930 511103.970 5417066.400 271.538</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_173533c0-6108-47ae-8d35-5a4bb0357f48">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3e5d9279-3979-41b7-8d33-68ba75ad76fb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_dd4d234f-2dae-4b84-962c-f97ac6147684">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_dd4d234f-2dae-4b84-962c-f97ac6147684_0_">
                      <gml:posList srsDimension="3">511110.030 5417066.740 271.538 511109.850 5417069.390 271.538 511109.850 5417069.390 273.930 511110.030 5417066.740 273.930 511110.030 5417066.740 271.538</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_19470157-5fd4-4c46-8680-749153468181">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e7853e78-cb71-468a-855b-a696c484641c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_ea723619-a6a5-4275-a4dc-f593e3348727">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_ea723619-a6a5-4275-a4dc-f593e3348727_0_">
                      <gml:posList srsDimension="3">511109.850 5417069.390 271.538 511103.800 5417069.020 271.538 511103.800 5417069.020 273.930 511109.850 5417069.390 273.930 511109.850 5417069.390 271.538</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_2bc53766-f183-4a58-8a7e-544440ba3104">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_33a4f614-8e54-4a17-a18f-01847177eff4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_8a0fd79d-84db-444d-8404-94d77f7b8024">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_8a0fd79d-84db-444d-8404-94d77f7b8024_0_">
                      <gml:posList srsDimension="3">511103.800 5417069.020 271.538 511103.970 5417066.400 271.538 511103.970 5417066.400 273.930 511103.800 5417069.020 273.930 511103.800 5417069.020 271.538</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_7e5cfe13-c551-4968-b14a-2a0c2e0ae021">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e045a2bd-8e81-466c-856f-d7d5bfbcb097">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_6caa0693-a497-46ff-ba76-de466e3a73c8">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_6caa0693-a497-46ff-ba76-de466e3a73c8_0_">
                      <gml:posList srsDimension="3">511103.800 5417069.020 271.538 511109.850 5417069.390 271.538 511110.030 5417066.740 271.538 511103.970 5417066.400 271.538 511103.800 5417069.020 271.538</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1964</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember>
  <core:cityObjectMember>
    <bldg:Building gml:id="DEBW_0010000ZZE5">
      <core:creationDate>2019-01-26</core:creationDate>
      <core:externalReference>
        <core:informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</core:informationSystem>
        <core:externalObject>
          <core:name>DEBWL0010000ZZE5</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_2463</bldg:function>
      <bldg:roofType>2100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">2.734</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_4ff2928b-7e55-41a3-9ea7-739f42d4166b">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_77471c33-50d8-4b05-bae2-4024d5d878ba">
              <gml:surfaceMember xlink:href="#Srf_4b0017ed-de05-4a50-81d0-18d2d133cb6c"/>
              <gml:surfaceMember xlink:href="#Srf_51137b74-bfa1-48fb-b5a5-a0ee54f0717d"/>
              <gml:surfaceMember xlink:href="#Srf_b862f9d2-1963-497f-afcb-6698af6da3a5"/>
              <gml:surfaceMember xlink:href="#Srf_f5bd155b-3d7f-4c8d-ac19-51c1a9fd6fb8"/>
              <gml:surfaceMember xlink:href="#Srf_ffb566f3-391a-4a80-929f-8cf1e22f12a8"/>
              <gml:surfaceMember xlink:href="#Srf_c2020f59-87af-4142-9b19-c6bc16faff78"/>
              <gml:surfaceMember xlink:href="#Srf_71484ef3-6d54-407e-92af-caaabc2d87ce"/>
              <gml:surfaceMember xlink:href="#Srf_022da83e-b302-4770-b42a-46c9fcc65d60"/>
              <gml:surfaceMember xlink:href="#Srf_de8314ad-4e50-40c7-a8fa-6c819bc773aa"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_840c323c-b987-458f-8e64-b0ff1549d382">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6cb38759-2888-45ba-9a34-fd1c7d30415a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_c2020f59-87af-4142-9b19-c6bc16faff78">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_c2020f59-87af-4142-9b19-c6bc16faff78_0_">
                      <gml:posList srsDimension="3">511103.380 5417052.090 271.011 511098.760 5417051.800 271.011 511098.760 5417051.800 273.513 511103.380 5417052.090 273.690 511103.380 5417052.090 271.011</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_8f424a79-f3cf-426f-ab6e-ad440265e3ba">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5dd45f62-ec21-4afb-9061-4a522a645406">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_de8314ad-4e50-40c7-a8fa-6c819bc773aa">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_de8314ad-4e50-40c7-a8fa-6c819bc773aa_0_">
                      <gml:posList srsDimension="3">511098.920 5417049.000 273.508 511098.760 5417051.800 273.513 511098.760 5417051.800 271.011 511098.920 5417049.000 271.011 511098.920 5417049.000 273.508</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_312fabfa-bc3d-41bb-bfef-54f75456b473">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_243f3589-4419-4dce-a9b0-73c5bdf1b963">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_f5bd155b-3d7f-4c8d-ac19-51c1a9fd6fb8">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_f5bd155b-3d7f-4c8d-ac19-51c1a9fd6fb8_0_">
                      <gml:posList srsDimension="3">511101.430 5417049.150 271.011 511098.920 5417049.000 271.011 511098.760 5417051.800 271.011 511103.380 5417052.090 271.011 511103.400 5417051.880 271.011 511104.820 5417051.970 271.011 511104.980 5417049.340 271.011 511101.430 5417049.150 271.011</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_7de44b44-3d29-49a0-a945-f266caa7c6db">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b199b106-77aa-4500-adc8-1d678f0a4a58">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_71484ef3-6d54-407e-92af-caaabc2d87ce">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_71484ef3-6d54-407e-92af-caaabc2d87ce_0_">
                      <gml:posList srsDimension="3">511098.920 5417049.000 273.508 511101.430 5417049.150 273.604 511104.980 5417049.340 273.740 511104.820 5417051.970 273.745 511103.400 5417051.880 273.690 511103.380 5417052.090 273.690 511098.760 5417051.800 273.513 511098.920 5417049.000 273.508</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_e8534793-d05f-4dca-a9b4-46acf44d29c9">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c304ae2b-d047-4ca4-9fe8-95d77e707452">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_022da83e-b302-4770-b42a-46c9fcc65d60">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_022da83e-b302-4770-b42a-46c9fcc65d60_0_">
                      <gml:posList srsDimension="3">511098.920 5417049.000 271.011 511101.430 5417049.150 271.011 511101.430 5417049.150 273.604 511098.920 5417049.000 273.508 511098.920 5417049.000 271.011</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_8941af1c-7bf2-461e-aae1-85b4dc6eb699">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6aed80b7-b5e9-4d37-987d-f894c773bd3c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_ffb566f3-391a-4a80-929f-8cf1e22f12a8">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_ffb566f3-391a-4a80-929f-8cf1e22f12a8_0_">
                      <gml:posList srsDimension="3">511101.430 5417049.150 271.011 511104.980 5417049.340 271.011 511104.980 5417049.340 273.740 511101.430 5417049.150 273.604 511101.430 5417049.150 271.011</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_8aebe242-6dda-40f9-91d4-955d56c81f0d">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_56df42b3-0374-408f-ab32-b4049e589fa7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_b862f9d2-1963-497f-afcb-6698af6da3a5">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_b862f9d2-1963-497f-afcb-6698af6da3a5_0_">
                      <gml:posList srsDimension="3">511104.820 5417051.970 273.745 511104.980 5417049.340 273.740 511104.980 5417049.340 271.011 511104.820 5417051.970 271.011 511104.820 5417051.970 273.745</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_862b7036-8bf5-4b5e-9230-7825f0944f09">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e62ff754-42a1-4bed-9e34-e21d980b7519">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_51137b74-bfa1-48fb-b5a5-a0ee54f0717d">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_51137b74-bfa1-48fb-b5a5-a0ee54f0717d_0_">
                      <gml:posList srsDimension="3">511104.820 5417051.970 271.011 511103.400 5417051.880 271.011 511103.400 5417051.880 273.690 511104.820 5417051.970 273.745 511104.820 5417051.970 271.011</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_53fa0a7b-edb7-4233-8fe1-ea41a883f7ea">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_35ae6b61-9586-4afe-b36f-e9e14e9c7777">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_4b0017ed-de05-4a50-81d0-18d2d133cb6c">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_4b0017ed-de05-4a50-81d0-18d2d133cb6c_0_">
                      <gml:posList srsDimension="3">511103.400 5417051.880 273.690 511103.400 5417051.880 271.011 511103.380 5417052.090 271.011 511103.380 5417052.090 273.690 511103.400 5417051.880 273.690</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1918</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember>
  <core:cityObjectMember>
    <bldg:Building gml:id="DEBW_0010000ZZDz">
      <core:creationDate>2019-01-26</core:creationDate>
      <core:externalReference>
        <core:informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</core:informationSystem>
        <core:externalObject>
          <core:name>DEBWL0010000ZZDz</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_2463</bldg:function>
      <bldg:roofType>1000</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">2.519</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_002481cd-c296-4ce4-b0de-ff45788e220d">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_e916c62a-b20a-441d-abdc-e5785929eba0">
              <gml:surfaceMember xlink:href="#Srf_1ff3f7b4-3a81-4da4-b78b-95199b7a99a2"/>
              <gml:surfaceMember xlink:href="#Srf_7f3c6548-4236-4522-8bdb-5e550e148e02"/>
              <gml:surfaceMember xlink:href="#Srf_6c186af6-1ea8-4ebf-852c-9a9db70e7855"/>
              <gml:surfaceMember xlink:href="#Srf_bd9287cc-52aa-4029-be4c-2725ae99dae9"/>
              <gml:surfaceMember xlink:href="#Srf_6cdab3e1-fa34-4212-a362-685c087b041a"/>
              <gml:surfaceMember xlink:href="#Srf_ef75c1da-0f47-4449-a786-f6b7a33cc6de"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_62b61dcb-64f3-45fc-a41c-90795799da8c">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c43f17ff-054a-4ef0-931e-43c53d0682be">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_6cdab3e1-fa34-4212-a362-685c087b041a">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_6cdab3e1-fa34-4212-a362-685c087b041a_0_">
                      <gml:posList srsDimension="3">511064.180 5417106.750 273.671 511067.200 5417106.880 273.671 511067.200 5417106.880 276.190 511064.180 5417106.750 276.190 511064.180 5417106.750 273.671</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_5a882723-f7e9-4ba0-b28b-061a13d89d8f">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_26e93222-a891-41b4-b0c9-453f11fbcd12">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_1ff3f7b4-3a81-4da4-b78b-95199b7a99a2">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_1ff3f7b4-3a81-4da4-b78b-95199b7a99a2_0_">
                      <gml:posList srsDimension="3">511067.200 5417106.880 273.671 511067.020 5417112.880 273.671 511067.020 5417112.880 276.190 511067.200 5417106.880 276.190 511067.200 5417106.880 273.671</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_a6726e74-0502-4849-9c62-e5b1c88d9c08">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a6b232ec-cf31-4669-8373-4c65bd690034">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_6c186af6-1ea8-4ebf-852c-9a9db70e7855">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_6c186af6-1ea8-4ebf-852c-9a9db70e7855_0_">
                      <gml:posList srsDimension="3">511067.020 5417112.880 273.671 511064.010 5417112.790 273.671 511064.010 5417112.790 276.190 511067.020 5417112.880 276.190 511067.020 5417112.880 273.671</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_17e8a599-deb0-436f-998c-5356abcbd1e8">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_117279c6-c3ca-4b69-b1dc-62ff5c296ffb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_ef75c1da-0f47-4449-a786-f6b7a33cc6de">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_ef75c1da-0f47-4449-a786-f6b7a33cc6de_0_">
                      <gml:posList srsDimension="3">511064.010 5417112.790 273.671 511064.180 5417106.750 273.671 511064.180 5417106.750 276.190 511064.010 5417112.790 276.190 511064.010 5417112.790 273.671</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_ce466610-9a8e-4996-b5d4-ee51c8ccc972">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4c21f9b5-f9a8-4a6d-90ca-f031cb2d19f7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_bd9287cc-52aa-4029-be4c-2725ae99dae9">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_bd9287cc-52aa-4029-be4c-2725ae99dae9_0_">
                      <gml:posList srsDimension="3">511067.200 5417106.880 273.671 511064.180 5417106.750 273.671 511064.010 5417112.790 273.671 511067.020 5417112.880 273.671 511067.200 5417106.880 273.671</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_0fa41cad-35c4-4162-abfa-d0d069e6c102">
For faster browsing, not all history is shown. View entire blame