Grafenbühl.gml 9.36 MB
Newer Older
Ehlers's avatar
Ehlers committed
34001
34002
34003
34004
34005
34006
34007
34008
34009
34010
34011
34012
34013
34014
34015
34016
34017
34018
34019
34020
34021
34022
34023
34024
34025
34026
34027
34028
34029
34030
34031
34032
34033
34034
34035
34036
34037
34038
34039
34040
34041
34042
34043
34044
34045
34046
34047
34048
34049
34050
34051
34052
34053
34054
34055
34056
34057
34058
34059
34060
34061
34062
34063
34064
34065
34066
34067
34068
34069
34070
34071
34072
34073
34074
34075
34076
34077
34078
34079
34080
34081
34082
34083
34084
34085
34086
34087
34088
34089
34090
34091
34092
34093
34094
34095
34096
34097
34098
34099
34100
34101
34102
34103
34104
34105
34106
34107
34108
34109
34110
34111
34112
34113
34114
34115
34116
34117
34118
34119
34120
34121
34122
34123
34124
34125
34126
34127
34128
34129
34130
34131
34132
34133
34134
34135
34136
34137
34138
34139
34140
34141
34142
34143
34144
34145
34146
34147
34148
34149
34150
34151
34152
34153
34154
34155
34156
34157
34158
34159
34160
34161
34162
34163
34164
34165
34166
34167
34168
34169
34170
34171
34172
34173
34174
34175
34176
34177
34178
34179
34180
34181
34182
34183
34184
34185
34186
34187
34188
34189
34190
34191
34192
34193
34194
34195
34196
34197
34198
34199
34200
34201
34202
34203
34204
34205
34206
34207
34208
34209
34210
34211
34212
34213
34214
34215
34216
34217
34218
34219
34220
34221
34222
34223
34224
34225
34226
34227
34228
34229
34230
34231
34232
34233
34234
34235
34236
34237
34238
34239
34240
34241
34242
34243
34244
34245
34246
34247
34248
34249
34250
34251
34252
34253
34254
34255
34256
34257
34258
34259
34260
34261
34262
34263
34264
34265
34266
34267
34268
34269
34270
34271
34272
34273
34274
34275
34276
34277
34278
34279
34280
34281
34282
34283
34284
34285
34286
34287
34288
34289
34290
34291
34292
34293
34294
34295
34296
34297
34298
34299
34300
34301
34302
34303
34304
34305
34306
34307
34308
34309
34310
34311
34312
34313
34314
34315
34316
34317
34318
34319
34320
34321
34322
34323
34324
34325
34326
34327
34328
34329
34330
34331
34332
34333
34334
34335
34336
34337
34338
34339
34340
34341
34342
34343
34344
34345
34346
34347
34348
34349
34350
34351
34352
34353
34354
34355
34356
34357
34358
34359
34360
34361
34362
34363
34364
34365
34366
34367
34368
34369
34370
34371
34372
34373
34374
34375
34376
34377
34378
34379
34380
34381
34382
34383
34384
34385
34386
34387
34388
34389
34390
34391
34392
34393
34394
34395
34396
34397
34398
34399
34400
34401
34402
34403
34404
34405
34406
34407
34408
34409
34410
34411
34412
34413
34414
34415
34416
34417
34418
34419
34420
34421
34422
34423
34424
34425
34426
34427
34428
34429
34430
34431
34432
34433
34434
34435
34436
34437
34438
34439
34440
34441
34442
34443
34444
34445
34446
34447
34448
34449
34450
34451
34452
34453
34454
34455
34456
34457
34458
34459
34460
34461
34462
34463
34464
34465
34466
34467
34468
34469
34470
34471
34472
34473
34474
34475
34476
34477
34478
34479
34480
34481
34482
34483
34484
34485
34486
34487
34488
34489
34490
34491
34492
34493
34494
34495
34496
34497
34498
34499
34500
34501
34502
34503
34504
34505
34506
34507
34508
34509
34510
34511
34512
34513
34514
34515
34516
34517
34518
34519
34520
34521
34522
34523
34524
34525
34526
34527
34528
34529
34530
34531
34532
34533
34534
34535
34536
34537
34538
34539
34540
34541
34542
34543
34544
34545
34546
34547
34548
34549
34550
34551
34552
34553
34554
34555
34556
34557
34558
34559
34560
34561
34562
34563
34564
34565
34566
34567
34568
34569
34570
34571
34572
34573
34574
34575
34576
34577
34578
34579
34580
34581
34582
34583
34584
34585
34586
34587
34588
34589
34590
34591
34592
34593
34594
34595
34596
34597
34598
34599
34600
34601
34602
34603
34604
34605
34606
34607
34608
34609
34610
34611
34612
34613
34614
34615
34616
34617
34618
34619
34620
34621
34622
34623
34624
34625
34626
34627
34628
34629
34630
34631
34632
34633
34634
34635
34636
34637
34638
34639
34640
34641
34642
34643
34644
34645
34646
34647
34648
34649
34650
34651
34652
34653
34654
34655
34656
34657
34658
34659
34660
34661
34662
34663
34664
34665
34666
34667
34668
34669
34670
34671
34672
34673
34674
34675
34676
34677
34678
34679
34680
34681
34682
34683
34684
34685
34686
34687
34688
34689
34690
34691
34692
34693
34694
34695
34696
34697
34698
34699
34700
34701
34702
34703
34704
34705
34706
34707
34708
34709
34710
34711
34712
34713
34714
34715
34716
34717
34718
34719
34720
34721
34722
34723
34724
34725
34726
34727
34728
34729
34730
34731
34732
34733
34734
34735
34736
34737
34738
34739
34740
34741
34742
34743
34744
34745
34746
34747
34748
34749
34750
34751
34752
34753
34754
34755
34756
34757
34758
34759
34760
34761
34762
34763
34764
34765
34766
34767
34768
34769
34770
34771
34772
34773
34774
34775
34776
34777
34778
34779
34780
34781
34782
34783
34784
34785
34786
34787
34788
34789
34790
34791
34792
34793
34794
34795
34796
34797
34798
34799
34800
34801
34802
34803
34804
34805
34806
34807
34808
34809
34810
34811
34812
34813
34814
34815
34816
34817
34818
34819
34820
34821
34822
34823
34824
34825
34826
34827
34828
34829
34830
34831
34832
34833
34834
34835
34836
34837
34838
34839
34840
34841
34842
34843
34844
34845
34846
34847
34848
34849
34850
34851
34852
34853
34854
34855
34856
34857
34858
34859
34860
34861
34862
34863
34864
34865
34866
34867
34868
34869
34870
34871
34872
34873
34874
34875
34876
34877
34878
34879
34880
34881
34882
34883
34884
34885
34886
34887
34888
34889
34890
34891
34892
34893
34894
34895
34896
34897
34898
34899
34900
34901
34902
34903
34904
34905
34906
34907
34908
34909
34910
34911
34912
34913
34914
34915
34916
34917
34918
34919
34920
34921
34922
34923
34924
34925
34926
34927
34928
34929
34930
34931
34932
34933
34934
34935
34936
34937
34938
34939
34940
34941
34942
34943
34944
34945
34946
34947
34948
34949
34950
34951
34952
34953
34954
34955
34956
34957
34958
34959
34960
34961
34962
34963
34964
34965
34966
34967
34968
34969
34970
34971
34972
34973
34974
34975
34976
34977
34978
34979
34980
34981
34982
34983
34984
34985
34986
34987
34988
34989
34990
34991
34992
34993
34994
34995
34996
34997
34998
34999
35000
                      <gml:posList srsDimension="3">511058.050 5417161.180 273.498 511054.770 5417161.270 273.498 511054.770 5417161.270 276.001 511058.050 5417161.180 276.004 511058.050 5417161.180 273.498</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_6f99c356-8e1c-4e5f-bcec-67a25f289578">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4c692342-0a13-4ebd-b743-25339de1c591">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_fa128882-8ac3-46b6-9df2-83d39c2c9f1e">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_fa128882-8ac3-46b6-9df2-83d39c2c9f1e_0_">
                      <gml:posList srsDimension="3">511054.750 5417160.410 273.498 511054.750 5417160.410 275.969 511054.770 5417161.270 276.001 511054.770 5417161.270 273.498 511054.750 5417160.410 273.498</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_b1f6a054-5554-4b76-81ca-998ea38efbe1">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9f375de0-8179-4401-b93d-03154abd63c8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_eae374a2-7b8f-4dd3-a060-2d5b0d112e03">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_eae374a2-7b8f-4dd3-a060-2d5b0d112e03_0_">
                      <gml:posList srsDimension="3">511054.750 5417160.410 273.498 511055.180 5417160.400 273.498 511055.180 5417160.400 275.970 511054.750 5417160.410 275.969 511054.750 5417160.410 273.498</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1983</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember>
  <core:cityObjectMember>
    <bldg:Building gml:id="DEBW_0010000ZZDX">
      <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>DEBWL0010000ZZDX</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_3044</bldg:function>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">10.781</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_e5f6ea56-da8d-4d7b-a9d7-b85376c6fa30">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_102ac92c-bc0b-4003-9b11-39ab74dba208">
              <gml:surfaceMember xlink:href="#Srf_f30ee3fa-1dda-4e7c-b5b8-1ab72f51ef91"/>
              <gml:surfaceMember xlink:href="#Srf_b020afaa-c804-49d1-a109-35368a89db4f"/>
              <gml:surfaceMember xlink:href="#Srf_e9eb7b81-8e18-412d-b3eb-813317fe8671"/>
              <gml:surfaceMember xlink:href="#Srf_7d67f05f-79ee-493b-9b67-130bbd00424a"/>
              <gml:surfaceMember xlink:href="#Srf_cc72954b-c549-4565-8c54-2974488dca36"/>
              <gml:surfaceMember xlink:href="#Srf_89a2f9b5-b4ef-4434-a81e-b50f7b38075a"/>
              <gml:surfaceMember xlink:href="#Srf_df16ce72-1a8f-4224-9834-df8092f3f66f"/>
              <gml:surfaceMember xlink:href="#Srf_94401cff-4954-4e36-b841-7e6468d5608b"/>
              <gml:surfaceMember xlink:href="#Srf_ec94c223-e2d8-4cbe-bdef-bb88931fddc1"/>
              <gml:surfaceMember xlink:href="#Srf_60304dd7-ccec-4d5f-8711-0160212d0fa6"/>
              <gml:surfaceMember xlink:href="#Srf_66086082-3350-40d7-8501-d5b46777d115"/>
              <gml:surfaceMember xlink:href="#Srf_676ae2ee-e17f-4e60-99d0-bc68cf1aa80f"/>
              <gml:surfaceMember xlink:href="#Srf_e447caf6-dd77-4c0d-ab43-6013883724cd"/>
              <gml:surfaceMember xlink:href="#Srf_0b83dc6e-d479-44ac-a2d9-cb26f079cb7c"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_ab2eaf4a-ac47-48f5-ae0f-52a2d859b2d8">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1e3c160b-d588-439e-b72e-953f5c88c400">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_b020afaa-c804-49d1-a109-35368a89db4f">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_b020afaa-c804-49d1-a109-35368a89db4f_0_">
                      <gml:posList srsDimension="3">511081.890 5417085.530 272.527 511081.912 5417084.901 272.527 511081.912 5417084.901 283.308 511081.890 5417085.530 282.894 511081.890 5417085.530 272.527</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_eeb00723-9e6d-41fe-bc35-c66f72556a64">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6055010b-9e29-4e0c-aa16-7abd7cb4849d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_94401cff-4954-4e36-b841-7e6468d5608b">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_94401cff-4954-4e36-b841-7e6468d5608b_0_">
                      <gml:posList srsDimension="3">511081.912 5417084.901 283.308 511093.926 5417085.277 283.304 511093.770 5417089.940 280.232 511081.960 5417089.540 280.256 511081.890 5417085.530 282.894 511081.912 5417084.901 283.308</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_6995f724-8a12-45c6-a849-7e95f97d9717">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_295c0873-df89-4fda-83f5-7f884a07b3f1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_e9eb7b81-8e18-412d-b3eb-813317fe8671">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_e9eb7b81-8e18-412d-b3eb-813317fe8671_0_">
                      <gml:posList srsDimension="3">511082.070 5417080.280 280.251 511081.912 5417084.901 283.308 511081.912 5417084.901 272.527 511082.070 5417080.280 272.527 511082.070 5417080.280 280.251</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_295af791-46a3-4edb-a99f-940f93cdbc85">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c200511a-6218-44df-8437-9b4f6e7c0adb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_e447caf6-dd77-4c0d-ab43-6013883724cd">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_e447caf6-dd77-4c0d-ab43-6013883724cd_0_">
                      <gml:posList srsDimension="3">511082.070 5417080.280 272.527 511086.670 5417080.440 272.527 511086.670 5417080.440 280.260 511082.070 5417080.280 280.251 511082.070 5417080.280 272.527</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_a5476a0d-53ea-45d8-9256-9234f4e2f0cb">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fb0bf8b6-3b80-41ea-9dcc-256facb59cd3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_ec94c223-e2d8-4cbe-bdef-bb88931fddc1">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_ec94c223-e2d8-4cbe-bdef-bb88931fddc1_0_">
                      <gml:posList srsDimension="3">511081.912 5417084.901 272.527 511081.890 5417085.530 272.527 511081.750 5417089.530 272.527 511081.960 5417089.540 272.527 511093.770 5417089.940 272.527 511093.926 5417085.277 272.527 511094.050 5417081.560 272.527 511086.640 5417081.300 272.527 511086.670 5417080.440 272.527 511082.070 5417080.280 272.527 511081.912 5417084.901 272.527</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_fefd629e-a0bf-4b91-849f-9ce15e511744">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4fe6fe6a-6e0d-4371-a2ff-a1ff5e1c7050">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_f30ee3fa-1dda-4e7c-b5b8-1ab72f51ef91">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_f30ee3fa-1dda-4e7c-b5b8-1ab72f51ef91_0_">
                      <gml:posList srsDimension="3">511086.640 5417081.300 280.829 511086.670 5417080.440 280.260 511086.670 5417080.440 272.527 511086.640 5417081.300 272.527 511086.640 5417081.300 280.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_3ef2e0e4-e9a4-46ac-b910-71252f1e578e">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3fdf29dc-dd33-4887-bb73-e0379241e8bb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_0b83dc6e-d479-44ac-a2d9-cb26f079cb7c">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_0b83dc6e-d479-44ac-a2d9-cb26f079cb7c_0_">
                      <gml:posList srsDimension="3">511086.640 5417081.300 272.527 511094.050 5417081.560 272.527 511094.050 5417081.560 280.845 511086.640 5417081.300 280.829 511086.640 5417081.300 272.527</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_06e8f691-e1de-4a04-90a1-e37077193d4f">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f7caf5cf-6c00-444c-841c-587d4101f5b6">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_60304dd7-ccec-4d5f-8711-0160212d0fa6">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_60304dd7-ccec-4d5f-8711-0160212d0fa6_0_">
                      <gml:posList srsDimension="3">511093.926 5417085.277 283.304 511094.050 5417081.560 280.845 511094.050 5417081.560 272.527 511093.926 5417085.277 272.527 511093.926 5417085.277 283.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_ab1b448f-043e-4997-ad52-d3ed503f67e1">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_0d149eeb-3ed8-46bc-b06d-af00e4497520">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_7d67f05f-79ee-493b-9b67-130bbd00424a">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_7d67f05f-79ee-493b-9b67-130bbd00424a_0_">
                      <gml:posList srsDimension="3">511093.926 5417085.277 272.527 511093.770 5417089.940 272.527 511093.770 5417089.940 280.232 511093.926 5417085.277 283.304 511093.926 5417085.277 272.527</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_5a6e38d4-1ced-4458-a792-bd39db5a6335">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b65b04f7-d167-4259-9e50-d098d582073a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_cc72954b-c549-4565-8c54-2974488dca36">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_cc72954b-c549-4565-8c54-2974488dca36_0_">
                      <gml:posList srsDimension="3">511081.960 5417089.540 280.256 511093.770 5417089.940 280.232 511093.770 5417089.940 272.527 511081.960 5417089.540 272.527 511081.960 5417089.540 280.256</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_7be2ba98-1e83-4d34-a895-ca41ece5b72a">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b652a8a9-e859-4ced-ab47-01118bf2a9c5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_df16ce72-1a8f-4224-9834-df8092f3f66f">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_df16ce72-1a8f-4224-9834-df8092f3f66f_0_">
                      <gml:posList srsDimension="3">511081.750 5417089.530 280.258 511081.960 5417089.540 280.256 511081.960 5417089.540 272.527 511081.750 5417089.530 272.527 511081.750 5417089.530 280.258</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_e098f5db-4554-409e-a366-878dcd88e80f">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d8b714ea-b2ad-4d47-90f3-05cc248d99ae">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_89a2f9b5-b4ef-4434-a81e-b50f7b38075a">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_89a2f9b5-b4ef-4434-a81e-b50f7b38075a_0_">
                      <gml:posList srsDimension="3">511093.926 5417085.277 283.304 511081.912 5417084.901 283.308 511082.070 5417080.280 280.251 511086.670 5417080.440 280.260 511086.640 5417081.300 280.829 511094.050 5417081.560 280.845 511093.926 5417085.277 283.304</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_daa75dc5-d586-4121-9964-f4abdca767f0">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_120ff103-67d4-4fb6-8b98-2d7182c0dff6">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_66086082-3350-40d7-8501-d5b46777d115">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_66086082-3350-40d7-8501-d5b46777d115_0_">
                      <gml:posList srsDimension="3">511081.750 5417089.530 272.527 511081.890 5417085.530 272.527 511081.890 5417085.530 282.894 511081.750 5417089.530 280.258 511081.750 5417089.530 272.527</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_cc068edc-21a8-49a1-85d2-a49872a75afd">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_13c87000-930b-4566-a820-6a2c3c0b05de">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_676ae2ee-e17f-4e60-99d0-bc68cf1aa80f">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_676ae2ee-e17f-4e60-99d0-bc68cf1aa80f_0_">
                      <gml:posList srsDimension="3">511081.890 5417085.530 282.894 511081.960 5417089.540 280.256 511081.750 5417089.530 280.258 511081.890 5417085.530 282.894</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1997</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember>
  <core:cityObjectMember>
    <bldg:Building gml:id="DEBW_0010000ZZDc">
      <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>DEBWL0010000ZZDc</core:name>
        </core:externalObject>
      </core:externalReference>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>08118003</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2020-03-23</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_2463</bldg:function>
      <bldg:roofType>2100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">2.789</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_accdd0d3-bb12-4a0d-89ff-59d706359e83">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_14541e87-0f79-4bfd-badc-1be9f2d58a96">
              <gml:surfaceMember xlink:href="#Srf_652ec815-6709-49e1-9b8d-ccb3501deb32"/>
              <gml:surfaceMember xlink:href="#Srf_fe1c69f2-89b0-4c0f-891d-49d78627eef5"/>
              <gml:surfaceMember xlink:href="#Srf_14eea590-e746-44e7-b8ae-1a361d135d0a"/>
              <gml:surfaceMember xlink:href="#Srf_1931232d-05b6-4de7-8d38-8f66543b4710"/>
              <gml:surfaceMember xlink:href="#Srf_f92c5470-e3d1-4711-bf88-157801c5143b"/>
              <gml:surfaceMember xlink:href="#Srf_df6a496b-8e02-4114-9c45-5538051e1baf"/>
              <gml:surfaceMember xlink:href="#Srf_68b1d6ee-18b0-47fa-a94c-4c510b70628a"/>
              <gml:surfaceMember xlink:href="#Srf_f54deff6-71db-4a7a-b759-f40f065f2678"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_5f62f7b6-d515-452d-918d-62971d56c64b">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1c33b454-d6a2-4ff3-8db2-0e10c7efcfd6">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_652ec815-6709-49e1-9b8d-ccb3501deb32">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_652ec815-6709-49e1-9b8d-ccb3501deb32_0_">
                      <gml:posList srsDimension="3">511060.670 5417150.260 276.215 511060.960 5417150.260 276.213 511060.960 5417150.260 273.727 511060.670 5417150.260 273.727 511060.670 5417150.260 276.215</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_8fa9c9ad-14ae-427e-ad64-32e8de1521cc">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_645ac547-8c19-45ff-b924-ca0192e60082">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_fe1c69f2-89b0-4c0f-891d-49d78627eef5">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_fe1c69f2-89b0-4c0f-891d-49d78627eef5_0_">
                      <gml:posList srsDimension="3">511060.670 5417150.260 273.727 511060.730 5417154.570 273.727 511060.730 5417154.570 276.497 511060.670 5417150.260 276.215 511060.670 5417150.260 273.727</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_d9108c4d-751d-4632-95fd-0ec4ee43b257">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_46603f03-3888-4c60-a66c-749ee1f414b2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_f54deff6-71db-4a7a-b759-f40f065f2678">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_f54deff6-71db-4a7a-b759-f40f065f2678_0_">
                      <gml:posList srsDimension="3">511057.920 5417154.620 276.516 511060.730 5417154.570 276.497 511060.730 5417154.570 273.727 511057.920 5417154.620 273.727 511057.920 5417154.620 276.516</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_7be1cf2f-8f97-4c8c-985a-2c9d0a568309">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f83f77b1-fa3d-4742-bec3-06fa20bad090">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_14eea590-e746-44e7-b8ae-1a361d135d0a">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_14eea590-e746-44e7-b8ae-1a361d135d0a_0_">
                      <gml:posList srsDimension="3">511057.920 5417154.620 276.516 511057.800 5417147.600 276.056 511060.890 5417147.500 276.033 511060.960 5417150.260 276.213 511060.670 5417150.260 276.215 511060.730 5417154.570 276.497 511057.920 5417154.620 276.516</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_fa4e02d0-f675-4e23-b68b-ffdfebd8e240">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_0f8c5e9d-3a57-4bd3-9d42-5e443a799ee8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_1931232d-05b6-4de7-8d38-8f66543b4710">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_1931232d-05b6-4de7-8d38-8f66543b4710_0_">
                      <gml:posList srsDimension="3">511057.920 5417154.620 273.727 511057.800 5417147.600 273.727 511057.800 5417147.600 276.056 511057.920 5417154.620 276.516 511057.920 5417154.620 273.727</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_095ea4e9-7a7e-4838-88bc-5551f18616b3">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a8ddead7-8284-485f-80bd-3eb9fa1634c8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_f92c5470-e3d1-4711-bf88-157801c5143b">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_f92c5470-e3d1-4711-bf88-157801c5143b_0_">
                      <gml:posList srsDimension="3">511060.890 5417147.500 276.033 511057.800 5417147.600 276.056 511057.800 5417147.600 273.727 511060.890 5417147.500 273.727 511060.890 5417147.500 276.033</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_dec107f0-37dd-4b42-987d-ef490e2aa088">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_11ddc787-62c2-4578-b5ca-6e59cfa0dcb2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_68b1d6ee-18b0-47fa-a94c-4c510b70628a">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_68b1d6ee-18b0-47fa-a94c-4c510b70628a_0_">
                      <gml:posList srsDimension="3">511060.890 5417147.500 273.727 511060.960 5417150.260 273.727 511060.960 5417150.260 276.213 511060.890 5417147.500 276.033 511060.890 5417147.500 273.727</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_af82ad28-59b0-4e1b-b4c3-d37762a4901c">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_db22de53-d491-4156-9997-f5d48c93594f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_df6a496b-8e02-4114-9c45-5538051e1baf">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_df6a496b-8e02-4114-9c45-5538051e1baf_0_">
                      <gml:posList srsDimension="3">511057.800 5417147.600 273.727 511057.920 5417154.620 273.727 511060.730 5417154.570 273.727 511060.670 5417150.260 273.727 511060.960 5417150.260 273.727 511060.890 5417147.500 273.727 511057.800 5417147.600 273.727</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>2003</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember>
  <core:cityObjectMember>
    <bldg:Building gml:id="DEBW_0010000ZZDI">
      <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>DEBWL0010000ZZDI</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.278</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_10475efd-bbb1-46ed-9189-548059a91d1b">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_57c183a9-a1cd-4cf5-a26e-ac6510768ae5">
              <gml:surfaceMember xlink:href="#Srf_6098f97e-1570-45e1-b26d-7c8d7068483a"/>
              <gml:surfaceMember xlink:href="#Srf_352f3793-6b33-43a6-8ba5-c6bde6100560"/>
              <gml:surfaceMember xlink:href="#Srf_85b16c13-0dd7-42c8-8dcc-463f4cf5164f"/>
              <gml:surfaceMember xlink:href="#Srf_d2ca2f2c-69a3-4800-9dd0-3d1474e2651b"/>
              <gml:surfaceMember xlink:href="#Srf_f62559d2-f995-4edc-aa2a-3cafeae6368c"/>
              <gml:surfaceMember xlink:href="#Srf_c4db302b-c955-4a4a-a055-42201ce16727"/>
              <gml:surfaceMember xlink:href="#Srf_6b36e76d-9560-4dfd-bd7f-913eac8cfd8a"/>
              <gml:surfaceMember xlink:href="#Srf_47ede249-6faf-47dc-864b-17341d710ed1"/>
              <gml:surfaceMember xlink:href="#Srf_03afe410-2b71-4d12-b63f-a207eec8b7d0"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_28f36e2d-30df-4140-b3f1-bc5bdf3c6042">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c5e0e7cf-990d-49de-b457-791ed9500f9e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_47ede249-6faf-47dc-864b-17341d710ed1">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_47ede249-6faf-47dc-864b-17341d710ed1_0_">
                      <gml:posList srsDimension="3">510956.522 5417064.022 269.277 510951.970 5417060.900 269.277 510951.970 5417060.900 275.700 510956.522 5417064.022 279.555 510956.522 5417064.022 269.277</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_025c93c9-e95a-4db4-9b22-6a99f03488b2">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1eda7c25-6bc2-4160-baf2-f08b4b0f139c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_c4db302b-c955-4a4a-a055-42201ce16727">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_c4db302b-c955-4a4a-a055-42201ce16727_0_">
                      <gml:posList srsDimension="3">510956.522 5417064.022 279.555 510951.970 5417060.900 275.700 510955.510 5417055.740 275.684 510960.074 5417058.875 279.550 510956.522 5417064.022 279.555</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_822bcd9e-9d13-4ba2-8989-f6be803ef151">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_02b7f9fe-c05f-44a7-968e-388ebf48616c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_85b16c13-0dd7-42c8-8dcc-463f4cf5164f">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_85b16c13-0dd7-42c8-8dcc-463f4cf5164f_0_">
                      <gml:posList srsDimension="3">510955.510 5417055.740 275.684 510951.970 5417060.900 275.700 510951.970 5417060.900 269.277 510955.510 5417055.740 269.277 510955.510 5417055.740 275.684</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_442b119d-1e26-4430-9abc-0ae86c93c480">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ffa7f73f-ad7a-460f-a393-d49edca8bd6e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_d2ca2f2c-69a3-4800-9dd0-3d1474e2651b">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_d2ca2f2c-69a3-4800-9dd0-3d1474e2651b_0_">
                      <gml:posList srsDimension="3">510964.580 5417061.970 275.736 510961.040 5417067.120 275.734 510956.522 5417064.022 279.555 510960.074 5417058.875 279.550 510964.580 5417061.970 275.736</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_30cc2807-6ddf-487b-8320-6274353ff4c4">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e97a51e0-6c87-475d-8b6e-2c9f083ceaa6">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_f62559d2-f995-4edc-aa2a-3cafeae6368c">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_f62559d2-f995-4edc-aa2a-3cafeae6368c_0_">
                      <gml:posList srsDimension="3">510951.970 5417060.900 269.277 510956.522 5417064.022 269.277 510961.040 5417067.120 269.277 510964.580 5417061.970 269.277 510960.074 5417058.875 269.277 510955.510 5417055.740 269.277 510951.970 5417060.900 269.277</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_e8477f4c-eb3a-4087-8485-1883cbd2d54d">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d5dac88b-36b0-4dfd-96e4-8f9d3d3d5d6b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_352f3793-6b33-43a6-8ba5-c6bde6100560">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_352f3793-6b33-43a6-8ba5-c6bde6100560_0_">
                      <gml:posList srsDimension="3">510955.510 5417055.740 269.277 510960.074 5417058.875 269.277 510960.074 5417058.875 279.550 510955.510 5417055.740 275.684 510955.510 5417055.740 269.277</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_d2dfe371-cd30-4e4c-8409-2b5e05234468">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8125db8b-72aa-471a-95c1-0ca1c554423e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_6b36e76d-9560-4dfd-bd7f-913eac8cfd8a">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_6b36e76d-9560-4dfd-bd7f-913eac8cfd8a_0_">
                      <gml:posList srsDimension="3">510964.580 5417061.970 275.736 510960.074 5417058.875 279.550 510960.074 5417058.875 269.277 510964.580 5417061.970 269.277 510964.580 5417061.970 275.736</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_20b2c54b-e1d2-4890-b53a-e2c81f2488d4">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d893b019-88fe-48dc-811d-c5c236892c9a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_6098f97e-1570-45e1-b26d-7c8d7068483a">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_6098f97e-1570-45e1-b26d-7c8d7068483a_0_">
                      <gml:posList srsDimension="3">510964.580 5417061.970 269.277 510961.040 5417067.120 269.277 510961.040 5417067.120 275.734 510964.580 5417061.970 275.736 510964.580 5417061.970 269.277</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_9f7925ab-6839-4e2c-8e3f-5b9960da6b22">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_460d1c45-5f88-4f85-bff8-9c53d3c6a005">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_03afe410-2b71-4d12-b63f-a207eec8b7d0">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_03afe410-2b71-4d12-b63f-a207eec8b7d0_0_">
                      <gml:posList srsDimension="3">510956.522 5417064.022 279.555 510961.040 5417067.120 275.734 510961.040 5417067.120 269.277 510956.522 5417064.022 269.277 510956.522 5417064.022 279.555</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1947</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember>
  <core:cityObjectMember>
    <bldg:Building gml:id="DEBW_0010000ZZDi">
      <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>DEBWL0010000ZZDi</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.874</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_36a4edee-0c95-4929-ad3e-23789710d3b2">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_de76ac2b-f29e-4225-8c81-8b975031c6dc">
              <gml:surfaceMember xlink:href="#Srf_1f6568d5-95f5-49d5-a979-16e7bb29a90a"/>
              <gml:surfaceMember xlink:href="#Srf_247e88b7-9f5f-4945-a3d2-94c15c8819ae"/>
              <gml:surfaceMember xlink:href="#Srf_8195c4f7-fb1c-4443-88db-8ec3bf49d14c"/>
              <gml:surfaceMember xlink:href="#Srf_cf581ca0-028b-4cce-a9fc-7982d2e092cf"/>
              <gml:surfaceMember xlink:href="#Srf_026e5a41-a0ce-44cc-bec2-81bfb5e9b61c"/>
              <gml:surfaceMember xlink:href="#Srf_997a3bdb-9b3f-4623-b58d-5453c13370e6"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="UUID_31d9a164-76a6-4aae-8fca-83b72187dfb0">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a6f9b60f-63f6-4b5f-8b96-4fe3de8ef133">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_247e88b7-9f5f-4945-a3d2-94c15c8819ae">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_247e88b7-9f5f-4945-a3d2-94c15c8819ae_0_">
                      <gml:posList srsDimension="3">511104.610 5417140.880 275.344 511098.360 5417139.820 274.798 511099.270 5417134.520 274.790 511105.580 5417135.610 275.342 511104.610 5417140.880 275.344</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_a5f17c90-13e1-43d8-8e82-79a8c8b8382c">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_eaf108b1-fe7d-4572-9e7c-453bc4e9bbb5">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_cf581ca0-028b-4cce-a9fc-7982d2e092cf">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_cf581ca0-028b-4cce-a9fc-7982d2e092cf_0_">
                      <gml:posList srsDimension="3">511099.270 5417134.520 272.470 511105.580 5417135.610 272.470 511105.580 5417135.610 275.342 511099.270 5417134.520 274.790 511099.270 5417134.520 272.470</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_7c6b5ef6-c656-46bf-bc6e-58fbe8993c42">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_75fd4be0-0ab7-423c-a8af-807efdb1b711">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_1f6568d5-95f5-49d5-a979-16e7bb29a90a">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_1f6568d5-95f5-49d5-a979-16e7bb29a90a_0_">
                      <gml:posList srsDimension="3">511104.610 5417140.880 275.344 511105.580 5417135.610 275.342 511105.580 5417135.610 272.470 511104.610 5417140.880 272.470 511104.610 5417140.880 275.344</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_24856f3d-5143-4c8b-8646-e25981f174f9">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_876dbaf7-2de8-4643-85d6-44cf49ab422c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_8195c4f7-fb1c-4443-88db-8ec3bf49d14c">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_8195c4f7-fb1c-4443-88db-8ec3bf49d14c_0_">
                      <gml:posList srsDimension="3">511104.610 5417140.880 272.470 511098.360 5417139.820 272.470 511098.360 5417139.820 274.798 511104.610 5417140.880 275.344 511104.610 5417140.880 272.470</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_6d87e2a8-0945-4cc7-850c-0055d3104327">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2b9e026e-4cfb-40a7-bb13-9a0a2f552b77">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_026e5a41-a0ce-44cc-bec2-81bfb5e9b61c">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_026e5a41-a0ce-44cc-bec2-81bfb5e9b61c_0_">
                      <gml:posList srsDimension="3">511099.270 5417134.520 274.790 511098.360 5417139.820 274.798 511098.360 5417139.820 272.470 511099.270 5417134.520 272.470 511099.270 5417134.520 274.790</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_85aec871-6343-4820-bf27-dac0df731232">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_23266c84-a51e-49cc-be4b-501afbd01680">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_997a3bdb-9b3f-4623-b58d-5453c13370e6">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_997a3bdb-9b3f-4623-b58d-5453c13370e6_0_">
                      <gml:posList srsDimension="3">511098.360 5417139.820 272.470 511104.610 5417140.880 272.470 511105.580 5417135.610 272.470 511099.270 5417134.520 272.470 511098.360 5417139.820 272.470</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1958</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember>
  <core:cityObjectMember>
    <bldg:Building gml:id="DEBW_0010000ZZDj">
      <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>DEBWL0010000ZZDj</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.336</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_2ad21a3c-924d-441e-aa51-50c82ca7bd46">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_c56df419-21a2-4d95-8205-d58ec96c63b5">
              <gml:surfaceMember xlink:href="#Srf_e5283a10-7e8c-4996-a0c0-5da13792eeb9"/>
              <gml:surfaceMember xlink:href="#Srf_485662a6-bf69-476f-830b-92c41beeb1c4"/>
              <gml:surfaceMember xlink:href="#Srf_04607d61-71f4-4bf2-a504-f4d43bc0a1a0"/>
              <gml:surfaceMember xlink:href="#Srf_c5447a88-6328-4a4c-955c-12f1e85ca537"/>
              <gml:surfaceMember xlink:href="#Srf_5e069fb2-40c2-4bf7-81fe-fbc822876552"/>
              <gml:surfaceMember xlink:href="#Srf_8e242454-f09e-4941-a5b7-1797af6ba1c7"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_faef8082-9ffc-4519-a8bc-5ce8ad3d85f8">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_37e450d1-0b47-438d-b828-2a937f9b28c3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_e5283a10-7e8c-4996-a0c0-5da13792eeb9">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_e5283a10-7e8c-4996-a0c0-5da13792eeb9_0_">
                      <gml:posList srsDimension="3">511015.710 5417109.010 272.794 511009.760 5417109.120 272.794 511009.760 5417109.120 275.130 511015.710 5417109.010 275.130 511015.710 5417109.010 272.794</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_5fc9d5f0-a938-432e-840c-8fd526aef5c5">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1bc5d1d2-5ac9-4cfd-9428-84176b25d7f3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_485662a6-bf69-476f-830b-92c41beeb1c4">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_485662a6-bf69-476f-830b-92c41beeb1c4_0_">
                      <gml:posList srsDimension="3">511009.760 5417109.120 272.794 511009.640 5417103.170 272.794 511009.640 5417103.170 275.130 511009.760 5417109.120 275.130 511009.760 5417109.120 272.794</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_2827cedb-addc-4580-bffd-b9d034d43e0d">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ccc8ace1-e9e4-4194-bc82-7434eee036c1">
For faster browsing, not all history is shown. View entire blame