Grafenbühl.gml 9.36 MB
Newer Older
Ehlers's avatar
Ehlers committed
54001
54002
54003
54004
54005
54006
54007
54008
54009
54010
54011
54012
54013
54014
54015
54016
54017
54018
54019
54020
54021
54022
54023
54024
54025
54026
54027
54028
54029
54030
54031
54032
54033
54034
54035
54036
54037
54038
54039
54040
54041
54042
54043
54044
54045
54046
54047
54048
54049
54050
54051
54052
54053
54054
54055
54056
54057
54058
54059
54060
54061
54062
54063
54064
54065
54066
54067
54068
54069
54070
54071
54072
54073
54074
54075
54076
54077
54078
54079
54080
54081
54082
54083
54084
54085
54086
54087
54088
54089
54090
54091
54092
54093
54094
54095
54096
54097
54098
54099
54100
54101
54102
54103
54104
54105
54106
54107
54108
54109
54110
54111
54112
54113
54114
54115
54116
54117
54118
54119
54120
54121
54122
54123
54124
54125
54126
54127
54128
54129
54130
54131
54132
54133
54134
54135
54136
54137
54138
54139
54140
54141
54142
54143
54144
54145
54146
54147
54148
54149
54150
54151
54152
54153
54154
54155
54156
54157
54158
54159
54160
54161
54162
54163
54164
54165
54166
54167
54168
54169
54170
54171
54172
54173
54174
54175
54176
54177
54178
54179
54180
54181
54182
54183
54184
54185
54186
54187
54188
54189
54190
54191
54192
54193
54194
54195
54196
54197
54198
54199
54200
54201
54202
54203
54204
54205
54206
54207
54208
54209
54210
54211
54212
54213
54214
54215
54216
54217
54218
54219
54220
54221
54222
54223
54224
54225
54226
54227
54228
54229
54230
54231
54232
54233
54234
54235
54236
54237
54238
54239
54240
54241
54242
54243
54244
54245
54246
54247
54248
54249
54250
54251
54252
54253
54254
54255
54256
54257
54258
54259
54260
54261
54262
54263
54264
54265
54266
54267
54268
54269
54270
54271
54272
54273
54274
54275
54276
54277
54278
54279
54280
54281
54282
54283
54284
54285
54286
54287
54288
54289
54290
54291
54292
54293
54294
54295
54296
54297
54298
54299
54300
54301
54302
54303
54304
54305
54306
54307
54308
54309
54310
54311
54312
54313
54314
54315
54316
54317
54318
54319
54320
54321
54322
54323
54324
54325
54326
54327
54328
54329
54330
54331
54332
54333
54334
54335
54336
54337
54338
54339
54340
54341
54342
54343
54344
54345
54346
54347
54348
54349
54350
54351
54352
54353
54354
54355
54356
54357
54358
54359
54360
54361
54362
54363
54364
54365
54366
54367
54368
54369
54370
54371
54372
54373
54374
54375
54376
54377
54378
54379
54380
54381
54382
54383
54384
54385
54386
54387
54388
54389
54390
54391
54392
54393
54394
54395
54396
54397
54398
54399
54400
54401
54402
54403
54404
54405
54406
54407
54408
54409
54410
54411
54412
54413
54414
54415
54416
54417
54418
54419
54420
54421
54422
54423
54424
54425
54426
54427
54428
54429
54430
54431
54432
54433
54434
54435
54436
54437
54438
54439
54440
54441
54442
54443
54444
54445
54446
54447
54448
54449
54450
54451
54452
54453
54454
54455
54456
54457
54458
54459
54460
54461
54462
54463
54464
54465
54466
54467
54468
54469
54470
54471
54472
54473
54474
54475
54476
54477
54478
54479
54480
54481
54482
54483
54484
54485
54486
54487
54488
54489
54490
54491
54492
54493
54494
54495
54496
54497
54498
54499
54500
54501
54502
54503
54504
54505
54506
54507
54508
54509
54510
54511
54512
54513
54514
54515
54516
54517
54518
54519
54520
54521
54522
54523
54524
54525
54526
54527
54528
54529
54530
54531
54532
54533
54534
54535
54536
54537
54538
54539
54540
54541
54542
54543
54544
54545
54546
54547
54548
54549
54550
54551
54552
54553
54554
54555
54556
54557
54558
54559
54560
54561
54562
54563
54564
54565
54566
54567
54568
54569
54570
54571
54572
54573
54574
54575
54576
54577
54578
54579
54580
54581
54582
54583
54584
54585
54586
54587
54588
54589
54590
54591
54592
54593
54594
54595
54596
54597
54598
54599
54600
54601
54602
54603
54604
54605
54606
54607
54608
54609
54610
54611
54612
54613
54614
54615
54616
54617
54618
54619
54620
54621
54622
54623
54624
54625
54626
54627
54628
54629
54630
54631
54632
54633
54634
54635
54636
54637
54638
54639
54640
54641
54642
54643
54644
54645
54646
54647
54648
54649
54650
54651
54652
54653
54654
54655
54656
54657
54658
54659
54660
54661
54662
54663
54664
54665
54666
54667
54668
54669
54670
54671
54672
54673
54674
54675
54676
54677
54678
54679
54680
54681
54682
54683
54684
54685
54686
54687
54688
54689
54690
54691
54692
54693
54694
54695
54696
54697
54698
54699
54700
54701
54702
54703
54704
54705
54706
54707
54708
54709
54710
54711
54712
54713
54714
54715
54716
54717
54718
54719
54720
54721
54722
54723
54724
54725
54726
54727
54728
54729
54730
54731
54732
54733
54734
54735
54736
54737
54738
54739
54740
54741
54742
54743
54744
54745
54746
54747
54748
54749
54750
54751
54752
54753
54754
54755
54756
54757
54758
54759
54760
54761
54762
54763
54764
54765
54766
54767
54768
54769
54770
54771
54772
54773
54774
54775
54776
54777
54778
54779
54780
54781
54782
54783
54784
54785
54786
54787
54788
54789
54790
54791
54792
54793
54794
54795
54796
54797
54798
54799
54800
54801
54802
54803
54804
54805
54806
54807
54808
54809
54810
54811
54812
54813
54814
54815
54816
54817
54818
54819
54820
54821
54822
54823
54824
54825
54826
54827
54828
54829
54830
54831
54832
54833
54834
54835
54836
54837
54838
54839
54840
54841
54842
54843
54844
54845
54846
54847
54848
54849
54850
54851
54852
54853
54854
54855
54856
54857
54858
54859
54860
54861
54862
54863
54864
54865
54866
54867
54868
54869
54870
54871
54872
54873
54874
54875
54876
54877
54878
54879
54880
54881
54882
54883
54884
54885
54886
54887
54888
54889
54890
54891
54892
54893
54894
54895
54896
54897
54898
54899
54900
54901
54902
54903
54904
54905
54906
54907
54908
54909
54910
54911
54912
54913
54914
54915
54916
54917
54918
54919
54920
54921
54922
54923
54924
54925
54926
54927
54928
54929
54930
54931
54932
54933
54934
54935
54936
54937
54938
54939
54940
54941
54942
54943
54944
54945
54946
54947
54948
54949
54950
54951
54952
54953
54954
54955
54956
54957
54958
54959
54960
54961
54962
54963
54964
54965
54966
54967
54968
54969
54970
54971
54972
54973
54974
54975
54976
54977
54978
54979
54980
54981
54982
54983
54984
54985
54986
54987
54988
54989
54990
54991
54992
54993
54994
54995
54996
54997
54998
54999
55000
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_4ea823ce-8d8a-471d-a729-5691c3bd5946">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1700afb7-bbfd-40ce-bb1b-97e6bcc724c1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_0793951a-e218-4be8-822c-877ba7ef38eb">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_0793951a-e218-4be8-822c-877ba7ef38eb_0_">
                      <gml:posList srsDimension="3">511026.150 5417007.580 270.387 511026.150 5417007.580 272.840 511026.190 5417008.930 272.953 511026.190 5417008.930 270.387 511026.150 5417007.580 270.387</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_8c2504c4-c1f0-43be-989b-9da6f9c85ef8">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_26427ddc-04fe-4526-ab17-b64051213fab">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_f1e12a10-1c6c-447b-9c25-51c32d6eeeab">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_f1e12a10-1c6c-447b-9c25-51c32d6eeeab_0_">
                      <gml:posList srsDimension="3">511029.470 5417007.480 272.829 511026.150 5417007.580 272.840 511026.150 5417007.580 270.387 511029.470 5417007.480 270.387 511029.470 5417007.480 272.829</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_4771adfc-ae0e-45eb-9963-0276e22eda5c">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e357464b-65a6-4f1a-a9b1-853b6e935175">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_32e01afa-6879-4bb4-ba23-39892523409b">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_32e01afa-6879-4bb4-ba23-39892523409b_0_">
                      <gml:posList srsDimension="3">511026.150 5417007.580 270.387 511026.190 5417008.930 270.387 511026.270 5417008.930 270.387 511026.400 5417013.230 270.387 511029.640 5417013.130 270.387 511029.470 5417007.480 270.387 511026.150 5417007.580 270.387</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>2007</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember>
  <core:cityObjectMember>
    <bldg:Building gml:id="DEBW_0010000ZZEx">
      <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>DEBWL0010000ZZEx</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">3.433</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_69cda81d-f622-48e1-8080-693ec23d1244">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_23842916-b60c-41d8-80c7-7e117d2cd973">
              <gml:surfaceMember xlink:href="#Srf_fbb0845c-c6c5-44ee-802e-640923f4dbf8"/>
              <gml:surfaceMember xlink:href="#Srf_15fab574-461b-46b9-8dc7-809dfb87bf8c"/>
              <gml:surfaceMember xlink:href="#Srf_cdcbbab1-b834-40a0-a9ed-06cbc14ddccf"/>
              <gml:surfaceMember xlink:href="#Srf_0f91080f-6228-42e1-b577-28117809c298"/>
              <gml:surfaceMember xlink:href="#Srf_07cd7e1d-6c9f-418e-9ff5-c7c49c12aced"/>
              <gml:surfaceMember xlink:href="#Srf_1fa09301-dd83-4806-bdd1-dc12be21fe30"/>
              <gml:surfaceMember xlink:href="#Srf_c7deb599-e368-4cb5-9d3d-195e81e115a1"/>
              <gml:surfaceMember xlink:href="#Srf_96b8404d-254d-4990-a80e-566518434995"/>
              <gml:surfaceMember xlink:href="#Srf_4588f251-561a-4e84-9bbc-129855c9d145"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_c2413e23-d560-4caf-ac60-2adf39d00580">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_10ddef78-c668-4cd7-9226-70ec9108c925">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_0f91080f-6228-42e1-b577-28117809c298">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_0f91080f-6228-42e1-b577-28117809c298_0_">
                      <gml:posList srsDimension="3">511070.680 5417008.090 272.736 511070.680 5417008.090 269.872 511070.690 5417008.360 269.872 511070.690 5417008.360 272.760 511070.680 5417008.090 272.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_2ffff2a9-9e5e-439c-b67c-fca59342a91e">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_efb84117-5e75-4878-9c6c-2b6b0794080b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_1fa09301-dd83-4806-bdd1-dc12be21fe30">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_1fa09301-dd83-4806-bdd1-dc12be21fe30_0_">
                      <gml:posList srsDimension="3">511070.690 5417008.360 269.872 511070.830 5417014.460 269.872 511070.830 5417014.460 273.303 511070.690 5417008.360 272.760 511070.690 5417008.360 269.872</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_97f73efd-7134-493f-a96b-3d0fbc22d12a">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_22af150f-d3f5-4c3d-8268-2c79e7f9cb1d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_c7deb599-e368-4cb5-9d3d-195e81e115a1">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_c7deb599-e368-4cb5-9d3d-195e81e115a1_0_">
                      <gml:posList srsDimension="3">511070.550 5417014.470 273.305 511070.830 5417014.460 273.303 511070.830 5417014.460 269.872 511070.550 5417014.470 269.872 511070.550 5417014.470 273.305</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_a6b2f84e-35fb-45e3-95db-560462c0b001">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5bd9dd11-15a5-4bbf-9a7c-3f87b520b146">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_07cd7e1d-6c9f-418e-9ff5-c7c49c12aced">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_07cd7e1d-6c9f-418e-9ff5-c7c49c12aced_0_">
                      <gml:posList srsDimension="3">511070.540 5417014.100 269.872 511070.540 5417014.100 273.272 511070.550 5417014.470 273.305 511070.550 5417014.470 269.872 511070.540 5417014.100 269.872</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_42aaca3f-6217-46e5-8d40-aed3009113ca">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e350b01b-e1fd-4d6c-9e28-6e6f95448765">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_fbb0845c-c6c5-44ee-802e-640923f4dbf8">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_fbb0845c-c6c5-44ee-802e-640923f4dbf8_0_">
                      <gml:posList srsDimension="3">511067.840 5417014.150 273.285 511070.540 5417014.100 273.272 511070.540 5417014.100 269.872 511067.840 5417014.150 269.872 511067.840 5417014.150 273.285</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_ab4d5835-2be7-4368-bec7-87c9777ba356">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c8212bbf-e4cc-425b-892d-318efb4948b1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_15fab574-461b-46b9-8dc7-809dfb87bf8c">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_15fab574-461b-46b9-8dc7-809dfb87bf8c_0_">
                      <gml:posList srsDimension="3">511067.840 5417014.150 269.872 511067.700 5417008.160 269.872 511067.700 5417008.160 272.752 511067.840 5417014.150 273.285 511067.840 5417014.150 269.872</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_58e3a857-d841-43e7-a9cb-27fded6c2e97">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_bfad9c50-ca6e-478e-a2ec-29608cfa201d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_4588f251-561a-4e84-9bbc-129855c9d145">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_4588f251-561a-4e84-9bbc-129855c9d145_0_">
                      <gml:posList srsDimension="3">511070.680 5417008.090 272.736 511067.700 5417008.160 272.752 511067.700 5417008.160 269.872 511070.680 5417008.090 269.872 511070.680 5417008.090 272.736</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_3a793609-76a7-49eb-ac03-b33c85b9402f">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3739f640-5f24-449e-9b91-10e62af9782b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_96b8404d-254d-4990-a80e-566518434995">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_96b8404d-254d-4990-a80e-566518434995_0_">
                      <gml:posList srsDimension="3">511067.840 5417014.150 269.872 511070.540 5417014.100 269.872 511070.550 5417014.470 269.872 511070.830 5417014.460 269.872 511070.690 5417008.360 269.872 511070.680 5417008.090 269.872 511067.700 5417008.160 269.872 511067.840 5417014.150 269.872</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_3206166f-87b1-47c6-8fe0-8ec6b95b9e83">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a62fc5a1-8676-414c-9b74-618775180c21">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_cdcbbab1-b834-40a0-a9ed-06cbc14ddccf">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_cdcbbab1-b834-40a0-a9ed-06cbc14ddccf_0_">
                      <gml:posList srsDimension="3">511070.540 5417014.100 273.272 511067.840 5417014.150 273.285 511067.700 5417008.160 272.752 511070.680 5417008.090 272.736 511070.690 5417008.360 272.760 511070.830 5417014.460 273.303 511070.550 5417014.470 273.305 511070.540 5417014.100 273.272</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1924</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember>
  <core:cityObjectMember>
    <bldg:Building gml:id="DEBW_0010000ZZF4">
      <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>DEBWL0010000ZZF4</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.570</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_2e4e51bb-d537-498e-b708-506d54379183">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_d82f9ddb-4447-4381-ab2f-a367c286aa71">
              <gml:surfaceMember xlink:href="#Srf_20b35413-10a4-4d80-bb59-ee216a457e6b"/>
              <gml:surfaceMember xlink:href="#Srf_f6050e0c-3c00-474d-b912-5bcd9b54a973"/>
              <gml:surfaceMember xlink:href="#Srf_07eb7c68-80eb-43df-9b45-d2abc3a5148e"/>
              <gml:surfaceMember xlink:href="#Srf_61386899-6e0e-4009-8b7f-f0eac47c151b"/>
              <gml:surfaceMember xlink:href="#Srf_4d9fd12c-af53-4633-9983-f6f10f3557fe"/>
              <gml:surfaceMember xlink:href="#Srf_d0f71b11-aa31-4e7f-b0cb-a22f88c9a98a"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="UUID_e9fb4dcb-59b7-4a75-a780-ca8cde7a15b9">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6c8b9221-b672-4ef1-a111-c7e6766ff609">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_07eb7c68-80eb-43df-9b45-d2abc3a5148e">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_07eb7c68-80eb-43df-9b45-d2abc3a5148e_0_">
                      <gml:posList srsDimension="3">511159.670 5416950.010 266.900 511162.190 5416950.270 266.900 511161.490 5416957.130 266.900 511158.980 5416956.870 266.900 511159.670 5416950.010 266.900</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_4af9d3de-db99-4814-8538-d1968b926f06">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b8d3f24d-0fa4-458e-8b3d-5f1c1563d3a9">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_f6050e0c-3c00-474d-b912-5bcd9b54a973">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_f6050e0c-3c00-474d-b912-5bcd9b54a973_0_">
                      <gml:posList srsDimension="3">511159.670 5416950.010 264.330 511162.190 5416950.270 264.330 511162.190 5416950.270 266.900 511159.670 5416950.010 266.900 511159.670 5416950.010 264.330</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_c9db8450-3331-43da-a342-efc9ed246e6d">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ff83f54d-7627-43d6-8006-f5d5d279bbca">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_61386899-6e0e-4009-8b7f-f0eac47c151b">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_61386899-6e0e-4009-8b7f-f0eac47c151b_0_">
                      <gml:posList srsDimension="3">511162.190 5416950.270 264.330 511161.490 5416957.130 264.330 511161.490 5416957.130 266.900 511162.190 5416950.270 266.900 511162.190 5416950.270 264.330</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_ebc3e1e4-513c-4325-ae7f-cfff7ace7500">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_342bc4e5-bea3-4c90-bd37-2807a81064dd">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_4d9fd12c-af53-4633-9983-f6f10f3557fe">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_4d9fd12c-af53-4633-9983-f6f10f3557fe_0_">
                      <gml:posList srsDimension="3">511161.490 5416957.130 264.330 511158.980 5416956.870 264.330 511158.980 5416956.870 266.900 511161.490 5416957.130 266.900 511161.490 5416957.130 264.330</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_757393ff-11c3-49f9-9095-e5a557f3ce66">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4d2dbb02-5e6e-42f7-9ceb-2bd5c7d7ec28">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_d0f71b11-aa31-4e7f-b0cb-a22f88c9a98a">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_d0f71b11-aa31-4e7f-b0cb-a22f88c9a98a_0_">
                      <gml:posList srsDimension="3">511158.980 5416956.870 264.330 511159.670 5416950.010 264.330 511159.670 5416950.010 266.900 511158.980 5416956.870 266.900 511158.980 5416956.870 264.330</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_7533b512-f5e3-4769-b77b-71b5c497c8c2">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_16e6abef-0407-4f65-8492-b4d14fa02a82">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_20b35413-10a4-4d80-bb59-ee216a457e6b">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_20b35413-10a4-4d80-bb59-ee216a457e6b_0_">
                      <gml:posList srsDimension="3">511162.190 5416950.270 264.330 511159.670 5416950.010 264.330 511158.980 5416956.870 264.330 511161.490 5416957.130 264.330 511162.190 5416950.270 264.330</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1975</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember>
  <core:cityObjectMember>
    <bldg:Building gml:id="DEBW_0010000ZZF8">
      <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>DEBWL0010000ZZF8</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.544</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_bb1f8df7-5fe7-4da6-8628-d746384b32cc">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_e92aeb66-512b-40d2-b925-3248034f0b22">
              <gml:surfaceMember xlink:href="#Srf_d930fc8c-390e-49e0-a008-de6631611a69"/>
              <gml:surfaceMember xlink:href="#Srf_02fcfead-3855-47c0-bb85-b6bd411c3e66"/>
              <gml:surfaceMember xlink:href="#Srf_8daee310-fc41-4937-80de-0d2f0caeb954"/>
              <gml:surfaceMember xlink:href="#Srf_925afbd9-cd01-4845-b4a5-0b86b7c52cc1"/>
              <gml:surfaceMember xlink:href="#Srf_d63b2aef-e2cb-4043-bcba-de7447af8ef5"/>
              <gml:surfaceMember xlink:href="#Srf_a2e55198-d715-4fb7-941b-9db27d424e74"/>
              <gml:surfaceMember xlink:href="#Srf_0d3b9791-1c4d-44f5-a82d-d22e5e801d2c"/>
              <gml:surfaceMember xlink:href="#Srf_ce5edff4-6237-4560-8d31-0b47ceecd51a"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="UUID_f9edadc5-daf8-48a7-a7be-674009a21688">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7f3395a7-340b-4ca4-98c8-723b26a92f49">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_ce5edff4-6237-4560-8d31-0b47ceecd51a">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_ce5edff4-6237-4560-8d31-0b47ceecd51a_0_">
                      <gml:posList srsDimension="3">511146.840 5416994.570 269.351 511143.380 5416993.810 269.351 511142.740 5416996.710 269.351 511151.550 5416998.670 269.351 511152.250 5416995.500 269.351 511146.890 5416994.310 269.351 511146.840 5416994.570 269.351</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_83596645-c644-4383-89a5-8bba5193b002">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_cbd1f67a-ffa0-4c52-91fc-6004364a14d4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_02fcfead-3855-47c0-bb85-b6bd411c3e66">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_02fcfead-3855-47c0-bb85-b6bd411c3e66_0_">
                      <gml:posList srsDimension="3">511143.380 5416993.810 271.895 511146.840 5416994.570 271.895 511146.890 5416994.310 271.895 511152.250 5416995.500 271.895 511151.550 5416998.670 271.895 511142.740 5416996.710 271.895 511143.380 5416993.810 271.895</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_146848aa-ab52-4f9f-966f-86cdb7087a1d">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9573309c-723f-4665-8129-dff2e84c68db">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_925afbd9-cd01-4845-b4a5-0b86b7c52cc1">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_925afbd9-cd01-4845-b4a5-0b86b7c52cc1_0_">
                      <gml:posList srsDimension="3">511143.380 5416993.810 269.351 511146.840 5416994.570 269.351 511146.840 5416994.570 271.895 511143.380 5416993.810 271.895 511143.380 5416993.810 269.351</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_6cea6c09-ae29-44c2-b252-b7de36570afa">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d32f1006-5b84-4a62-b667-6b04fff92426">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_d930fc8c-390e-49e0-a008-de6631611a69">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_d930fc8c-390e-49e0-a008-de6631611a69_0_">
                      <gml:posList srsDimension="3">511146.890 5416994.310 269.351 511146.890 5416994.310 271.895 511146.840 5416994.570 271.895 511146.840 5416994.570 269.351 511146.890 5416994.310 269.351</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_1b3bdd5e-097b-4cf0-b04d-8c083a728089">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_19e2599e-cd19-4237-bc17-903f5a1d6dae">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_0d3b9791-1c4d-44f5-a82d-d22e5e801d2c">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_0d3b9791-1c4d-44f5-a82d-d22e5e801d2c_0_">
                      <gml:posList srsDimension="3">511146.890 5416994.310 269.351 511152.250 5416995.500 269.351 511152.250 5416995.500 271.895 511146.890 5416994.310 271.895 511146.890 5416994.310 269.351</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_a2310118-1946-41d2-8788-cfea23044e4b">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ec927831-3982-4a86-99db-2a9032203f2b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_8daee310-fc41-4937-80de-0d2f0caeb954">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_8daee310-fc41-4937-80de-0d2f0caeb954_0_">
                      <gml:posList srsDimension="3">511152.250 5416995.500 269.351 511151.550 5416998.670 269.351 511151.550 5416998.670 271.895 511152.250 5416995.500 271.895 511152.250 5416995.500 269.351</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_ea2c640e-1a95-4cb1-adaf-92dc6701806a">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2bd2bf4c-7827-4867-b407-4eb6b8c59679">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_a2e55198-d715-4fb7-941b-9db27d424e74">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_a2e55198-d715-4fb7-941b-9db27d424e74_0_">
                      <gml:posList srsDimension="3">511151.550 5416998.670 269.351 511142.740 5416996.710 269.351 511142.740 5416996.710 271.895 511151.550 5416998.670 271.895 511151.550 5416998.670 269.351</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_a434485d-9177-446d-8cd1-f25e9cbad655">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ed9572fc-b06a-4f7e-99ec-597194f4cf98">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_d63b2aef-e2cb-4043-bcba-de7447af8ef5">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_d63b2aef-e2cb-4043-bcba-de7447af8ef5_0_">
                      <gml:posList srsDimension="3">511142.740 5416996.710 269.351 511143.380 5416993.810 269.351 511143.380 5416993.810 271.895 511142.740 5416996.710 271.895 511142.740 5416996.710 269.351</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_0010000ZZEN">
      <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>DEBWL0010000ZZEN</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">12.083</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_283cb43b-49e9-4e31-b3a5-4433a0fd7ac2">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_5559a0ef-da7f-457d-829b-bd7870043bc3">
              <gml:surfaceMember xlink:href="#Srf_35485d1f-667a-442c-b20e-28a557aeb7dc"/>
              <gml:surfaceMember xlink:href="#Srf_ea76e9b0-0f2c-4463-9d9c-d6fb00e732d2"/>
              <gml:surfaceMember xlink:href="#Srf_c2f5a8c7-bdd0-4650-8cb2-8903951e7561"/>
              <gml:surfaceMember xlink:href="#Srf_ca87426d-c418-41ea-b3d1-a57d061c0a9c"/>
              <gml:surfaceMember xlink:href="#Srf_c608ce33-0eeb-4d94-ade2-c1ed5a8fc861"/>
              <gml:surfaceMember xlink:href="#Srf_341557a1-c7b5-471c-beee-259f055e4cad"/>
              <gml:surfaceMember xlink:href="#Srf_b756265c-b0b3-4cec-8bc4-8b962db3694e"/>
              <gml:surfaceMember xlink:href="#Srf_89183f3d-8d04-439f-8b93-5ef4240449d2"/>
              <gml:surfaceMember xlink:href="#Srf_b09c4141-27a2-433d-a112-2318d8ed9966"/>
              <gml:surfaceMember xlink:href="#Srf_ee0df6a9-579a-4e16-ba9f-2e2f10c1df76"/>
              <gml:surfaceMember xlink:href="#Srf_6fbaf363-6cda-4f54-b5d2-7a8fc63bbec0"/>
              <gml:surfaceMember xlink:href="#Srf_2ad9a2d0-bc25-40db-8418-a520862d2c4c"/>
              <gml:surfaceMember xlink:href="#Srf_396c5eed-aa05-4d5e-9269-ee6ac7468061"/>
              <gml:surfaceMember xlink:href="#Srf_88ee67b2-74c6-46fb-ae5a-f391d73ba0de"/>
              <gml:surfaceMember xlink:href="#Srf_61ed0cc5-9855-41d8-82b4-da696e6d1ac4"/>
              <gml:surfaceMember xlink:href="#Srf_abae91a9-32c1-4703-9137-156b9d8d386f"/>
              <gml:surfaceMember xlink:href="#Srf_d4073d01-c87e-447e-84de-dee360a7c98c"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="UUID_0565fafb-d29d-4098-91af-b2d1bda70d7b">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_63f3668f-ac7d-468e-a8f8-ed35cc33e8dc">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_b09c4141-27a2-433d-a112-2318d8ed9966">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_b09c4141-27a2-433d-a112-2318d8ed9966_0_">
                      <gml:posList srsDimension="3">511039.760 5416971.580 275.849 511047.380 5416967.650 275.839 511055.060 5416963.700 275.832 511055.180 5416963.640 275.833 511054.720 5416962.730 275.426 511054.830 5416962.680 275.428 511057.860 5416968.609 278.084 511042.351 5416976.603 278.102 511039.760 5416971.580 275.849</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_e6165f85-0f26-42c0-aefa-c5fe9f4dbcfb">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_0798ba85-a936-491b-b981-d2956a6acf48">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_6fbaf363-6cda-4f54-b5d2-7a8fc63bbec0">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_6fbaf363-6cda-4f54-b5d2-7a8fc63bbec0_0_">
                      <gml:posList srsDimension="3">511060.180 5416973.150 274.523 511053.700 5416976.500 274.525 511053.810 5416976.710 274.359 511051.480 5416977.910 274.363 511051.370 5416977.700 274.528 511044.690 5416981.140 274.538 511042.351 5416976.603 278.102 511057.860 5416968.609 278.084 511060.180 5416973.150 274.523</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_aee31bb5-50aa-4b1b-9e6f-60cc6ff96b20">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2e3667fc-52ff-43ee-9981-2a4f2762c33c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_ea76e9b0-0f2c-4463-9d9c-d6fb00e732d2">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_ea76e9b0-0f2c-4463-9d9c-d6fb00e732d2_0_">
                      <gml:posList srsDimension="3">511055.060 5416963.700 275.832 511047.380 5416967.650 275.839 511047.380 5416967.650 266.019 511055.060 5416963.700 266.019 511055.060 5416963.700 275.832</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_ab4bb3c2-b8e7-4d2a-ad7a-7ac62ae55a2e">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f9784b9c-6608-4baa-9f22-124f153cb5c9">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_abae91a9-32c1-4703-9137-156b9d8d386f">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_abae91a9-32c1-4703-9137-156b9d8d386f_0_">
                      <gml:posList srsDimension="3">511055.060 5416963.700 266.019 511055.180 5416963.640 266.019 511055.180 5416963.640 275.833 511055.060 5416963.700 275.832 511055.060 5416963.700 266.019</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_68efec58-3f8a-426a-9e8d-a4963e498778">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7856d0a4-e3cb-417f-9bb9-62b4a4afde28">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_ca87426d-c418-41ea-b3d1-a57d061c0a9c">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_ca87426d-c418-41ea-b3d1-a57d061c0a9c_0_">
                      <gml:posList srsDimension="3">511055.180 5416963.640 266.019 511054.720 5416962.730 266.019 511054.720 5416962.730 275.426 511055.180 5416963.640 275.833 511055.180 5416963.640 266.019</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_aba78df0-c8a7-4762-b5ce-065af2ed8a32">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f3b1768d-f44c-4ad2-bb1b-984138011b7c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_d4073d01-c87e-447e-84de-dee360a7c98c">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_d4073d01-c87e-447e-84de-dee360a7c98c_0_">
                      <gml:posList srsDimension="3">511054.720 5416962.730 266.019 511054.830 5416962.680 266.019 511054.830 5416962.680 275.428 511054.720 5416962.730 275.426 511054.720 5416962.730 266.019</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_86ddb6e0-4b3b-4778-9116-42d4dc6c36f1">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_32dccae8-631d-43e2-b10b-8fb416af68f1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_c608ce33-0eeb-4d94-ade2-c1ed5a8fc861">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_c608ce33-0eeb-4d94-ade2-c1ed5a8fc861_0_">
                      <gml:posList srsDimension="3">511054.830 5416962.680 266.019 511057.860 5416968.609 266.019 511057.860 5416968.609 278.084 511054.830 5416962.680 275.428 511054.830 5416962.680 266.019</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_2ad354c0-1407-4e2f-8b87-618a7b38b03b">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f25dec9d-3064-4769-9127-fd1727165e42">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_c2f5a8c7-bdd0-4650-8cb2-8903951e7561">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_c2f5a8c7-bdd0-4650-8cb2-8903951e7561_0_">
                      <gml:posList srsDimension="3">511060.180 5416973.150 274.523 511057.860 5416968.609 278.084 511057.860 5416968.609 266.019 511060.180 5416973.150 266.019 511060.180 5416973.150 274.523</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_47212806-b769-4a60-b646-d57c17516e50">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_15de6721-6021-414d-bee2-96965fd0a22d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_341557a1-c7b5-471c-beee-259f055e4cad">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_341557a1-c7b5-471c-beee-259f055e4cad_0_">
                      <gml:posList srsDimension="3">511053.700 5416976.500 274.525 511060.180 5416973.150 274.523 511060.180 5416973.150 266.019 511053.700 5416976.500 266.019 511053.700 5416976.500 274.525</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_b60410b7-c843-46da-92dd-7922465f271d">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2f3f08f1-89ae-4e8d-b34e-5a6360edf232">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_2ad9a2d0-bc25-40db-8418-a520862d2c4c">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_2ad9a2d0-bc25-40db-8418-a520862d2c4c_0_">
                      <gml:posList srsDimension="3">511053.810 5416976.710 274.359 511053.700 5416976.500 274.525 511053.700 5416976.500 266.019 511053.810 5416976.710 266.019 511053.810 5416976.710 274.359</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_ed779e6b-ce04-4795-aaf4-baf2c6d3de63">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_23bf3af7-d0dc-4276-8576-4077e3122602">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_89183f3d-8d04-439f-8b93-5ef4240449d2">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_89183f3d-8d04-439f-8b93-5ef4240449d2_0_">
                      <gml:posList srsDimension="3">511051.480 5416977.910 274.363 511053.810 5416976.710 274.359 511053.810 5416976.710 266.019 511051.480 5416977.910 266.019 511051.480 5416977.910 274.363</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_952af2f4-7edb-41d1-9835-902c83376c29">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_dcdfdd3f-7426-4f2b-afdc-a19a657b67ea">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_ee0df6a9-579a-4e16-ba9f-2e2f10c1df76">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_ee0df6a9-579a-4e16-ba9f-2e2f10c1df76_0_">
                      <gml:posList srsDimension="3">511051.370 5416977.700 274.528 511051.480 5416977.910 274.363 511051.480 5416977.910 266.019 511051.370 5416977.700 266.019 511051.370 5416977.700 274.528</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_a8bd8274-b247-4ddf-bcc6-b3d71dcfd762">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b6fbd9ed-82b5-4038-ba8b-cd81f5a2a41c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_396c5eed-aa05-4d5e-9269-ee6ac7468061">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_396c5eed-aa05-4d5e-9269-ee6ac7468061_0_">
                      <gml:posList srsDimension="3">511044.690 5416981.140 274.538 511051.370 5416977.700 274.528 511051.370 5416977.700 266.019 511044.690 5416981.140 266.019 511044.690 5416981.140 274.538</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_f7f14bc5-432b-444e-a37d-4f92a8eeb328">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d99f362a-1d3c-4f20-828c-b4e9663541fa">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_61ed0cc5-9855-41d8-82b4-da696e6d1ac4">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_61ed0cc5-9855-41d8-82b4-da696e6d1ac4_0_">
                      <gml:posList srsDimension="3">511042.351 5416976.603 278.102 511044.690 5416981.140 274.538 511044.690 5416981.140 266.019 511042.351 5416976.603 266.019 511042.351 5416976.603 278.102</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_6e240b6d-845d-4f43-a447-c602e685cda6">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d0a04fe6-5d5e-4091-9a1e-6ab7cac58ff1">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_35485d1f-667a-442c-b20e-28a557aeb7dc">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_35485d1f-667a-442c-b20e-28a557aeb7dc_0_">
                      <gml:posList srsDimension="3">511042.351 5416976.603 266.019 511039.760 5416971.580 266.019 511039.760 5416971.580 275.849 511042.351 5416976.603 278.102 511042.351 5416976.603 266.019</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_6bf1b3c4-a247-4419-a504-135ce7444e4d">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_540ef0e8-52e1-4cea-a74c-89b32cf13001">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_88ee67b2-74c6-46fb-ae5a-f391d73ba0de">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_88ee67b2-74c6-46fb-ae5a-f391d73ba0de_0_">
                      <gml:posList srsDimension="3">511047.380 5416967.650 275.839 511039.760 5416971.580 275.849 511039.760 5416971.580 266.019 511047.380 5416967.650 266.019 511047.380 5416967.650 275.839</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_cef1fd19-eb2b-4dd2-9fba-2422fbc2c25d">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_01d885ed-3a38-4536-aa7a-f786e143e187">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_b756265c-b0b3-4cec-8bc4-8b962db3694e">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_b756265c-b0b3-4cec-8bc4-8b962db3694e_0_">
                      <gml:posList srsDimension="3">511047.380 5416967.650 266.019 511039.760 5416971.580 266.019 511042.351 5416976.603 266.019 511044.690 5416981.140 266.019 511051.370 5416977.700 266.019 511051.480 5416977.910 266.019 511053.810 5416976.710 266.019 511053.700 5416976.500 266.019 511060.180 5416973.150 266.019 511057.860 5416968.609 266.019 511054.830 5416962.680 266.019 511054.720 5416962.730 266.019 511055.180 5416963.640 266.019 511055.060 5416963.700 266.019 511047.380 5416967.650 266.019</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1969</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember>
  <core:cityObjectMember>
    <bldg:Building gml:id="DEBW_0010000ZZF1">
      <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>DEBWL0010000ZZF1</core:name>
        </core:externalObject>
      </core:externalReference>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>08118003</gen:value>
      </gen:stringAttribute>
For faster browsing, not all history is shown. View entire blame