Grafenbühl.gml 9.36 MB
Newer Older
Ehlers's avatar
Ehlers committed
65001
65002
65003
65004
65005
65006
65007
65008
65009
65010
65011
65012
65013
65014
65015
65016
65017
65018
65019
65020
65021
65022
65023
65024
65025
65026
65027
65028
65029
65030
65031
65032
65033
65034
65035
65036
65037
65038
65039
65040
65041
65042
65043
65044
65045
65046
65047
65048
65049
65050
65051
65052
65053
65054
65055
65056
65057
65058
65059
65060
65061
65062
65063
65064
65065
65066
65067
65068
65069
65070
65071
65072
65073
65074
65075
65076
65077
65078
65079
65080
65081
65082
65083
65084
65085
65086
65087
65088
65089
65090
65091
65092
65093
65094
65095
65096
65097
65098
65099
65100
65101
65102
65103
65104
65105
65106
65107
65108
65109
65110
65111
65112
65113
65114
65115
65116
65117
65118
65119
65120
65121
65122
65123
65124
65125
65126
65127
65128
65129
65130
65131
65132
65133
65134
65135
65136
65137
65138
65139
65140
65141
65142
65143
65144
65145
65146
65147
65148
65149
65150
65151
65152
65153
65154
65155
65156
65157
65158
65159
65160
65161
65162
65163
65164
65165
65166
65167
65168
65169
65170
65171
65172
65173
65174
65175
65176
65177
65178
65179
65180
65181
65182
65183
65184
65185
65186
65187
65188
65189
65190
65191
65192
65193
65194
65195
65196
65197
65198
65199
65200
65201
65202
65203
65204
65205
65206
65207
65208
65209
65210
65211
65212
65213
65214
65215
65216
65217
65218
65219
65220
65221
65222
65223
65224
65225
65226
65227
65228
65229
65230
65231
65232
65233
65234
65235
65236
65237
65238
65239
65240
65241
65242
65243
65244
65245
65246
65247
65248
65249
65250
65251
65252
65253
65254
65255
65256
65257
65258
65259
65260
65261
65262
65263
65264
65265
65266
65267
65268
65269
65270
65271
65272
65273
65274
65275
65276
65277
65278
65279
65280
65281
65282
65283
65284
65285
65286
65287
65288
65289
65290
65291
65292
65293
65294
65295
65296
65297
65298
65299
65300
65301
65302
65303
65304
65305
65306
65307
65308
65309
65310
65311
65312
65313
65314
65315
65316
65317
65318
65319
65320
65321
65322
65323
65324
65325
65326
65327
65328
65329
65330
65331
65332
65333
65334
65335
65336
65337
65338
65339
65340
65341
65342
65343
65344
65345
65346
65347
65348
65349
65350
65351
65352
65353
65354
65355
65356
65357
65358
65359
65360
65361
65362
65363
65364
65365
65366
65367
65368
65369
65370
65371
65372
65373
65374
65375
65376
65377
65378
65379
65380
65381
65382
65383
65384
65385
65386
65387
65388
65389
65390
65391
65392
65393
65394
65395
65396
65397
65398
65399
65400
65401
65402
65403
65404
65405
65406
65407
65408
65409
65410
65411
65412
65413
65414
65415
65416
65417
65418
65419
65420
65421
65422
65423
65424
65425
65426
65427
65428
65429
65430
65431
65432
65433
65434
65435
65436
65437
65438
65439
65440
65441
65442
65443
65444
65445
65446
65447
65448
65449
65450
65451
65452
65453
65454
65455
65456
65457
65458
65459
65460
65461
65462
65463
65464
65465
65466
65467
65468
65469
65470
65471
65472
65473
65474
65475
65476
65477
65478
65479
65480
65481
65482
65483
65484
65485
65486
65487
65488
65489
65490
65491
65492
65493
65494
65495
65496
65497
65498
65499
65500
65501
65502
65503
65504
65505
65506
65507
65508
65509
65510
65511
65512
65513
65514
65515
65516
65517
65518
65519
65520
65521
65522
65523
65524
65525
65526
65527
65528
65529
65530
65531
65532
65533
65534
65535
65536
65537
65538
65539
65540
65541
65542
65543
65544
65545
65546
65547
65548
65549
65550
65551
65552
65553
65554
65555
65556
65557
65558
65559
65560
65561
65562
65563
65564
65565
65566
65567
65568
65569
65570
65571
65572
65573
65574
65575
65576
65577
65578
65579
65580
65581
65582
65583
65584
65585
65586
65587
65588
65589
65590
65591
65592
65593
65594
65595
65596
65597
65598
65599
65600
65601
65602
65603
65604
65605
65606
65607
65608
65609
65610
65611
65612
65613
65614
65615
65616
65617
65618
65619
65620
65621
65622
65623
65624
65625
65626
65627
65628
65629
65630
65631
65632
65633
65634
65635
65636
65637
65638
65639
65640
65641
65642
65643
65644
65645
65646
65647
65648
65649
65650
65651
65652
65653
65654
65655
65656
65657
65658
65659
65660
65661
65662
65663
65664
65665
65666
65667
65668
65669
65670
65671
65672
65673
65674
65675
65676
65677
65678
65679
65680
65681
65682
65683
65684
65685
65686
65687
65688
65689
65690
65691
65692
65693
65694
65695
65696
65697
65698
65699
65700
65701
65702
65703
65704
65705
65706
65707
65708
65709
65710
65711
65712
65713
65714
65715
65716
65717
65718
65719
65720
65721
65722
65723
65724
65725
65726
65727
65728
65729
65730
65731
65732
65733
65734
65735
65736
65737
65738
65739
65740
65741
65742
65743
65744
65745
65746
65747
65748
65749
65750
65751
65752
65753
65754
65755
65756
65757
65758
65759
65760
65761
65762
65763
65764
65765
65766
65767
65768
65769
65770
65771
65772
65773
65774
65775
65776
65777
65778
65779
65780
65781
65782
65783
65784
65785
65786
65787
65788
65789
65790
65791
65792
65793
65794
65795
65796
65797
65798
65799
65800
65801
65802
65803
65804
65805
65806
65807
65808
65809
65810
65811
65812
65813
65814
65815
65816
65817
65818
65819
65820
65821
65822
65823
65824
65825
65826
65827
65828
65829
65830
65831
65832
65833
65834
65835
65836
65837
65838
65839
65840
65841
65842
65843
65844
65845
65846
65847
65848
65849
65850
65851
65852
65853
65854
65855
65856
65857
65858
65859
65860
65861
65862
65863
65864
65865
65866
65867
65868
65869
65870
65871
65872
65873
65874
65875
65876
65877
65878
65879
65880
65881
65882
65883
65884
65885
65886
65887
65888
65889
65890
65891
65892
65893
65894
65895
65896
65897
65898
65899
65900
65901
65902
65903
65904
65905
65906
65907
65908
65909
65910
65911
65912
65913
65914
65915
65916
65917
65918
65919
65920
65921
65922
65923
65924
65925
65926
65927
65928
65929
65930
65931
65932
65933
65934
65935
65936
65937
65938
65939
65940
65941
65942
65943
65944
65945
65946
65947
65948
65949
65950
65951
65952
65953
65954
65955
65956
65957
65958
65959
65960
65961
65962
65963
65964
65965
65966
65967
65968
65969
65970
65971
65972
65973
65974
65975
65976
65977
65978
65979
65980
65981
65982
65983
65984
65985
65986
65987
65988
65989
65990
65991
65992
65993
65994
65995
65996
65997
65998
65999
66000
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_614567b9-b2b2-4344-b3c4-641868042d54_0_">
                      <gml:posList srsDimension="3">511224.800 5417017.230 268.550 511227.620 5417017.220 268.550 511227.620 5417017.220 271.390 511224.800 5417017.230 271.390 511224.800 5417017.230 268.550</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_035d1c0f-fa53-47ea-903d-ab62d389b702">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_38fe7b23-0153-48f4-8052-30bd401c79d9">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_b1c5c9d0-3f86-48f2-8247-be418edd9a75">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_b1c5c9d0-3f86-48f2-8247-be418edd9a75_0_">
                      <gml:posList srsDimension="3">511227.620 5417017.220 268.550 511227.530 5417023.340 268.550 511227.530 5417023.340 271.390 511227.620 5417017.220 271.390 511227.620 5417017.220 268.550</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_66d44b8d-db35-4d3e-8841-dcc9865e91fa">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8451f340-e869-42b7-9aee-228b238868d4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_8b3ddb9b-d985-4e0b-ba04-b592e8e7146f">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_8b3ddb9b-d985-4e0b-ba04-b592e8e7146f_0_">
                      <gml:posList srsDimension="3">511227.530 5417023.340 268.550 511224.390 5417023.330 268.550 511224.390 5417023.330 271.390 511227.530 5417023.340 271.390 511227.530 5417023.340 268.550</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_3a01aff1-51b5-4d04-b809-61c4f4902db8">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ae2cd87f-cce3-4831-8394-89b92a71f576">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_a6cb3b62-06ba-4b44-b379-d145f1c55736">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_a6cb3b62-06ba-4b44-b379-d145f1c55736_0_">
                      <gml:posList srsDimension="3">511224.390 5417023.330 268.550 511224.800 5417017.230 268.550 511224.800 5417017.230 271.390 511224.390 5417023.330 271.390 511224.390 5417023.330 268.550</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_7adb9d98-f70d-49f9-a1a3-cd0fa484ff5b">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4b4f8276-eb3b-4b48-bd6f-590f8c5c46fd">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_fc9093fb-3fc9-4309-9187-1f01d4e6eba9">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_fc9093fb-3fc9-4309-9187-1f01d4e6eba9_0_">
                      <gml:posList srsDimension="3">511224.390 5417023.330 268.550 511227.530 5417023.340 268.550 511227.620 5417017.220 268.550 511224.800 5417017.230 268.550 511224.390 5417023.330 268.550</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1999</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember>
  <core:cityObjectMember>
    <bldg:Building gml:id="DEBW_0010000ZZFi">
      <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>DEBWL0010000ZZFi</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">11.342</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_28eb5158-58af-4701-aee3-c9aa8e652bc1">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_dc47df55-5c34-49a6-9cd6-612b476d5aa5">
              <gml:surfaceMember xlink:href="#Srf_c3fa7713-ec1c-4ebf-aaae-637e52becb21"/>
              <gml:surfaceMember xlink:href="#Srf_8d46607b-3f10-4311-9e00-9d2fdd58383c"/>
              <gml:surfaceMember xlink:href="#Srf_b4cc2d47-8456-4708-af73-1160ea95443c"/>
              <gml:surfaceMember xlink:href="#Srf_7121a1b6-605e-4c0e-a114-368170435431"/>
              <gml:surfaceMember xlink:href="#Srf_0301feed-0f8f-48b0-932c-c7c29815f14d"/>
              <gml:surfaceMember xlink:href="#Srf_4ff93a65-1400-4740-8487-fa6fb4802a75"/>
              <gml:surfaceMember xlink:href="#Srf_ad114bab-1483-4ab7-a399-f6a8d9e6edb6"/>
              <gml:surfaceMember xlink:href="#Srf_09843a68-211d-4873-9ad8-b2ef0228b033"/>
              <gml:surfaceMember xlink:href="#Srf_0c42f8d1-9a8c-46a4-9a7f-cb0356a2393c"/>
              <gml:surfaceMember xlink:href="#Srf_c69fcbe5-2a3b-47be-8d78-19546d229763"/>
              <gml:surfaceMember xlink:href="#Srf_75185982-5f19-4533-a1b8-607bb5d3dbbb"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_c5f3f0ec-eeb9-47e1-a5d5-e70822f8e20f">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5f897e03-80a6-4420-9f89-f281ffcd5181">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_0301feed-0f8f-48b0-932c-c7c29815f14d">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_0301feed-0f8f-48b0-932c-c7c29815f14d_0_">
                      <gml:posList srsDimension="3">511197.930 5417009.580 269.146 511202.430 5417009.910 269.146 511202.430 5417009.910 277.487 511197.930 5417009.580 277.438 511197.930 5417009.580 269.146</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_5116ac88-3ee2-4415-85e4-ad86968c34bb">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_86e7183e-d9ad-407c-8ae1-e0c9fa4ab438">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_c3fa7713-ec1c-4ebf-aaae-637e52becb21">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_c3fa7713-ec1c-4ebf-aaae-637e52becb21_0_">
                      <gml:posList srsDimension="3">511190.960 5417021.090 269.146 511191.387 5417015.352 269.146 511191.387 5417015.352 280.409 511190.960 5417021.090 276.098 511190.960 5417021.090 269.146</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_7e038a37-aaf1-40ca-ad2a-f07387b4d5bb">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_da983f90-ae3a-460a-bf0d-1975b0da135f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_c69fcbe5-2a3b-47be-8d78-19546d229763">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_c69fcbe5-2a3b-47be-8d78-19546d229763_0_">
                      <gml:posList srsDimension="3">511201.989 5417016.055 280.487 511202.430 5417009.910 277.487 511202.430 5417009.910 269.146 511201.989 5417016.055 269.146 511201.989 5417016.055 280.487</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_82c20c2d-995f-45fa-9db8-3284299b7d29">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d8c25aa5-70b5-450f-937a-66b48a32c5c8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_ad114bab-1483-4ab7-a399-f6a8d9e6edb6">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_ad114bab-1483-4ab7-a399-f6a8d9e6edb6_0_">
                      <gml:posList srsDimension="3">511191.830 5417009.390 269.146 511191.387 5417015.352 269.146 511190.960 5417021.090 269.146 511201.570 5417021.890 269.146 511201.989 5417016.055 269.146 511202.430 5417009.910 269.146 511197.930 5417009.580 269.146 511197.910 5417009.820 269.146 511191.830 5417009.390 269.146</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_69c14761-51e6-42c8-9198-52b43809ebc5">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_0ba70fe6-8137-42d1-8e75-ea437a84a973">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_4ff93a65-1400-4740-8487-fa6fb4802a75">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_4ff93a65-1400-4740-8487-fa6fb4802a75_0_">
                      <gml:posList srsDimension="3">511201.989 5417016.055 269.146 511201.570 5417021.890 269.146 511201.570 5417021.890 276.104 511201.989 5417016.055 280.487 511201.989 5417016.055 269.146</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_84eaa31a-071c-41d7-921e-cbea6d9c1529">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a4f503f4-6f07-4c16-b1b6-35fcb3540aef">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_b4cc2d47-8456-4708-af73-1160ea95443c">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_b4cc2d47-8456-4708-af73-1160ea95443c_0_">
                      <gml:posList srsDimension="3">511191.387 5417015.352 280.409 511191.830 5417009.390 277.497 511197.910 5417009.820 277.555 511197.930 5417009.580 277.438 511202.430 5417009.910 277.487 511201.989 5417016.055 280.487 511191.387 5417015.352 280.409</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="UUID_ec1e016e-e1e3-40c0-8fa1-20a88512bb25">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b09b2ab6-3a64-4814-a25d-a4cff293bff2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_8d46607b-3f10-4311-9e00-9d2fdd58383c">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_8d46607b-3f10-4311-9e00-9d2fdd58383c_0_">
                      <gml:posList srsDimension="3">511190.960 5417021.090 276.098 511191.387 5417015.352 280.409 511201.989 5417016.055 280.487 511201.570 5417021.890 276.104 511190.960 5417021.090 276.098</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_f7555c2b-3e41-4813-84df-c46ffadf78a7">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3e86d2ac-1a7d-4409-b224-7d9c2a55d5ab">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_75185982-5f19-4533-a1b8-607bb5d3dbbb">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_75185982-5f19-4533-a1b8-607bb5d3dbbb_0_">
                      <gml:posList srsDimension="3">511191.830 5417009.390 277.497 511191.387 5417015.352 280.409 511191.387 5417015.352 269.146 511191.830 5417009.390 269.146 511191.830 5417009.390 277.497</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_d8200abc-11e3-443c-b8ed-83d6201f1bfb">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b3f7744d-1fa8-4c06-aaf9-f726b2fbe857">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_09843a68-211d-4873-9ad8-b2ef0228b033">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_09843a68-211d-4873-9ad8-b2ef0228b033_0_">
                      <gml:posList srsDimension="3">511191.830 5417009.390 269.146 511197.910 5417009.820 269.146 511197.910 5417009.820 277.555 511191.830 5417009.390 277.497 511191.830 5417009.390 269.146</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_3f64da9b-a83f-4af0-8cf4-1a5d65d2468c">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8a8936de-3d4a-48c3-ae2f-5903861b198b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_0c42f8d1-9a8c-46a4-9a7f-cb0356a2393c">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_0c42f8d1-9a8c-46a4-9a7f-cb0356a2393c_0_">
                      <gml:posList srsDimension="3">511197.930 5417009.580 277.438 511197.910 5417009.820 277.555 511197.910 5417009.820 269.146 511197.930 5417009.580 269.146 511197.930 5417009.580 277.438</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_f159b11b-ee2c-4c84-afe3-05daa254ef8f">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_35547482-a727-4ec8-86b4-ef400263b1e7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_7121a1b6-605e-4c0e-a114-368170435431">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_7121a1b6-605e-4c0e-a114-368170435431_0_">
                      <gml:posList srsDimension="3">511201.570 5417021.890 269.146 511190.960 5417021.090 269.146 511190.960 5417021.090 276.098 511201.570 5417021.890 276.104 511201.570 5417021.890 269.146</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1993</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember>
  <core:cityObjectMember>
    <bldg:Building gml:id="DEBW_0010000ZZFH">
      <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>DEBWL0010000ZZFH</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>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">3.641</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_14077836-c2e0-411a-8488-63c9c5e36cb6">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_b70d5f36-0008-4aef-9064-5949145c0fff">
              <gml:surfaceMember xlink:href="#Srf_28679154-abb2-43b3-ba6d-37166e012668"/>
              <gml:surfaceMember xlink:href="#Srf_99b74b9f-e289-4c38-a0e7-148ab8847082"/>
              <gml:surfaceMember xlink:href="#Srf_b40ac247-ea59-4481-a149-0ea39d6b5ecb"/>
              <gml:surfaceMember xlink:href="#Srf_8c9e226d-ba98-4d03-9e70-9d58f8370a7f"/>
              <gml:surfaceMember xlink:href="#Srf_f78faf7d-c336-435f-8725-06886cf259a0"/>
              <gml:surfaceMember xlink:href="#Srf_471a6e56-a424-43b4-8fa7-ac9beba760ef"/>
              <gml:surfaceMember xlink:href="#Srf_3b7090c6-d674-4380-a5c4-2c68a9fd9081"/>
              <gml:surfaceMember xlink:href="#Srf_4c3546e4-bca8-4ac9-88f6-bf2eed87ada7"/>
              <gml:surfaceMember xlink:href="#Srf_0184755d-50f5-4c02-9ddc-ce42cc3a2e21"/>
              <gml:surfaceMember xlink:href="#Srf_930366c7-f80e-45f4-b51f-8eb9783a2f3f"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_fb3defb6-f4ce-41b4-b27c-64ab60b73e93">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_79ae5a44-80bb-4549-bcba-90f2cd9f8e66">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_4c3546e4-bca8-4ac9-88f6-bf2eed87ada7">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_4c3546e4-bca8-4ac9-88f6-bf2eed87ada7_0_">
                      <gml:posList srsDimension="3">511162.490 5417096.600 271.304 511159.100 5417096.380 271.304 511159.100 5417096.380 273.800 511162.490 5417096.600 273.847 511162.490 5417096.600 271.304</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_f75d070f-3830-477f-be37-c4e370161840">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_0d547fa9-e80b-4006-b095-0d334d77641b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_3b7090c6-d674-4380-a5c4-2c68a9fd9081">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_3b7090c6-d674-4380-a5c4-2c68a9fd9081_0_">
                      <gml:posList srsDimension="3">511159.100 5417096.380 271.304 511159.281 5417093.597 271.304 511159.281 5417093.597 274.945 511159.100 5417096.380 273.800 511159.100 5417096.380 271.304</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_eb254875-37e7-4040-bc11-2dee0da3ad9e">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ad0efc80-68a4-4fc3-adb5-fcbadaf986de">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_b40ac247-ea59-4481-a149-0ea39d6b5ecb">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_b40ac247-ea59-4481-a149-0ea39d6b5ecb_0_">
                      <gml:posList srsDimension="3">511162.900 5417091.380 271.304 511159.440 5417091.150 271.304 511159.281 5417093.597 271.304 511159.100 5417096.380 271.304 511162.490 5417096.600 271.304 511162.620 5417095.440 271.304 511162.721 5417093.970 271.304 511162.900 5417091.380 271.304</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_43d59b50-8728-4d7e-b1ba-e15a05ddaf33">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f2904557-f80c-47a1-bb62-537600b24fcc">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_930366c7-f80e-45f4-b51f-8eb9783a2f3f">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_930366c7-f80e-45f4-b51f-8eb9783a2f3f_0_">
                      <gml:posList srsDimension="3">511159.440 5417091.150 273.904 511162.900 5417091.380 273.829 511162.721 5417093.970 274.931 511159.281 5417093.597 274.945 511159.440 5417091.150 273.904</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="UUID_8533fb0c-85ee-4894-8f73-04ba6cbb8f2e">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_41eaf283-513a-400f-a1cc-9d6a4b412d72">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_0184755d-50f5-4c02-9ddc-ce42cc3a2e21">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_0184755d-50f5-4c02-9ddc-ce42cc3a2e21_0_">
                      <gml:posList srsDimension="3">511159.100 5417096.380 273.800 511159.281 5417093.597 274.945 511162.721 5417093.970 274.931 511162.620 5417095.440 274.327 511162.490 5417096.600 273.847 511159.100 5417096.380 273.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_ca6c5a01-d925-4761-a27d-4cd1f4085868">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8f92e41d-d255-4be5-b017-5386137a9908">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_f78faf7d-c336-435f-8725-06886cf259a0">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_f78faf7d-c336-435f-8725-06886cf259a0_0_">
                      <gml:posList srsDimension="3">511159.440 5417091.150 273.904 511159.281 5417093.597 274.945 511159.281 5417093.597 271.304 511159.440 5417091.150 271.304 511159.440 5417091.150 273.904</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_6e03eed0-8db0-466b-b479-10b606d2b244">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d4e34344-6faa-48e3-b778-05e9244fff58">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_99b74b9f-e289-4c38-a0e7-148ab8847082">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_99b74b9f-e289-4c38-a0e7-148ab8847082_0_">
                      <gml:posList srsDimension="3">511162.900 5417091.380 273.829 511159.440 5417091.150 273.904 511159.440 5417091.150 271.304 511162.900 5417091.380 271.304 511162.900 5417091.380 273.829</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_18142cc9-2ea5-4b76-9503-d1e6a34fb675">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_743cf630-9c7b-4f9b-b5e8-a99637b611fb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_28679154-abb2-43b3-ba6d-37166e012668">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_28679154-abb2-43b3-ba6d-37166e012668_0_">
                      <gml:posList srsDimension="3">511162.721 5417093.970 274.931 511162.900 5417091.380 273.829 511162.900 5417091.380 271.304 511162.721 5417093.970 271.304 511162.721 5417093.970 274.931</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_cb388fdb-f9c0-4a31-845f-b10308a841f5">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_37c0aba7-4748-43d1-84ca-73592b4bb267">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_471a6e56-a424-43b4-8fa7-ac9beba760ef">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_471a6e56-a424-43b4-8fa7-ac9beba760ef_0_">
                      <gml:posList srsDimension="3">511162.721 5417093.970 271.304 511162.620 5417095.440 271.304 511162.620 5417095.440 274.327 511162.721 5417093.970 274.931 511162.721 5417093.970 271.304</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_4643da8e-534c-4f27-a6f5-860103d3114b">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a50ed7c1-d2df-4b49-83ea-cb18ec17407a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_8c9e226d-ba98-4d03-9e70-9d58f8370a7f">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_8c9e226d-ba98-4d03-9e70-9d58f8370a7f_0_">
                      <gml:posList srsDimension="3">511162.620 5417095.440 271.304 511162.490 5417096.600 271.304 511162.490 5417096.600 273.847 511162.620 5417095.440 274.327 511162.620 5417095.440 271.304</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1946</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember>
  <core:cityObjectMember>
    <bldg:Building gml:id="DEBW_0010000ZZFn">
      <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>DEBWL0010000ZZFn</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.942</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_e8782ee7-e337-4c96-9e86-a45eaa70e1e5">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_6df91948-2b3d-4b6f-8d54-d7689ca76940">
              <gml:surfaceMember xlink:href="#Srf_b34ea430-6e02-4a56-9989-3bf8b6d51ebc"/>
              <gml:surfaceMember xlink:href="#Srf_c9cdb702-fb7d-4144-9e63-02b65b48279f"/>
              <gml:surfaceMember xlink:href="#Srf_d312dc91-db31-443b-b1ed-86d23a965aea"/>
              <gml:surfaceMember xlink:href="#Srf_f9ddf9ff-6c6c-4b40-a381-ae8f1b2fb5ef"/>
              <gml:surfaceMember xlink:href="#Srf_f51b3bdc-535e-4bab-bbbf-68c1ac915d71"/>
              <gml:surfaceMember xlink:href="#Srf_0a1e8458-f3cc-4931-9f12-ab2455628578"/>
              <gml:surfaceMember xlink:href="#Srf_f07bbae1-767d-4c5d-ad89-abd306681b71"/>
              <gml:surfaceMember xlink:href="#Srf_1e48ed20-b189-4472-831e-3c872d3b03e2"/>
              <gml:surfaceMember xlink:href="#Srf_6a639f0b-d763-41be-a5cc-31cd5fb85c63"/>
              <gml:surfaceMember xlink:href="#Srf_b081566b-ab28-45e2-bae3-0f7839921b49"/>
              <gml:surfaceMember xlink:href="#Srf_f831df61-b00d-4789-ae35-059ba7ba125d"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="UUID_48d03e05-b0e5-4184-848a-e17947567d50">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ff4b3324-9544-4f79-b980-312162e32bd3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_6a639f0b-d763-41be-a5cc-31cd5fb85c63">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_6a639f0b-d763-41be-a5cc-31cd5fb85c63_0_">
                      <gml:posList srsDimension="3">511229.620 5417017.570 276.497 511228.380 5417017.560 275.911 511228.490 5417008.120 276.175 511233.904 5417008.188 278.734 511233.973 5417023.735 278.417 511229.550 5417023.690 276.326 511229.620 5417017.570 276.497</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="UUID_0ba3074e-f827-4900-9d84-3672751b798f">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_373c701f-6ef0-449f-a6e3-2abb6b289a4e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_f51b3bdc-535e-4bab-bbbf-68c1ac915d71">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_f51b3bdc-535e-4bab-bbbf-68c1ac915d71_0_">
                      <gml:posList srsDimension="3">511239.560 5417008.260 276.176 511239.360 5417023.790 275.981 511233.973 5417023.735 278.417 511233.904 5417008.188 278.734 511239.560 5417008.260 276.176</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_26aee518-20d7-409e-be8f-2ec91ebc27dd">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_77117a8f-fcc5-44c2-a82b-52534fe35b45">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_d312dc91-db31-443b-b1ed-86d23a965aea">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_d312dc91-db31-443b-b1ed-86d23a965aea_0_">
                      <gml:posList srsDimension="3">511228.490 5417008.120 267.792 511233.904 5417008.188 267.792 511233.904 5417008.188 278.734 511228.490 5417008.120 276.175 511228.490 5417008.120 267.792</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_4acb650a-a990-40bf-8e4a-c21e2b090324">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_0ec3c683-af9a-4241-bada-b8af2e36e1d8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_1e48ed20-b189-4472-831e-3c872d3b03e2">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_1e48ed20-b189-4472-831e-3c872d3b03e2_0_">
                      <gml:posList srsDimension="3">511239.560 5417008.260 276.176 511233.904 5417008.188 278.734 511233.904 5417008.188 267.792 511239.560 5417008.260 267.792 511239.560 5417008.260 276.176</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_8e83f57c-0cc3-413f-b8e0-1fa75df2da60">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_67ef0ff9-eecc-4877-9712-44882db8d21d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_0a1e8458-f3cc-4931-9f12-ab2455628578">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_0a1e8458-f3cc-4931-9f12-ab2455628578_0_">
                      <gml:posList srsDimension="3">511239.560 5417008.260 267.792 511239.360 5417023.790 267.792 511239.360 5417023.790 275.981 511239.560 5417008.260 276.176 511239.560 5417008.260 267.792</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_37fbb7c4-c930-4290-b12c-a14120e207fe">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_19bb7b2a-e904-4c69-99b2-bb87db2d8ee2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_f9ddf9ff-6c6c-4b40-a381-ae8f1b2fb5ef">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_f9ddf9ff-6c6c-4b40-a381-ae8f1b2fb5ef_0_">
                      <gml:posList srsDimension="3">511233.973 5417023.735 278.417 511239.360 5417023.790 275.981 511239.360 5417023.790 267.792 511233.973 5417023.735 267.792 511233.973 5417023.735 278.417</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_f2b03f53-3e0b-46c9-bcd7-137ecb878506">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_cb5f7a8b-7f81-4ae4-a5dc-437b5fea9be7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_b081566b-ab28-45e2-bae3-0f7839921b49">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_b081566b-ab28-45e2-bae3-0f7839921b49_0_">
                      <gml:posList srsDimension="3">511233.973 5417023.735 267.792 511229.550 5417023.690 267.792 511229.550 5417023.690 276.326 511233.973 5417023.735 278.417 511233.973 5417023.735 267.792</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_317c15af-2e78-44d9-a2a2-255543839e04">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_61955fc0-117b-4cf3-8d30-5829102ae40e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_f07bbae1-767d-4c5d-ad89-abd306681b71">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_f07bbae1-767d-4c5d-ad89-abd306681b71_0_">
                      <gml:posList srsDimension="3">511229.550 5417023.690 267.792 511229.620 5417017.570 267.792 511229.620 5417017.570 276.497 511229.550 5417023.690 276.326 511229.550 5417023.690 267.792</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_89eb6705-82dd-41be-ae6a-61fe4768929d">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4c3d186c-9b11-41b4-85bc-e3aadfbdf85f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_f831df61-b00d-4789-ae35-059ba7ba125d">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_f831df61-b00d-4789-ae35-059ba7ba125d_0_">
                      <gml:posList srsDimension="3">511229.620 5417017.570 267.792 511228.380 5417017.560 267.792 511228.380 5417017.560 275.911 511229.620 5417017.570 276.497 511229.620 5417017.570 267.792</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_1b515c92-ab0f-4047-a707-81062a30de96">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_071ba957-4dec-4f13-85de-49edf2ad1b2d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_c9cdb702-fb7d-4144-9e63-02b65b48279f">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_c9cdb702-fb7d-4144-9e63-02b65b48279f_0_">
                      <gml:posList srsDimension="3">511228.380 5417017.560 267.792 511228.490 5417008.120 267.792 511228.490 5417008.120 276.175 511228.380 5417017.560 275.911 511228.380 5417017.560 267.792</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_00dbb52f-fab8-49b8-a0e9-26c0eba5b661">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5b14f153-5d28-4c86-a52b-06e3e7847124">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_b34ea430-6e02-4a56-9989-3bf8b6d51ebc">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_b34ea430-6e02-4a56-9989-3bf8b6d51ebc_0_">
                      <gml:posList srsDimension="3">511228.380 5417017.560 267.792 511229.620 5417017.570 267.792 511229.550 5417023.690 267.792 511233.973 5417023.735 267.792 511239.360 5417023.790 267.792 511239.560 5417008.260 267.792 511233.904 5417008.188 267.792 511228.490 5417008.120 267.792 511228.380 5417017.560 267.792</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>2006</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember>
  <core:cityObjectMember>
    <bldg:Building gml:id="DEBW_0010000ZZFf">
      <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>DEBWL0010000ZZFf</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">13.256</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_c995f2e7-1b8c-4c4d-981f-f7b4f20559f0">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_f65ed7f1-056e-4f8c-bcef-acb221ac5c11">
              <gml:surfaceMember xlink:href="#Srf_3922bd6b-c395-479f-b159-867de7f6480e"/>
              <gml:surfaceMember xlink:href="#Srf_719710b8-d775-4fde-a884-9b58a69a7a86"/>
              <gml:surfaceMember xlink:href="#Srf_38830332-bb5b-4164-93c5-fe696da5c80b"/>
              <gml:surfaceMember xlink:href="#Srf_10cf699b-e6bc-45ef-8aba-726758533bc3"/>
              <gml:surfaceMember xlink:href="#Srf_c71fdb7f-710d-46a0-9e7a-e6ee37e49f34"/>
              <gml:surfaceMember xlink:href="#Srf_97b5e653-d8d2-4044-8635-620d29de640a"/>
              <gml:surfaceMember xlink:href="#Srf_c43136ff-8e8d-4f95-b92a-7b715d957191"/>
              <gml:surfaceMember xlink:href="#Srf_99b871e3-a142-4339-a679-29d98a64e469"/>
              <gml:surfaceMember xlink:href="#Srf_f5d73e91-ca6e-492f-b873-816f8776e8c2"/>
              <gml:surfaceMember xlink:href="#Srf_658c722b-ccd2-4252-b3a9-81352f869d48"/>
              <gml:surfaceMember xlink:href="#Srf_74991a1d-d0be-404d-8e8f-aa135697dd61"/>
              <gml:surfaceMember xlink:href="#Srf_d3879ad1-f69a-410b-8a4d-a3d0ecae8ef7"/>
              <gml:surfaceMember xlink:href="#Srf_a834cecc-ef4c-401a-b8d2-c5a8557e7a9d"/>
              <gml:surfaceMember xlink:href="#Srf_ec916281-1dc1-4065-bcb9-049de2db19e4"/>
              <gml:surfaceMember xlink:href="#Srf_7ab6488d-047a-4ac7-8c48-c62700a14624"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_8f438c1b-de4b-4d21-aee3-e59de87de523">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fa520c3d-db05-4e81-a213-3d6fabf7644e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_97b5e653-d8d2-4044-8635-620d29de640a">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_97b5e653-d8d2-4044-8635-620d29de640a_0_">
                      <gml:posList srsDimension="3">511176.000 5417008.420 267.110 511176.230 5417008.440 267.110 511176.230 5417008.440 276.375 511176.000 5417008.420 276.373 511176.000 5417008.420 267.110</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_04e54287-2492-473e-bc83-990c6081dd1a">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_385448de-58d0-44ca-b92d-c967681ea45b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_a834cecc-ef4c-401a-b8d2-c5a8557e7a9d">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_a834cecc-ef4c-401a-b8d2-c5a8557e7a9d_0_">
                      <gml:posList srsDimension="3">511179.790 5417003.120 272.480 511176.230 5417008.440 276.375 511176.230 5417008.440 267.110 511179.790 5417003.120 267.110 511179.790 5417003.120 272.480</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_2fce8842-6cfe-473c-9bca-520743229af8">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a7f2a2e0-7e86-4156-a6ab-5b6cfea90808">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_38830332-bb5b-4164-93c5-fe696da5c80b">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_38830332-bb5b-4164-93c5-fe696da5c80b_0_">
                      <gml:posList srsDimension="3">511179.930 5417002.910 272.326 511179.790 5417003.120 272.480 511179.790 5417003.120 267.110 511179.930 5417002.910 267.110 511179.930 5417002.910 272.326</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_9fc4e578-d688-467d-be2a-8d1c77a422ed">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_973e3053-9313-426f-ad9b-f39c06e6a105">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_7ab6488d-047a-4ac7-8c48-c62700a14624">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_7ab6488d-047a-4ac7-8c48-c62700a14624_0_">
                      <gml:posList srsDimension="3">511179.930 5417002.910 267.110 511185.260 5417006.530 267.110 511185.260 5417006.530 274.569 511179.930 5417002.910 272.326 511179.930 5417002.910 267.110</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_3e642481-7060-4b79-9203-8b352c058ae8">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fe2d577c-bd5f-4f53-b4da-400de42601bf">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_3922bd6b-c395-479f-b159-867de7f6480e">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_3922bd6b-c395-479f-b159-867de7f6480e_0_">
                      <gml:posList srsDimension="3">511185.260 5417006.530 267.110 511186.380 5417007.290 267.110 511186.380 5417007.290 275.040 511185.260 5417006.530 274.569 511185.260 5417006.530 267.110</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_8be36606-c23b-4ee2-9fe8-2fb074bcb028">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b05d4e15-f86b-48dc-9f78-294fe605c05e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_ec916281-1dc1-4065-bcb9-049de2db19e4">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_ec916281-1dc1-4065-bcb9-049de2db19e4_0_">
                      <gml:posList srsDimension="3">511186.260 5417009.180 276.364 511186.380 5417007.290 275.040 511186.380 5417007.290 267.110 511186.260 5417009.180 267.110 511186.260 5417009.180 276.364</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_80fb6eaf-03ef-46b0-99ed-1d7f34eef927">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_da7ede91-7527-4701-97ca-099503b6bbf8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_f5d73e91-ca6e-492f-b873-816f8776e8c2">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_f5d73e91-ca6e-492f-b873-816f8776e8c2_0_">
                      <gml:posList srsDimension="3">511186.870 5417009.220 276.360 511186.260 5417009.180 276.364 511186.260 5417009.180 267.110 511186.870 5417009.220 267.110 511186.870 5417009.220 276.360</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_22caeeb0-e8b3-491d-b142-0bdbf1e8b49a">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
For faster browsing, not all history is shown. View entire blame