Grafenbühl.gml 9.36 MB
Newer Older
Ehlers's avatar
Ehlers committed
111001
111002
111003
111004
111005
111006
111007
111008
111009
111010
111011
111012
111013
111014
111015
111016
111017
111018
111019
111020
111021
111022
111023
111024
111025
111026
111027
111028
111029
111030
111031
111032
111033
111034
111035
111036
111037
111038
111039
111040
111041
111042
111043
111044
111045
111046
111047
111048
111049
111050
111051
111052
111053
111054
111055
111056
111057
111058
111059
111060
111061
111062
111063
111064
111065
111066
111067
111068
111069
111070
111071
111072
111073
111074
111075
111076
111077
111078
111079
111080
111081
111082
111083
111084
111085
111086
111087
111088
111089
111090
111091
111092
111093
111094
111095
111096
111097
111098
111099
111100
111101
111102
111103
111104
111105
111106
111107
111108
111109
111110
111111
111112
111113
111114
111115
111116
111117
111118
111119
111120
111121
111122
111123
111124
111125
111126
111127
111128
111129
111130
111131
111132
111133
111134
111135
111136
111137
111138
111139
111140
111141
111142
111143
111144
111145
111146
111147
111148
111149
111150
111151
111152
111153
111154
111155
111156
111157
111158
111159
111160
111161
111162
111163
111164
111165
111166
111167
111168
111169
111170
111171
111172
111173
111174
111175
111176
111177
111178
111179
111180
111181
111182
111183
111184
111185
111186
111187
111188
111189
111190
111191
111192
111193
111194
111195
111196
111197
111198
111199
111200
111201
111202
111203
111204
111205
111206
111207
111208
111209
111210
111211
111212
111213
111214
111215
111216
111217
111218
111219
111220
111221
111222
111223
111224
111225
111226
111227
111228
111229
111230
111231
111232
111233
111234
111235
111236
111237
111238
111239
111240
111241
111242
111243
111244
111245
111246
111247
111248
111249
111250
111251
111252
111253
111254
111255
111256
111257
111258
111259
111260
111261
111262
111263
111264
111265
111266
111267
111268
111269
111270
111271
111272
111273
111274
111275
111276
111277
111278
111279
111280
111281
111282
111283
111284
111285
111286
111287
111288
111289
111290
111291
111292
111293
111294
111295
111296
111297
111298
111299
111300
111301
111302
111303
111304
111305
111306
111307
111308
111309
111310
111311
111312
111313
111314
111315
111316
111317
111318
111319
111320
111321
111322
111323
111324
111325
111326
111327
111328
111329
111330
111331
111332
111333
111334
111335
111336
111337
111338
111339
111340
111341
111342
111343
111344
111345
111346
111347
111348
111349
111350
111351
111352
111353
111354
111355
111356
111357
111358
111359
111360
111361
111362
111363
111364
111365
111366
111367
111368
111369
111370
111371
111372
111373
111374
111375
111376
111377
111378
111379
111380
111381
111382
111383
111384
111385
111386
111387
111388
111389
111390
111391
111392
111393
111394
111395
111396
111397
111398
111399
111400
111401
111402
111403
111404
111405
111406
111407
111408
111409
111410
111411
111412
111413
111414
111415
111416
111417
111418
111419
111420
111421
111422
111423
111424
111425
111426
111427
111428
111429
111430
111431
111432
111433
111434
111435
111436
111437
111438
111439
111440
111441
111442
111443
111444
111445
111446
111447
111448
111449
111450
111451
111452
111453
111454
111455
111456
111457
111458
111459
111460
111461
111462
111463
111464
111465
111466
111467
111468
111469
111470
111471
111472
111473
111474
111475
111476
111477
111478
111479
111480
111481
111482
111483
111484
111485
111486
111487
111488
111489
111490
111491
111492
111493
111494
111495
111496
111497
111498
111499
111500
111501
111502
111503
111504
111505
111506
111507
111508
111509
111510
111511
111512
111513
111514
111515
111516
111517
111518
111519
111520
111521
111522
111523
111524
111525
111526
111527
111528
111529
111530
111531
111532
111533
111534
111535
111536
111537
111538
111539
111540
111541
111542
111543
111544
111545
111546
111547
111548
111549
111550
111551
111552
111553
111554
111555
111556
111557
111558
111559
111560
111561
111562
111563
111564
111565
111566
111567
111568
111569
111570
111571
111572
111573
111574
111575
111576
111577
111578
111579
111580
111581
111582
111583
111584
111585
111586
111587
111588
111589
111590
111591
111592
111593
111594
111595
111596
111597
111598
111599
111600
111601
111602
111603
111604
111605
111606
111607
111608
111609
111610
111611
111612
111613
111614
111615
111616
111617
111618
111619
111620
111621
111622
111623
111624
111625
111626
111627
111628
111629
111630
111631
111632
111633
111634
111635
111636
111637
111638
111639
111640
111641
111642
111643
111644
111645
111646
111647
111648
111649
111650
111651
111652
111653
111654
111655
111656
111657
111658
111659
111660
111661
111662
111663
111664
111665
111666
111667
111668
111669
111670
111671
111672
111673
111674
111675
111676
111677
111678
111679
111680
111681
111682
111683
111684
111685
111686
111687
111688
111689
111690
111691
111692
111693
111694
111695
111696
111697
111698
111699
111700
111701
111702
111703
111704
111705
111706
111707
111708
111709
111710
111711
111712
111713
111714
111715
111716
111717
111718
111719
111720
111721
111722
111723
111724
111725
111726
111727
111728
111729
111730
111731
111732
111733
111734
111735
111736
111737
111738
111739
111740
111741
111742
111743
111744
111745
111746
111747
111748
111749
111750
111751
111752
111753
111754
111755
111756
111757
111758
111759
111760
111761
111762
111763
111764
111765
111766
111767
111768
111769
111770
111771
111772
111773
111774
111775
111776
111777
111778
111779
111780
111781
111782
111783
111784
111785
111786
111787
111788
111789
111790
111791
111792
111793
111794
111795
111796
111797
111798
111799
111800
111801
111802
111803
111804
111805
111806
111807
111808
111809
111810
111811
111812
111813
111814
111815
111816
111817
111818
111819
111820
111821
111822
111823
111824
111825
111826
111827
111828
111829
111830
111831
111832
111833
111834
111835
111836
111837
111838
111839
111840
111841
111842
111843
111844
111845
111846
111847
111848
111849
111850
111851
111852
111853
111854
111855
111856
111857
111858
111859
111860
111861
111862
111863
111864
111865
111866
111867
111868
111869
111870
111871
111872
111873
111874
111875
111876
111877
111878
111879
111880
111881
111882
111883
111884
111885
111886
111887
111888
111889
111890
111891
111892
111893
111894
111895
111896
111897
111898
111899
111900
111901
111902
111903
111904
111905
111906
111907
111908
111909
111910
111911
111912
111913
111914
111915
111916
111917
111918
111919
111920
111921
111922
111923
111924
111925
111926
111927
111928
111929
111930
111931
111932
111933
111934
111935
111936
111937
111938
111939
111940
111941
111942
111943
111944
111945
111946
111947
111948
111949
111950
111951
111952
111953
111954
111955
111956
111957
111958
111959
111960
111961
111962
111963
111964
111965
111966
111967
111968
111969
111970
111971
111972
111973
111974
111975
111976
111977
111978
111979
111980
111981
111982
111983
111984
111985
111986
111987
111988
111989
111990
111991
111992
111993
111994
111995
111996
111997
111998
111999
112000
              <gml:surfaceMember xlink:href="#Srf_e13a2ee5-90ae-4c0a-848d-df8b552de239"/>
              <gml:surfaceMember xlink:href="#Srf_514b2c48-3b1b-438f-a3f5-e52e01c1c954"/>
              <gml:surfaceMember xlink:href="#Srf_7c59abd0-2598-4415-a5cc-adf585c6613d"/>
              <gml:surfaceMember xlink:href="#Srf_96cb29f6-6459-4cf4-8ee0-b4c2953d7efa"/>
              <gml:surfaceMember xlink:href="#Srf_d9655af9-a0ba-4708-9648-d168326681a9"/>
              <gml:surfaceMember xlink:href="#Srf_b8bdc1b1-9d38-4939-9669-00bd458dbc9b"/>
              <gml:surfaceMember xlink:href="#Srf_722606ec-2642-4172-972e-5c096ec45fc0"/>
              <gml:surfaceMember xlink:href="#Srf_d0163e24-87a4-4fb6-a2f4-6760db48768e"/>
              <gml:surfaceMember xlink:href="#Srf_aec179ac-b117-4d2b-af0a-4ee21a6aa343"/>
              <gml:surfaceMember xlink:href="#Srf_6b4c37fd-fa85-4620-94d9-86cc15943970"/>
              <gml:surfaceMember xlink:href="#Srf_28c51f07-62a3-40e7-97da-8881a13aa5dd"/>
              <gml:surfaceMember xlink:href="#Srf_3cbf8860-cdbc-46ad-9915-2fcd287ac273"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_c7e8b9e2-a7b9-4abc-9984-b444b47af99f">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8aab7af6-b71c-4a4c-bec1-d98b2773c3b4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_b8bdc1b1-9d38-4939-9669-00bd458dbc9b">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_b8bdc1b1-9d38-4939-9669-00bd458dbc9b_0_">
                      <gml:posList srsDimension="3">511101.610 5417260.580 278.418 511101.610 5417260.580 271.541 511101.620 5417260.530 271.541 511101.620 5417260.530 278.421 511101.610 5417260.580 278.418</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_54ed1fad-4e25-47f3-bf23-4019d2eedb52">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_59a3908c-1701-4e0a-a221-8a3d5d405769">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_da337da3-6dcb-4be3-b8f0-e2abe792f5cc">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_da337da3-6dcb-4be3-b8f0-e2abe792f5cc_0_">
                      <gml:posList srsDimension="3">511106.929 5417248.902 280.994 511105.858 5417260.952 280.997 511101.610 5417260.580 278.418 511101.620 5417260.530 278.421 511102.120 5417254.700 278.409 511102.650 5417248.530 278.396 511106.929 5417248.902 280.994</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_51af6bca-6df2-4429-8cae-9fa998288631">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6e07adb5-8915-4c5c-9d8f-6fc9df1034e4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_722606ec-2642-4172-972e-5c096ec45fc0">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_722606ec-2642-4172-972e-5c096ec45fc0_0_">
                      <gml:posList srsDimension="3">511110.300 5417253.960 271.541 511110.710 5417249.230 271.541 511106.929 5417248.902 271.541 511102.650 5417248.530 271.541 511102.120 5417254.700 271.541 511101.620 5417260.530 271.541 511101.610 5417260.580 271.541 511105.858 5417260.952 271.541 511110.170 5417261.330 271.541 511110.800 5417254.000 271.541 511110.300 5417253.960 271.541</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_f9edd21b-6639-4c59-87cb-e0623df025bc">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_29540dd2-8759-4776-9c39-64bcaedb46a3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_aec179ac-b117-4d2b-af0a-4ee21a6aa343">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_aec179ac-b117-4d2b-af0a-4ee21a6aa343_0_">
                      <gml:posList srsDimension="3">511110.710 5417249.230 278.680 511110.300 5417253.960 278.675 511110.800 5417254.000 278.370 511110.170 5417261.330 278.359 511105.858 5417260.952 280.997 511106.929 5417248.902 280.994 511110.710 5417249.230 278.680</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_1456a5d3-bbc7-43b7-bdb7-59dcd8c42ff3">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_8aa713e0-fb54-49af-8451-20448ddfbef8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_514b2c48-3b1b-438f-a3f5-e52e01c1c954">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_514b2c48-3b1b-438f-a3f5-e52e01c1c954_0_">
                      <gml:posList srsDimension="3">511102.120 5417254.700 278.409 511101.620 5417260.530 278.421 511101.620 5417260.530 271.541 511102.120 5417254.700 271.541 511102.120 5417254.700 278.409</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_b8e2dcc0-a8b6-4276-9a1c-7ee3ac8fb9ce">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_aa178976-3ba9-4bd3-a17a-947e14f4d31d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_6b4c37fd-fa85-4620-94d9-86cc15943970">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_6b4c37fd-fa85-4620-94d9-86cc15943970_0_">
                      <gml:posList srsDimension="3">511102.650 5417248.530 278.396 511102.120 5417254.700 278.409 511102.120 5417254.700 271.541 511102.650 5417248.530 271.541 511102.650 5417248.530 278.396</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_375c3930-5691-460f-b619-487447ed0596">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_51a9c4dd-fac6-47c9-a035-822bfcebe45e">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_3cbf8860-cdbc-46ad-9915-2fcd287ac273">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_3cbf8860-cdbc-46ad-9915-2fcd287ac273_0_">
                      <gml:posList srsDimension="3">511102.650 5417248.530 271.541 511106.929 5417248.902 271.541 511106.929 5417248.902 280.994 511102.650 5417248.530 278.396 511102.650 5417248.530 271.541</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_3616a101-9cf1-42cb-b12a-f9acbda99a23">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b9506479-18f7-4614-bfa1-874e55be0cf7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_7c59abd0-2598-4415-a5cc-adf585c6613d">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_7c59abd0-2598-4415-a5cc-adf585c6613d_0_">
                      <gml:posList srsDimension="3">511110.710 5417249.230 278.680 511106.929 5417248.902 280.994 511106.929 5417248.902 271.541 511110.710 5417249.230 271.541 511110.710 5417249.230 278.680</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_5ef448aa-4b52-4ddc-9fa4-eb8fc8774952">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_78a9dd93-336b-449b-b585-4e4be99e807f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_e13a2ee5-90ae-4c0a-848d-df8b552de239">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_e13a2ee5-90ae-4c0a-848d-df8b552de239_0_">
                      <gml:posList srsDimension="3">511110.710 5417249.230 271.541 511110.300 5417253.960 271.541 511110.300 5417253.960 278.675 511110.710 5417249.230 278.680 511110.710 5417249.230 271.541</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_35b335c7-979f-4509-845f-79609da7e1da">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_fbb4017a-c145-4584-a258-21e0ff182327">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_d0163e24-87a4-4fb6-a2f4-6760db48768e">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_d0163e24-87a4-4fb6-a2f4-6760db48768e_0_">
                      <gml:posList srsDimension="3">511110.800 5417254.000 278.370 511110.300 5417253.960 278.675 511110.300 5417253.960 271.541 511110.800 5417254.000 271.541 511110.800 5417254.000 278.370</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_5dc05f37-c4e4-4443-ac33-0d0c140de1aa">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_cadd0332-04b3-4f4e-9c08-7e824ac34fa0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_96cb29f6-6459-4cf4-8ee0-b4c2953d7efa">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_96cb29f6-6459-4cf4-8ee0-b4c2953d7efa_0_">
                      <gml:posList srsDimension="3">511110.800 5417254.000 271.541 511110.170 5417261.330 271.541 511110.170 5417261.330 278.359 511110.800 5417254.000 278.370 511110.800 5417254.000 271.541</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_bd0bc8da-6b0b-4d92-b46e-5cc6b4f41e13">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ec6b9df5-7083-4f5b-bde5-717fb5d010c3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_28c51f07-62a3-40e7-97da-8881a13aa5dd">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_28c51f07-62a3-40e7-97da-8881a13aa5dd_0_">
                      <gml:posList srsDimension="3">511105.858 5417260.952 280.997 511110.170 5417261.330 278.359 511110.170 5417261.330 271.541 511105.858 5417260.952 271.541 511105.858 5417260.952 280.997</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_c655b45b-ad3e-4915-9069-e7cf628a737b">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1177e98d-0b23-4556-93f0-7b59ed25fde0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_d9655af9-a0ba-4708-9648-d168326681a9">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_d9655af9-a0ba-4708-9648-d168326681a9_0_">
                      <gml:posList srsDimension="3">511105.858 5417260.952 271.541 511101.610 5417260.580 271.541 511101.610 5417260.580 278.418 511105.858 5417260.952 280.997 511105.858 5417260.952 271.541</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1945</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember>
  <core:cityObjectMember>
    <bldg:Building gml:id="DEBW_0010000ZZIm">
      <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>DEBWL0010000ZZIm</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.363</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_f57ee192-648a-4181-b6e9-e98adbd46178">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_be73d9e6-6a67-4bfb-82e2-e43c06c5caf2">
              <gml:surfaceMember xlink:href="#Srf_3bd70804-8169-4127-8751-b6bce37f25ad"/>
              <gml:surfaceMember xlink:href="#Srf_5a5d28dd-c8f3-431a-b1ed-bd07c3ab7044"/>
              <gml:surfaceMember xlink:href="#Srf_27e809a6-ecbc-46de-9ae7-6feb70137257"/>
              <gml:surfaceMember xlink:href="#Srf_ee1ccd18-2610-4f93-8bdc-3ee472f0f64d"/>
              <gml:surfaceMember xlink:href="#Srf_5eb70f81-b9c5-495d-a662-d2016175e5b7"/>
              <gml:surfaceMember xlink:href="#Srf_ed6ce94b-da8c-4f88-bf32-8797cfc8e2d2"/>
              <gml:surfaceMember xlink:href="#Srf_28e1c09a-abe1-4063-b9c9-d115701c7409"/>
              <gml:surfaceMember xlink:href="#Srf_224ceddb-b955-4e55-845a-600eba4eca8d"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_750be9a3-bf52-4d19-96fc-23ae5d84f59e">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a601b5db-fd03-4015-965e-d95df52cc173">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_5a5d28dd-c8f3-431a-b1ed-bd07c3ab7044">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_5a5d28dd-c8f3-431a-b1ed-bd07c3ab7044_0_">
                      <gml:posList srsDimension="3">511082.040 5417257.980 272.847 511082.390 5417253.340 272.847 511082.390 5417253.340 275.210 511082.040 5417257.980 275.210 511082.040 5417257.980 272.847</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_1b5b1926-142d-4716-9ab3-e566c7d8991e">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_33f3f150-5f03-41d4-908f-97c1c28089b9">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_27e809a6-ecbc-46de-9ae7-6feb70137257">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_27e809a6-ecbc-46de-9ae7-6feb70137257_0_">
                      <gml:posList srsDimension="3">511082.390 5417253.340 272.847 511085.140 5417253.570 272.847 511085.140 5417253.570 275.210 511082.390 5417253.340 275.210 511082.390 5417253.340 272.847</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_442f9c9c-13d5-492e-9685-2205c3b9d5bb">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_58955552-f0a9-43be-920f-27a2a4c9ab6a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_5eb70f81-b9c5-495d-a662-d2016175e5b7">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_5eb70f81-b9c5-495d-a662-d2016175e5b7_0_">
                      <gml:posList srsDimension="3">511085.140 5417253.570 272.847 511084.590 5417260.120 272.847 511084.590 5417260.120 275.210 511085.140 5417253.570 275.210 511085.140 5417253.570 272.847</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_a21b4c75-de11-4788-9c23-4edbf7a60cf4">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4c970e39-59d1-4fab-82ad-8c65934b5f2c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_28e1c09a-abe1-4063-b9c9-d115701c7409">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_28e1c09a-abe1-4063-b9c9-d115701c7409_0_">
                      <gml:posList srsDimension="3">511084.590 5417260.120 272.847 511081.560 5417259.850 272.847 511081.560 5417259.850 275.210 511084.590 5417260.120 275.210 511084.590 5417260.120 272.847</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_ffde91e8-c05f-443f-970b-9525711ebaed">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c7974a52-86ac-429e-a367-2daf631084d2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_224ceddb-b955-4e55-845a-600eba4eca8d">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_224ceddb-b955-4e55-845a-600eba4eca8d_0_">
                      <gml:posList srsDimension="3">511081.560 5417259.850 272.847 511081.730 5417257.960 272.847 511081.730 5417257.960 275.210 511081.560 5417259.850 275.210 511081.560 5417259.850 272.847</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_f677dc6a-2653-4a90-a75e-db916bc72e9a">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f55b0b74-08f4-45ec-a56c-7ead445e5555">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_ee1ccd18-2610-4f93-8bdc-3ee472f0f64d">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_ee1ccd18-2610-4f93-8bdc-3ee472f0f64d_0_">
                      <gml:posList srsDimension="3">511081.730 5417257.960 275.210 511082.040 5417257.980 275.210 511082.390 5417253.340 275.210 511085.140 5417253.570 275.210 511084.590 5417260.120 275.210 511081.560 5417259.850 275.210 511081.730 5417257.960 275.210</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_ae88dce4-6347-489e-b6f1-1630f9d8530a">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_374a3257-b2d3-4326-9bf1-9207557eb99c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_ed6ce94b-da8c-4f88-bf32-8797cfc8e2d2">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_ed6ce94b-da8c-4f88-bf32-8797cfc8e2d2_0_">
                      <gml:posList srsDimension="3">511082.040 5417257.980 272.847 511081.730 5417257.960 272.847 511081.560 5417259.850 272.847 511084.590 5417260.120 272.847 511085.140 5417253.570 272.847 511082.390 5417253.340 272.847 511082.040 5417257.980 272.847</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_c4cabb69-a953-4556-9129-e928ba387af0">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ef8aeeb8-0b74-46f4-9f23-f4a5d39106a3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_3bd70804-8169-4127-8751-b6bce37f25ad">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_3bd70804-8169-4127-8751-b6bce37f25ad_0_">
                      <gml:posList srsDimension="3">511081.730 5417257.960 272.847 511082.040 5417257.980 272.847 511082.040 5417257.980 275.210 511081.730 5417257.960 275.210 511081.730 5417257.960 272.847</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_0010000ZZIv">
      <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>DEBWL0010000ZZIv</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">8.990</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_0493353e-bc1c-445d-a704-64f8099e4262">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_2ee3f025-4128-482c-b4f2-d48d8e44e120">
              <gml:surfaceMember xlink:href="#Srf_b037b410-60ab-4acb-82e9-57c07b5cf782"/>
              <gml:surfaceMember xlink:href="#Srf_44e4a807-76bb-43e7-b053-911421274c76"/>
              <gml:surfaceMember xlink:href="#Srf_2e2b4358-4aca-47a6-92fe-621d7e8bb133"/>
              <gml:surfaceMember xlink:href="#Srf_b5b71547-dec7-42a6-a62c-02f2ded82685"/>
              <gml:surfaceMember xlink:href="#Srf_39c07f1d-e6ea-4a93-a718-8b171cac2f9a"/>
              <gml:surfaceMember xlink:href="#Srf_59027bff-3df5-4b48-ada3-b7768217d120"/>
              <gml:surfaceMember xlink:href="#Srf_d92ccfc8-67fa-4a47-99c6-0eaab8d69b0f"/>
              <gml:surfaceMember xlink:href="#Srf_bcd2d50c-7f6d-4eaf-aa1a-c126fc986e38"/>
              <gml:surfaceMember xlink:href="#Srf_545cb589-25fd-444a-b7b2-91769e4642df"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_c03792f8-b080-42b3-868b-8a016fa5bcc8">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6c7a64cc-0806-47f8-944a-af2e9a744798">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_2e2b4358-4aca-47a6-92fe-621d7e8bb133">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_2e2b4358-4aca-47a6-92fe-621d7e8bb133_0_">
                      <gml:posList srsDimension="3">511009.890 5417235.630 276.872 511005.857 5417235.710 281.868 511005.857 5417235.710 272.878 511009.890 5417235.630 272.878 511009.890 5417235.630 276.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_0c6d5095-89ac-499e-9bab-8f0d4393363c">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6c879eb0-38f5-4440-9d5d-7cd868ef92c7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_b5b71547-dec7-42a6-a62c-02f2ded82685">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_b5b71547-dec7-42a6-a62c-02f2ded82685_0_">
                      <gml:posList srsDimension="3">511001.810 5417235.790 272.878 511005.857 5417235.710 272.878 511005.857 5417235.710 281.868 511001.810 5417235.790 276.847 511001.810 5417235.790 272.878</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_9c80a936-76ca-41c2-b97b-d5deeb4d3180">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b50b5773-c201-4fd8-95d2-87d0534b9901">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_b037b410-60ab-4acb-82e9-57c07b5cf782">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_b037b410-60ab-4acb-82e9-57c07b5cf782_0_">
                      <gml:posList srsDimension="3">511001.980 5417244.350 272.878 511006.020 5417244.270 272.878 511010.060 5417244.190 272.878 511009.890 5417235.630 272.878 511005.857 5417235.710 272.878 511001.810 5417235.790 272.878 511001.980 5417244.350 272.878</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_233f60d1-8240-4214-9f7d-4fd5ea51a3bd">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ef47b8f4-1bd8-4a81-b894-e9c7ac744876">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_44e4a807-76bb-43e7-b053-911421274c76">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_44e4a807-76bb-43e7-b053-911421274c76_0_">
                      <gml:posList srsDimension="3">511010.060 5417244.190 276.853 511009.890 5417235.630 276.872 511009.890 5417235.630 272.878 511010.060 5417244.190 272.878 511010.060 5417244.190 276.853</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_d0b4bf65-4ff9-4b5e-a80e-b417aac3657a">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_33625caf-8488-4c58-b35a-1f93813842a0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_d92ccfc8-67fa-4a47-99c6-0eaab8d69b0f">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_d92ccfc8-67fa-4a47-99c6-0eaab8d69b0f_0_">
                      <gml:posList srsDimension="3">511006.020 5417244.270 281.857 511010.060 5417244.190 276.853 511010.060 5417244.190 272.878 511006.020 5417244.270 272.878 511006.020 5417244.270 281.857</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_8e3741ce-8003-4524-b9e6-476d4e8054af">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c7ed53c6-d28d-4ad5-affc-b82df3d9b6a9">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_bcd2d50c-7f6d-4eaf-aa1a-c126fc986e38">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_bcd2d50c-7f6d-4eaf-aa1a-c126fc986e38_0_">
                      <gml:posList srsDimension="3">511006.020 5417244.270 272.878 511001.980 5417244.350 272.878 511001.980 5417244.350 276.846 511006.020 5417244.270 281.857 511006.020 5417244.270 272.878</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_93a0c6f7-05e8-4875-84e3-e57c2fd7f4fc">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_08d872ee-ea79-4e86-b468-d7632efdb9b6">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_545cb589-25fd-444a-b7b2-91769e4642df">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_545cb589-25fd-444a-b7b2-91769e4642df_0_">
                      <gml:posList srsDimension="3">511006.020 5417244.270 281.857 511001.980 5417244.350 276.846 511001.810 5417235.790 276.847 511005.857 5417235.710 281.868 511006.020 5417244.270 281.857</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_d0153a57-b069-4bba-bf22-5ddaa18c5a42">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c6ee515d-e58c-4fe7-a63f-312ab5ffabe7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_59027bff-3df5-4b48-ada3-b7768217d120">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_59027bff-3df5-4b48-ada3-b7768217d120_0_">
                      <gml:posList srsDimension="3">511001.810 5417235.790 276.847 511001.980 5417244.350 276.846 511001.980 5417244.350 272.878 511001.810 5417235.790 272.878 511001.810 5417235.790 276.847</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_3f3b4180-8238-4ce1-9c5d-158fad5567bf">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ea611915-9281-4b45-8da1-b43d8f49d05d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_39c07f1d-e6ea-4a93-a718-8b171cac2f9a">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_39c07f1d-e6ea-4a93-a718-8b171cac2f9a_0_">
                      <gml:posList srsDimension="3">511010.060 5417244.190 276.853 511006.020 5417244.270 281.857 511005.857 5417235.710 281.868 511009.890 5417235.630 276.872 511010.060 5417244.190 276.853</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1940</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember>
  <core:cityObjectMember>
    <bldg:Building gml:id="DEBW_0010000ZZIq">
      <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>DEBWL0010000ZZIq</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">8.227</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_3e536546-2412-4dff-b51b-c1279325c16c">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_ea4ccb04-8389-434f-a587-489c2317f2db">
              <gml:surfaceMember xlink:href="#Srf_b2c85bb3-d446-45b1-ada6-06f6bacba248"/>
              <gml:surfaceMember xlink:href="#Srf_a7dcf6c4-1a3d-4c76-8f4f-f3ba3a8c40b1"/>
              <gml:surfaceMember xlink:href="#Srf_12cd7648-5280-43b8-9c59-f60898967e40"/>
              <gml:surfaceMember xlink:href="#Srf_cfffcd9e-e7a8-452f-b4bb-e25a7b222b7f"/>
              <gml:surfaceMember xlink:href="#Srf_8514b394-34b4-4e9a-9267-66b25a33e310"/>
              <gml:surfaceMember xlink:href="#Srf_59f22f7f-13b2-449d-b659-b434ba9d0a0f"/>
              <gml:surfaceMember xlink:href="#Srf_c4f93223-5bc5-4df3-8d2c-e238cbf0cce7"/>
              <gml:surfaceMember xlink:href="#Srf_f9b4582f-e3ed-4165-8ec6-14bb50361c68"/>
              <gml:surfaceMember xlink:href="#Srf_b5803f87-f7d7-4549-8253-e794c6553fb0"/>
              <gml:surfaceMember xlink:href="#Srf_2e5e7aff-cbf8-4905-a21d-54c90381ce6d"/>
              <gml:surfaceMember xlink:href="#Srf_02ea7de7-f939-4f6a-b9fb-38a8df9534df"/>
              <gml:surfaceMember xlink:href="#Srf_03097c96-d7f7-4572-8057-96b912d4f1cc"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_232fa5bd-01fd-40aa-b586-67390cf4c623">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f08a0c32-6096-474c-8077-b4e825fa1032">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_f9b4582f-e3ed-4165-8ec6-14bb50361c68">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_f9b4582f-e3ed-4165-8ec6-14bb50361c68_0_">
                      <gml:posList srsDimension="3">511052.500 5417252.040 277.548 511053.600 5417240.040 277.537 511053.600 5417240.040 272.656 511052.500 5417252.040 272.656 511052.500 5417252.040 277.548</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_7d0341e7-6c4f-4758-ba6f-d55bb6daee16">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_45f2c3c3-384d-4666-a543-31806c9775aa">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_12cd7648-5280-43b8-9c59-f60898967e40">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_12cd7648-5280-43b8-9c59-f60898967e40_0_">
                      <gml:posList srsDimension="3">511047.600 5417239.480 272.656 511050.529 5417239.753 272.656 511050.529 5417239.753 280.875 511047.600 5417239.480 277.686 511047.600 5417239.480 272.656</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_5bdd6548-8709-455a-a994-73331ff8acf6">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f1cc4b0b-d19b-4199-a748-03b0eb4af519">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_03097c96-d7f7-4572-8057-96b912d4f1cc">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_03097c96-d7f7-4572-8057-96b912d4f1cc_0_">
                      <gml:posList srsDimension="3">511049.431 5417251.756 280.883 511052.500 5417252.040 277.548 511052.500 5417252.040 272.656 511049.431 5417251.756 272.656 511049.431 5417251.756 280.883</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_95a5512d-42fb-4116-948f-a9b72c340cbe">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6106ef3e-d808-40c3-8eb6-9f7bd45d11b0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_b2c85bb3-d446-45b1-ada6-06f6bacba248">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_b2c85bb3-d446-45b1-ada6-06f6bacba248_0_">
                      <gml:posList srsDimension="3">511049.431 5417251.756 272.656 511046.780 5417251.510 272.656 511046.780 5417251.510 277.997 511049.431 5417251.756 280.883 511049.431 5417251.756 272.656</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_b098ed4e-6a42-40b3-a87c-7c63c18adc26">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_19c2f477-2034-42a9-b49c-2079f63d3cb6">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_8514b394-34b4-4e9a-9267-66b25a33e310">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_8514b394-34b4-4e9a-9267-66b25a33e310_0_">
                      <gml:posList srsDimension="3">511046.780 5417251.510 272.656 511049.431 5417251.756 272.656 511052.500 5417252.040 272.656 511053.600 5417240.040 272.656 511050.529 5417239.753 272.656 511047.600 5417239.480 272.656 511046.510 5417251.230 272.656 511046.490 5417251.490 272.656 511046.780 5417251.510 272.656</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_c847a646-3459-4e8c-aa6e-034752551060">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2a2d114c-10ac-4477-af01-1b09a8582d67">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_cfffcd9e-e7a8-452f-b4bb-e25a7b222b7f">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_cfffcd9e-e7a8-452f-b4bb-e25a7b222b7f_0_">
                      <gml:posList srsDimension="3">511046.510 5417251.230 277.678 511049.431 5417251.756 280.883 511046.780 5417251.510 277.997 511046.490 5417251.490 277.682 511046.510 5417251.230 277.678</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_5c522507-22b9-42e0-9cdc-7285c32a4ead">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_bf6c40b3-12e1-4e21-965a-ca5e6fedd550">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_02ea7de7-f939-4f6a-b9fb-38a8df9534df">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_02ea7de7-f939-4f6a-b9fb-38a8df9534df_0_">
                      <gml:posList srsDimension="3">511046.780 5417251.510 272.656 511046.490 5417251.490 272.656 511046.490 5417251.490 277.682 511046.780 5417251.510 277.997 511046.780 5417251.510 272.656</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_94f00074-06d0-406c-8fa9-83474f5f6eae">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_217b2518-b17b-4602-931d-374633d8c516">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_b5803f87-f7d7-4549-8253-e794c6553fb0">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_b5803f87-f7d7-4549-8253-e794c6553fb0_0_">
                      <gml:posList srsDimension="3">511047.600 5417239.480 277.686 511050.529 5417239.753 280.875 511049.431 5417251.756 280.883 511046.510 5417251.230 277.678 511047.600 5417239.480 277.686</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_ddabc640-2fc5-4a81-b49e-d90ca44e425f">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_1728f75e-1c19-4118-872e-bbf40fb147a9">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_a7dcf6c4-1a3d-4c76-8f4f-f3ba3a8c40b1">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_a7dcf6c4-1a3d-4c76-8f4f-f3ba3a8c40b1_0_">
                      <gml:posList srsDimension="3">511049.431 5417251.756 280.883 511050.529 5417239.753 280.875 511053.600 5417240.040 277.537 511052.500 5417252.040 277.548 511049.431 5417251.756 280.883</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_53f7381a-495f-4a08-837b-665a26bf7b5b">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ef84a808-e9f6-4bfe-818e-86f82060b51a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_c4f93223-5bc5-4df3-8d2c-e238cbf0cce7">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_c4f93223-5bc5-4df3-8d2c-e238cbf0cce7_0_">
                      <gml:posList srsDimension="3">511046.510 5417251.230 272.656 511046.510 5417251.230 277.678 511046.490 5417251.490 277.682 511046.490 5417251.490 272.656 511046.510 5417251.230 272.656</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_66d6ad99-9682-4451-a012-5ec0d94a0d47">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c3bafde1-2722-4a2a-846f-cf89da269beb">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_2e5e7aff-cbf8-4905-a21d-54c90381ce6d">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_2e5e7aff-cbf8-4905-a21d-54c90381ce6d_0_">
                      <gml:posList srsDimension="3">511053.600 5417240.040 277.537 511050.529 5417239.753 280.875 511050.529 5417239.753 272.656 511053.600 5417240.040 272.656 511053.600 5417240.040 277.537</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_6ac38149-363d-45e9-a893-8f9e0e4bd709">
          <core:creationDate>2019-01-26</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7e9d7028-92cb-4076-bbac-18ac00260791">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_59f22f7f-13b2-449d-b659-b434ba9d0a0f">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_59f22f7f-13b2-449d-b659-b434ba9d0a0f_0_">
                      <gml:posList srsDimension="3">511046.510 5417251.230 272.656 511047.600 5417239.480 272.656 511047.600 5417239.480 277.686 511046.510 5417251.230 277.678 511046.510 5417251.230 272.656</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:yearOfConstruction>1957</bldg:yearOfConstruction>
    </bldg:Building>
  </core:cityObjectMember>
  <core:cityObjectMember>
    <bldg:Building gml:id="DEBW_0010000ZZIy">
      <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>DEBWL0010000ZZIy</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.596</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_68775680-8ae2-4441-b28a-81e2d4f06be1">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_612e80b6-7542-4e14-84e0-905540d80df8">
              <gml:surfaceMember xlink:href="#Srf_3c5becbe-a234-4f76-9e93-b955be326172"/>
              <gml:surfaceMember xlink:href="#Srf_876038c1-a2f6-4f01-b0b6-b271b4f832e4"/>
              <gml:surfaceMember xlink:href="#Srf_f22e5aff-4fb1-4be0-83a3-b82789572286"/>
              <gml:surfaceMember xlink:href="#Srf_5ce983bb-bd2d-4300-9603-ad00bc8739bf"/>
              <gml:surfaceMember xlink:href="#Srf_554bc720-70ba-4d67-91d6-2da4032095bf"/>
              <gml:surfaceMember xlink:href="#Srf_9249dce4-b9d5-4c52-a8a6-f894ccf20f07"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="UUID_c02f5dd2-029e-4aec-8a6b-8f49ae43311e">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_de622cba-f221-433b-848a-c701674e2a92">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_3c5becbe-a234-4f76-9e93-b955be326172">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_3c5becbe-a234-4f76-9e93-b955be326172_0_">
                      <gml:posList srsDimension="3">510996.380 5417251.960 272.907 510996.380 5417251.960 275.216 510996.320 5417258.580 275.502 510996.320 5417258.580 272.907 510996.380 5417251.960 272.907</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_f8517b57-9922-4b37-a713-ee2203a908ff">
          <core:creationDate>2019-01-27</core:creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_58e34d7a-d46d-48be-9572-c2a9ef4ad8da">
              <gml:surfaceMember>
                <gml:Polygon gml:id="Srf_f22e5aff-4fb1-4be0-83a3-b82789572286">
                  <gml:exterior>
                    <gml:LinearRing gml:id="Srf_f22e5aff-4fb1-4be0-83a3-b82789572286_0_">
                      <gml:posList srsDimension="3">510996.380 5417251.960 272.907 510999.720 5417251.990 272.907 510999.720 5417251.990 275.218 510996.380 5417251.960 275.216 510996.380 5417251.960 272.907</gml:posList>
                    </gml:LinearRing>
For faster browsing, not all history is shown. View entire blame