Grombühl_v4_case_study.gml 6.37 MB
Newer Older
Eric Duminil's avatar
Eric Duminil committed
25001
25002
25003
25004
25005
25006
25007
25008
25009
25010
25011
25012
25013
25014
25015
25016
25017
25018
25019
25020
25021
25022
25023
25024
25025
25026
25027
25028
25029
25030
25031
25032
25033
25034
25035
25036
25037
25038
25039
25040
25041
25042
25043
25044
25045
25046
25047
25048
25049
25050
25051
25052
25053
25054
25055
25056
25057
25058
25059
25060
25061
25062
25063
25064
25065
25066
25067
25068
25069
25070
25071
25072
25073
25074
25075
25076
25077
25078
25079
25080
25081
25082
25083
25084
25085
25086
25087
25088
25089
25090
25091
25092
25093
25094
25095
25096
25097
25098
25099
25100
25101
25102
25103
25104
25105
25106
25107
25108
25109
25110
25111
25112
25113
25114
25115
25116
25117
25118
25119
25120
25121
25122
25123
25124
25125
25126
25127
25128
25129
25130
25131
25132
25133
25134
25135
25136
25137
25138
25139
25140
25141
25142
25143
25144
25145
25146
25147
25148
25149
25150
25151
25152
25153
25154
25155
25156
25157
25158
25159
25160
25161
25162
25163
25164
25165
25166
25167
25168
25169
25170
25171
25172
25173
25174
25175
25176
25177
25178
25179
25180
25181
25182
25183
25184
25185
25186
25187
25188
25189
25190
25191
25192
25193
25194
25195
25196
25197
25198
25199
25200
25201
25202
25203
25204
25205
25206
25207
25208
25209
25210
25211
25212
25213
25214
25215
25216
25217
25218
25219
25220
25221
25222
25223
25224
25225
25226
25227
25228
25229
25230
25231
25232
25233
25234
25235
25236
25237
25238
25239
25240
25241
25242
25243
25244
25245
25246
25247
25248
25249
25250
25251
25252
25253
25254
25255
25256
25257
25258
25259
25260
25261
25262
25263
25264
25265
25266
25267
25268
25269
25270
25271
25272
25273
25274
25275
25276
25277
25278
25279
25280
25281
25282
25283
25284
25285
25286
25287
25288
25289
25290
25291
25292
25293
25294
25295
25296
25297
25298
25299
25300
25301
25302
25303
25304
25305
25306
25307
25308
25309
25310
25311
25312
25313
25314
25315
25316
25317
25318
25319
25320
25321
25322
25323
25324
25325
25326
25327
25328
25329
25330
25331
25332
25333
25334
25335
25336
25337
25338
25339
25340
25341
25342
25343
25344
25345
25346
25347
25348
25349
25350
25351
25352
25353
25354
25355
25356
25357
25358
25359
25360
25361
25362
25363
25364
25365
25366
25367
25368
25369
25370
25371
25372
25373
25374
25375
25376
25377
25378
25379
25380
25381
25382
25383
25384
25385
25386
25387
25388
25389
25390
25391
25392
25393
25394
25395
25396
25397
25398
25399
25400
25401
25402
25403
25404
25405
25406
25407
25408
25409
25410
25411
25412
25413
25414
25415
25416
25417
25418
25419
25420
25421
25422
25423
25424
25425
25426
25427
25428
25429
25430
25431
25432
25433
25434
25435
25436
25437
25438
25439
25440
25441
25442
25443
25444
25445
25446
25447
25448
25449
25450
25451
25452
25453
25454
25455
25456
25457
25458
25459
25460
25461
25462
25463
25464
25465
25466
25467
25468
25469
25470
25471
25472
25473
25474
25475
25476
25477
25478
25479
25480
25481
25482
25483
25484
25485
25486
25487
25488
25489
25490
25491
25492
25493
25494
25495
25496
25497
25498
25499
25500
25501
25502
25503
25504
25505
25506
25507
25508
25509
25510
25511
25512
25513
25514
25515
25516
25517
25518
25519
25520
25521
25522
25523
25524
25525
25526
25527
25528
25529
25530
25531
25532
25533
25534
25535
25536
25537
25538
25539
25540
25541
25542
25543
25544
25545
25546
25547
25548
25549
25550
25551
25552
25553
25554
25555
25556
25557
25558
25559
25560
25561
25562
25563
25564
25565
25566
25567
25568
25569
25570
25571
25572
25573
25574
25575
25576
25577
25578
25579
25580
25581
25582
25583
25584
25585
25586
25587
25588
25589
25590
25591
25592
25593
25594
25595
25596
25597
25598
25599
25600
25601
25602
25603
25604
25605
25606
25607
25608
25609
25610
25611
25612
25613
25614
25615
25616
25617
25618
25619
25620
25621
25622
25623
25624
25625
25626
25627
25628
25629
25630
25631
25632
25633
25634
25635
25636
25637
25638
25639
25640
25641
25642
25643
25644
25645
25646
25647
25648
25649
25650
25651
25652
25653
25654
25655
25656
25657
25658
25659
25660
25661
25662
25663
25664
25665
25666
25667
25668
25669
25670
25671
25672
25673
25674
25675
25676
25677
25678
25679
25680
25681
25682
25683
25684
25685
25686
25687
25688
25689
25690
25691
25692
25693
25694
25695
25696
25697
25698
25699
25700
25701
25702
25703
25704
25705
25706
25707
25708
25709
25710
25711
25712
25713
25714
25715
25716
25717
25718
25719
25720
25721
25722
25723
25724
25725
25726
25727
25728
25729
25730
25731
25732
25733
25734
25735
25736
25737
25738
25739
25740
25741
25742
25743
25744
25745
25746
25747
25748
25749
25750
25751
25752
25753
25754
25755
25756
25757
25758
25759
25760
25761
25762
25763
25764
25765
25766
25767
25768
25769
25770
25771
25772
25773
25774
25775
25776
25777
25778
25779
25780
25781
25782
25783
25784
25785
25786
25787
25788
25789
25790
25791
25792
25793
25794
25795
25796
25797
25798
25799
25800
25801
25802
25803
25804
25805
25806
25807
25808
25809
25810
25811
25812
25813
25814
25815
25816
25817
25818
25819
25820
25821
25822
25823
25824
25825
25826
25827
25828
25829
25830
25831
25832
25833
25834
25835
25836
25837
25838
25839
25840
25841
25842
25843
25844
25845
25846
25847
25848
25849
25850
25851
25852
25853
25854
25855
25856
25857
25858
25859
25860
25861
25862
25863
25864
25865
25866
25867
25868
25869
25870
25871
25872
25873
25874
25875
25876
25877
25878
25879
25880
25881
25882
25883
25884
25885
25886
25887
25888
25889
25890
25891
25892
25893
25894
25895
25896
25897
25898
25899
25900
25901
25902
25903
25904
25905
25906
25907
25908
25909
25910
25911
25912
25913
25914
25915
25916
25917
25918
25919
25920
25921
25922
25923
25924
25925
25926
25927
25928
25929
25930
25931
25932
25933
25934
25935
25936
25937
25938
25939
25940
25941
25942
25943
25944
25945
25946
25947
25948
25949
25950
25951
25952
25953
25954
25955
25956
25957
25958
25959
25960
25961
25962
25963
25964
25965
25966
25967
25968
25969
25970
25971
25972
25973
25974
25975
25976
25977
25978
25979
25980
25981
25982
25983
25984
25985
25986
25987
25988
25989
25990
25991
25992
25993
25994
25995
25996
25997
25998
25999
26000
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605800_5f79b40a-0410-42e2-b72b-f10a1a6d4ea0">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2ae0a04e-e32f-48ad-923c-ba5db3770a2c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605800_5f79b40a-0410-42e2-b72b-f10a1a6d4ea0_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605800_5f79b40a-0410-42e2-b72b-f10a1a6d4ea0_poly_0_">
                      <gml:posList srsDimension="3">568619.844 5517045.169 0.0 568619.844 5517045.169 2.509999999999991 568618.034 5517045.436 2.5060000000000002 568618.034 5517045.436 0.0 568619.844 5517045.169 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605800_34bc8936-3725-4f02-a297-d5774a61c6f3">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5a7953e6-ce92-4b56-8571-90e5d0986bb4">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605800_34bc8936-3725-4f02-a297-d5774a61c6f3_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605800_34bc8936-3725-4f02-a297-d5774a61c6f3_poly_0_">
                      <gml:posList srsDimension="3">568619.844 5517045.169 2.509999999999991 568623.737 5517044.586 2.5149999999999864 568623.942 5517045.974 2.968999999999994 568626.296 5517045.599 2.966000000000008 568626.344 5517045.871 3.055000000000007 568618.277 5517047.115 3.055000000000007 568618.034 5517045.436 2.5060000000000002 568619.844 5517045.169 2.509999999999991</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605800_1309fed9-89be-42f4-a858-dc709977e92b">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_2a04868d-559d-4361-be29-8485dfb81fa8">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605800_1309fed9-89be-42f4-a858-dc709977e92b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605800_1309fed9-89be-42f4-a858-dc709977e92b_poly_0_">
                      <gml:posList srsDimension="3">568618.034 5517045.436 2.5060000000000002 568618.277 5517047.115 3.055000000000007 568618.512 5517048.736 2.524000000000001 568618.512 5517048.736 0.0 568618.277 5517047.115 0.0 568618.034 5517045.436 0.0 568618.034 5517045.436 2.5060000000000002</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605800_730336e7-74f3-48bf-9607-4bd474a75f41">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_cb4afbe9-9845-4f5c-9b2d-fa95816c82a7">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605800_730336e7-74f3-48bf-9607-4bd474a75f41_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605800_730336e7-74f3-48bf-9607-4bd474a75f41_poly_0_">
                      <gml:posList srsDimension="3">568626.296 5517045.599 0.0 568626.296 5517045.599 2.966000000000008 568623.942 5517045.974 2.968999999999994 568623.942 5517045.974 0.0 568626.296 5517045.599 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605800_f9c04c97-ee6e-4464-b73d-f09c336eabca">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4051bc04-b81b-482c-855a-4fa1e8f56322">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605800_f9c04c97-ee6e-4464-b73d-f09c336eabca_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605800_f9c04c97-ee6e-4464-b73d-f09c336eabca_poly_0_">
                      <gml:posList srsDimension="3">568623.843 5517047.95 0.0 568623.843 5517047.95 2.5130000000000052 568624.255 5517047.887 2.5130000000000052 568624.255 5517047.887 0.0 568623.843 5517047.95 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605800_13c0608f-d73c-456e-aef1-8766c58bbff1">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_33045d72-10fd-4456-89cf-4adc2e825c9b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605800_13c0608f-d73c-456e-aef1-8766c58bbff1_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605800_13c0608f-d73c-456e-aef1-8766c58bbff1_poly_0_">
                      <gml:posList srsDimension="3">568626.296 5517045.599 2.966000000000008 568626.296 5517045.599 0.0 568626.344 5517045.871 0.0 568626.63 5517047.503 0.0 568626.63 5517047.503 2.5190000000000055 568626.344 5517045.871 3.055000000000007 568626.296 5517045.599 2.966000000000008</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605800_0da9aadd-6f84-4da0-a01a-a2030633d863">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b3c247a5-16fb-4f34-a185-f90f3404424b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605800_0da9aadd-6f84-4da0-a01a-a2030633d863_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605800_0da9aadd-6f84-4da0-a01a-a2030633d863_poly_0_">
                      <gml:posList srsDimension="3">568623.737 5517044.586 0.0 568623.737 5517044.586 2.5149999999999864 568619.844 5517045.169 2.509999999999991 568619.844 5517045.169 0.0 568623.737 5517044.586 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
    </bldg:Building>
  </cityObjectMember><cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_605144">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9pJaf</name>
        </externalObject>
      </externalReference>
      <gen:stringAttribute name="comment">
        <gen:value>CityGML from BKG LoD2_32_56[68]_5516_2_BY.xml, with yearOfConstruction from Stadt_Würzburg_Wohngebäude_Baujahr_Untersuchungsgebiet.xlsx, 2023-02-22</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="address">
        <gen:value>Petrinistraße 19, 97080, Würzburg</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2019-09-24</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_1000</bldg:function>
      <bldg:yearOfConstruction>1953</bldg:yearOfConstruction>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">16.906</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_a341d1a4-9642-48b4-97c9-1297e87870d3">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_1cc9726b-a082-4ec7-8aaf-18a321454f3d">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605144_e9b2c162-812b-44d4-a28e-86a7d1fb0f6c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605144_68d69fe1-2f88-4a78-bd37-95df4cddfc30_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605144_30a11bba-6695-4257-9b87-1df0d0e2e00c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605144_16638612-03b2-4a8d-b83f-58ea12bc0e64_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605144_980d9a06-5ef9-494a-b1f1-d70dcb3e0abb_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605144_a0fb5f4c-98e6-42e3-bafc-96ed7e0f498c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605144_ea8d24ed-74c4-4093-9057-99468b7492e6_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605144_96b1f1fa-f1f4-4838-8643-65dfc51138fc_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605144_6111ffdc-f2ed-482a-b873-723169d0eb8c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605144_58148b26-5ccd-434f-b0ad-ce9ba3b73d11_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605144_e4d7ccb2-0edc-47d8-a0ee-b3115bfe123f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605144_e84e37e9-797c-441f-b190-f22725d7c37e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605144_f2b29c41-3d70-4ee6-828e-db7c438856c4_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605144_7a3d2024-be93-4f72-be22-16533a4657a8_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605144_3aa2ede8-dd17-422d-8bf6-2faf1b6edefc_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605144_e84e37e9-797c-441f-b190-f22725d7c37e">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_43734577-0177-493f-8bfa-4b9bb5fa386b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605144_e84e37e9-797c-441f-b190-f22725d7c37e_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605144_e84e37e9-797c-441f-b190-f22725d7c37e_poly_0_">
                      <gml:posList srsDimension="3">568250.843 5517045.861 11.51600000000002 568250.91 5517049.878 11.519000000000005 568250.913 5517050.066 11.519000000000005 568247.665 5517050.109 14.677000000000021 568245.373 5517050.138 16.906000000000006 568245.304 5517046.254 16.906000000000006 568245.207 5517040.691 16.906000000000006 568250.843 5517045.861 11.51600000000002</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605144_e4d7ccb2-0edc-47d8-a0ee-b3115bfe123f">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_62d33198-1ca0-4ffa-b0b3-95bb1e6a275b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605144_e4d7ccb2-0edc-47d8-a0ee-b3115bfe123f_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605144_e4d7ccb2-0edc-47d8-a0ee-b3115bfe123f_poly_0_">
                      <gml:posList srsDimension="3">568252.24 5517043.946 0.0 568252.24 5517043.946 13.27200000000002 568254.716 5517043.796 13.247000000000014 568254.716 5517043.796 0.0 568252.24 5517043.946 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605144_30a11bba-6695-4257-9b87-1df0d0e2e00c">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_3c986483-416e-4882-8b64-43bfbd810756">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605144_30a11bba-6695-4257-9b87-1df0d0e2e00c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605144_30a11bba-6695-4257-9b87-1df0d0e2e00c_poly_0_">
                      <gml:posList srsDimension="3">568245.207 5517040.691 16.906000000000006 568245.304 5517046.254 16.906000000000006 568245.373 5517050.138 16.906000000000006 568239.878 5517050.21 11.564000000000021 568239.816 5517046.645 11.564000000000021 568239.661 5517037.79 11.564000000000021 568245.207 5517040.691 16.906000000000006</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605144_f2b29c41-3d70-4ee6-828e-db7c438856c4">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ad13a71f-1486-4a10-bb12-6766eba57535">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605144_f2b29c41-3d70-4ee6-828e-db7c438856c4_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605144_f2b29c41-3d70-4ee6-828e-db7c438856c4_poly_0_">
                      <gml:posList srsDimension="3">568245.373 5517050.138 16.906000000000006 568247.665 5517050.109 14.677000000000021 568250.913 5517050.066 11.519000000000005 568250.913 5517050.066 0.0 568247.665 5517050.109 0.0 568245.373 5517050.138 0.0 568239.878 5517050.21 0.0 568239.878 5517050.21 11.564000000000021 568245.373 5517050.138 16.906000000000006</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605144_16638612-03b2-4a8d-b83f-58ea12bc0e64">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_eed0eb60-609c-4407-844f-bcef93aefa10">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605144_16638612-03b2-4a8d-b83f-58ea12bc0e64_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605144_16638612-03b2-4a8d-b83f-58ea12bc0e64_poly_0_">
                      <gml:posList srsDimension="3">568250.648 5517034.787 11.564000000000021 568254.037 5517034.545 11.564000000000021 568254.44 5517040.035 16.906000000000006 568250.745 5517040.298 16.906000000000006 568245.207 5517040.691 16.906000000000006 568242.189 5517035.388 11.564000000000021 568250.648 5517034.787 11.564000000000021</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605144_e9b2c162-812b-44d4-a28e-86a7d1fb0f6c">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_01df0432-7303-4ca9-8ff0-0ee3cdd2fcac">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605144_e9b2c162-812b-44d4-a28e-86a7d1fb0f6c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605144_e9b2c162-812b-44d4-a28e-86a7d1fb0f6c_poly_0_">
                      <gml:posList srsDimension="3">568250.843 5517045.861 0.0 568250.843 5517045.861 11.51600000000002 568252.45 5517045.665 11.594000000000023 568252.45 5517045.665 0.0 568250.843 5517045.861 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605144_58148b26-5ccd-434f-b0ad-ce9ba3b73d11">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c652dbb3-8cf3-4b8a-b12f-0aed079350e2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605144_58148b26-5ccd-434f-b0ad-ce9ba3b73d11_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605144_58148b26-5ccd-434f-b0ad-ce9ba3b73d11_poly_0_">
                      <gml:posList srsDimension="3">568250.745 5517040.298 16.906000000000006 568254.44 5517040.035 16.906000000000006 568254.716 5517043.796 13.247000000000014 568252.24 5517043.946 13.27200000000002 568252.45 5517045.665 11.594000000000023 568250.843 5517045.861 11.51600000000002 568245.207 5517040.691 16.906000000000006 568250.745 5517040.298 16.906000000000006</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605144_68d69fe1-2f88-4a78-bd37-95df4cddfc30">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_7b989171-9357-4960-a5d0-38dc70ef4216">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605144_68d69fe1-2f88-4a78-bd37-95df4cddfc30_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605144_68d69fe1-2f88-4a78-bd37-95df4cddfc30_poly_0_">
                      <gml:posList srsDimension="3">568252.45 5517045.665 0.0 568252.45 5517045.665 11.594000000000023 568252.24 5517043.946 13.27200000000002 568252.24 5517043.946 0.0 568252.45 5517045.665 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605144_96b1f1fa-f1f4-4838-8643-65dfc51138fc">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_a1bd320f-0d06-4ff1-be1a-beaf2ff6e687">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605144_96b1f1fa-f1f4-4838-8643-65dfc51138fc_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605144_96b1f1fa-f1f4-4838-8643-65dfc51138fc_poly_0_">
                      <gml:posList srsDimension="3">568242.105 5517035.394 0.0 568242.105 5517035.394 11.51600000000002 568239.657 5517037.586 11.429000000000002 568239.657 5517037.586 0.0 568242.105 5517035.394 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605144_6111ffdc-f2ed-482a-b873-723169d0eb8c">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ef95e782-bd74-4bfb-8534-dd99e4db58d3">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605144_6111ffdc-f2ed-482a-b873-723169d0eb8c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605144_6111ffdc-f2ed-482a-b873-723169d0eb8c_poly_0_">
                      <gml:posList srsDimension="3">568250.843 5517045.861 0.0 568250.91 5517049.878 0.0 568250.913 5517050.066 0.0 568250.913 5517050.066 11.519000000000005 568250.91 5517049.878 11.519000000000005 568250.843 5517045.861 11.51600000000002 568250.843 5517045.861 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605144_7a3d2024-be93-4f72-be22-16533a4657a8">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_5d1ceca9-310e-47a4-9db7-8ab8e57f8560">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605144_7a3d2024-be93-4f72-be22-16533a4657a8_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605144_7a3d2024-be93-4f72-be22-16533a4657a8_poly_0_">
                      <gml:posList srsDimension="3">568242.189 5517035.388 0.0 568250.648 5517034.787 0.0 568254.037 5517034.545 0.0 568254.037 5517034.545 11.564000000000021 568250.648 5517034.787 11.564000000000021 568242.189 5517035.388 11.564000000000021 568242.105 5517035.394 11.51600000000002 568242.105 5517035.394 0.0 568242.189 5517035.388 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="DEBY_LOD2_605144_a0fb5f4c-98e6-42e3-bafc-96ed7e0f498c">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_f24b4f3e-9878-402a-be58-1434c5ed0352">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605144_a0fb5f4c-98e6-42e3-bafc-96ed7e0f498c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605144_a0fb5f4c-98e6-42e3-bafc-96ed7e0f498c_poly_0_">
                      <gml:posList srsDimension="3">568254.44 5517040.035 0.0 568254.037 5517034.545 0.0 568250.648 5517034.787 0.0 568242.189 5517035.388 0.0 568242.105 5517035.394 0.0 568239.657 5517037.586 0.0 568239.66 5517037.717 0.0 568239.661 5517037.79 0.0 568239.816 5517046.645 0.0 568239.878 5517050.21 0.0 568245.373 5517050.138 0.0 568247.665 5517050.109 0.0 568250.913 5517050.066 0.0 568250.91 5517049.878 0.0 568250.843 5517045.861 0.0 568252.45 5517045.665 0.0 568252.24 5517043.946 0.0 568254.716 5517043.796 0.0 568254.44 5517040.035 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605144_980d9a06-5ef9-494a-b1f1-d70dcb3e0abb">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_db532ac2-953d-4723-a56d-d09c428933dc">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605144_980d9a06-5ef9-494a-b1f1-d70dcb3e0abb_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605144_980d9a06-5ef9-494a-b1f1-d70dcb3e0abb_poly_0_">
                      <gml:posList srsDimension="3">568239.657 5517037.586 11.429000000000002 568239.66 5517037.717 11.51600000000002 568239.661 5517037.79 11.564000000000021 568239.816 5517046.645 11.564000000000021 568239.878 5517050.21 11.564000000000021 568239.878 5517050.21 0.0 568239.816 5517046.645 0.0 568239.661 5517037.79 0.0 568239.66 5517037.717 0.0 568239.657 5517037.586 0.0 568239.657 5517037.586 11.429000000000002</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605144_ea8d24ed-74c4-4093-9057-99468b7492e6">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9fcb0167-edf1-4d51-8857-d77bee24914d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605144_ea8d24ed-74c4-4093-9057-99468b7492e6_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605144_ea8d24ed-74c4-4093-9057-99468b7492e6_poly_0_">
                      <gml:posList srsDimension="3">568254.037 5517034.545 11.564000000000021 568254.037 5517034.545 0.0 568254.44 5517040.035 0.0 568254.716 5517043.796 0.0 568254.716 5517043.796 13.247000000000014 568254.44 5517040.035 16.906000000000006 568254.037 5517034.545 11.564000000000021</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605144_3aa2ede8-dd17-422d-8bf6-2faf1b6edefc">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_419ef91c-73db-475f-aa46-23a03e63c452">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605144_3aa2ede8-dd17-422d-8bf6-2faf1b6edefc_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605144_3aa2ede8-dd17-422d-8bf6-2faf1b6edefc_poly_0_">
                      <gml:posList srsDimension="3">568242.105 5517035.394 11.51600000000002 568242.189 5517035.388 11.564000000000021 568245.207 5517040.691 16.906000000000006 568239.661 5517037.79 11.564000000000021 568239.66 5517037.717 11.51600000000002 568239.657 5517037.586 11.429000000000002 568242.105 5517035.394 11.51600000000002</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
    </bldg:Building>
  </cityObjectMember><cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_605028">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odYn</name>
        </externalObject>
      </externalReference>
      <gen:stringAttribute name="comment">
        <gen:value>CityGML from BKG LoD2_32_56[68]_5516_2_BY.xml, with yearOfConstruction from Stadt_Würzburg_Wohngebäude_Baujahr_Untersuchungsgebiet.xlsx, 2023-02-22</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="address">
        <gen:value>Robert-Koch-Straße 7, 97080, Würzburg</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2019-09-24</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_1000</bldg:function>
      <bldg:yearOfConstruction>1946</bldg:yearOfConstruction>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">13.429</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_a0f3658d-7086-4617-b21d-1032f1eb12bd">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_2cee2551-2903-439d-acae-da640c74d15c">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605028_52dd015a-f4e2-40b4-b738-48ae1bce300c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605028_3ede03e7-99a4-4333-9661-9e5da067ebbf_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605028_ac43c78e-9c8a-455b-a4a7-d21bcf304d18_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605028_2d311004-c899-4203-98c2-4ca218bd23f4_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605028_7722eeff-c7e7-40e5-acf1-ee566a47f2e3_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605028_1c790a88-7c69-4987-a10a-7c5956a58982_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605028_3b7aabb1-a839-4598-b69a-7c5f94343016_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605028_133ae205-857e-47a9-b3c8-4afe178a2257_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605028_7722eeff-c7e7-40e5-acf1-ee566a47f2e3">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_33f7d120-4cb7-453c-abf1-aea56680d7a2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605028_7722eeff-c7e7-40e5-acf1-ee566a47f2e3_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605028_7722eeff-c7e7-40e5-acf1-ee566a47f2e3_poly_0_">
                      <gml:posList srsDimension="3">568411.96 5517112.567 7.590000000000003 568412.734 5517117.696 13.429000000000002 568413.51 5517122.841 7.572000000000003 568413.51 5517122.841 0.0 568412.734 5517117.696 0.0 568411.96 5517112.567 0.0 568411.96 5517112.567 7.590000000000003</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605028_133ae205-857e-47a9-b3c8-4afe178a2257">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e105760d-64fc-4c8d-b9b6-14d19b1a125b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605028_133ae205-857e-47a9-b3c8-4afe178a2257_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605028_133ae205-857e-47a9-b3c8-4afe178a2257_poly_0_">
                      <gml:posList srsDimension="3">568422.928 5517116.24 13.429000000000002 568423.668 5517121.348 7.619 568423.467 5517121.38 7.6159999999999854 568413.51 5517122.841 7.572000000000003 568412.734 5517117.696 13.429000000000002 568422.928 5517116.24 13.429000000000002</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605028_52dd015a-f4e2-40b4-b738-48ae1bce300c">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6f222e97-470f-4ec4-a49d-abb5a9fac036">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605028_52dd015a-f4e2-40b4-b738-48ae1bce300c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605028_52dd015a-f4e2-40b4-b738-48ae1bce300c_poly_0_">
                      <gml:posList srsDimension="3">568413.51 5517122.841 0.0 568413.51 5517122.841 7.572000000000003 568423.467 5517121.38 7.6159999999999854 568423.467 5517121.38 0.0 568413.51 5517122.841 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605028_3ede03e7-99a4-4333-9661-9e5da067ebbf">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_c6d4393f-4b08-46e1-926e-ff6d5ff46380">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605028_3ede03e7-99a4-4333-9661-9e5da067ebbf_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605028_3ede03e7-99a4-4333-9661-9e5da067ebbf_poly_0_">
                      <gml:posList srsDimension="3">568422.186 5517111.105 7.590000000000003 568422.928 5517116.24 13.429000000000002 568412.734 5517117.696 13.429000000000002 568411.96 5517112.567 7.590000000000003 568422.186 5517111.105 7.590000000000003</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605028_1c790a88-7c69-4987-a10a-7c5956a58982">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_b852a967-085b-4693-a472-0d99d9a69d92">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605028_1c790a88-7c69-4987-a10a-7c5956a58982_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605028_1c790a88-7c69-4987-a10a-7c5956a58982_poly_0_">
                      <gml:posList srsDimension="3">568423.467 5517121.38 0.0 568423.467 5517121.38 7.6159999999999854 568423.668 5517121.348 7.619 568423.668 5517121.348 0.0 568423.467 5517121.38 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605028_2d311004-c899-4203-98c2-4ca218bd23f4">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_41e1312a-0840-4c66-9159-90174c1a202b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605028_2d311004-c899-4203-98c2-4ca218bd23f4_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605028_2d311004-c899-4203-98c2-4ca218bd23f4_poly_0_">
                      <gml:posList srsDimension="3">568422.186 5517111.105 0.0 568422.186 5517111.105 7.590000000000003 568411.96 5517112.567 7.590000000000003 568411.96 5517112.567 0.0 568422.186 5517111.105 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605028_3b7aabb1-a839-4598-b69a-7c5f94343016">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_9e9b4c2a-0f2e-4d35-8ccd-e2e5c46a0c82">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605028_3b7aabb1-a839-4598-b69a-7c5f94343016_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605028_3b7aabb1-a839-4598-b69a-7c5f94343016_poly_0_">
                      <gml:posList srsDimension="3">568422.186 5517111.105 7.590000000000003 568422.186 5517111.105 0.0 568422.928 5517116.24 0.0 568423.668 5517121.348 0.0 568423.668 5517121.348 7.619 568422.928 5517116.24 13.429000000000002 568422.186 5517111.105 7.590000000000003</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="DEBY_LOD2_605028_ac43c78e-9c8a-455b-a4a7-d21bcf304d18">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_726772ea-53e2-4ba2-b75d-3c25db4dc62f">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605028_ac43c78e-9c8a-455b-a4a7-d21bcf304d18_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605028_ac43c78e-9c8a-455b-a4a7-d21bcf304d18_poly_0_">
                      <gml:posList srsDimension="3">568422.928 5517116.24 0.0 568422.186 5517111.105 0.0 568411.96 5517112.567 0.0 568412.734 5517117.696 0.0 568413.51 5517122.841 0.0 568423.467 5517121.38 0.0 568423.668 5517121.348 0.0 568422.928 5517116.24 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
    </bldg:Building>
  </cityObjectMember><cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_605060">
      <creationDate>2013-06-24</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9oeMv</name>
        </externalObject>
      </externalReference>
      <gen:stringAttribute name="comment">
        <gen:value>CityGML from BKG LoD2_32_56[68]_5516_2_BY.xml, with yearOfConstruction from Stadt_Würzburg_Wohngebäude_Baujahr_Untersuchungsgebiet.xlsx, 2023-02-22</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="address">
        <gen:value>Petrinistraße 33, 97080, Würzburg</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2019-09-24</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_1000</bldg:function>
      <bldg:yearOfConstruction>1959</bldg:yearOfConstruction>
      <bldg:roofType>3200</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">16.091</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_062e0999-03f2-4b53-a26c-61844d322463">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_e7eb6d57-6707-4f47-8b93-9b3af0886fc1">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605060_af1a7f20-307d-4a87-a26a-d4556a428bb6_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605060_0b2e2164-a581-4ff6-95f9-5169a6a7144b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605060_651f95c3-24f9-494a-b733-06b06379ba3b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605060_7b6bbc87-b853-493f-8c0d-5753626b18c4_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605060_90015d2a-cc07-4857-924c-d59e10edf0c1_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605060_6a0b0fa6-6592-4bd2-b6af-65e6885b1bbc_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605060_e789997e-333b-4439-86e9-729d24f8592c_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605060_6439063f-df47-4d18-8ec2-ff2b8fb08dba_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605060_106653f3-05e1-4cc4-8871-48f7232e0519_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605060_408605d5-29f0-48a7-b6b1-fc17ac45ee45_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605060_bd8f6ad8-c9a6-49a2-ad12-c38e296a5bd2_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605060_d1ef6f4e-97a0-4739-9c06-1b1f1d0bb157_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605060_e789997e-333b-4439-86e9-729d24f8592c">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_01126792-0029-4fbe-b844-4b3984630cd2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605060_e789997e-333b-4439-86e9-729d24f8592c_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605060_e789997e-333b-4439-86e9-729d24f8592c_poly_0_">
                      <gml:posList srsDimension="3">568425.906 5517027.226 16.091000000000008 568429.95 5517026.92 16.091000000000008 568436.077 5517031.705 12.527999999999992 568436.085 5517031.755 12.494 568424.147 5517032.647 12.50200000000001 568421.509 5517032.852 12.49600000000001 568425.906 5517027.226 16.091000000000008</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:GroundSurface gml:id="DEBY_LOD2_605060_408605d5-29f0-48a7-b6b1-fc17ac45ee45">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_020dd33d-d23b-4be0-a495-a088e2ee610d">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605060_408605d5-29f0-48a7-b6b1-fc17ac45ee45_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605060_408605d5-29f0-48a7-b6b1-fc17ac45ee45_poly_0_">
                      <gml:posList srsDimension="3">568436.077 5517031.705 0.0 568435.437 5517027.689 0.0 568434.642 5517022.734 0.0 568434.411 5517021.288 0.0 568434.395 5517021.29 0.0 568434.345 5517021.294 0.0 568422.384 5517022.195 0.0 568419.726 5517022.398 0.0 568421.509 5517032.852 0.0 568424.147 5517032.647 0.0 568436.085 5517031.755 0.0 568436.077 5517031.705 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:GroundSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605060_651f95c3-24f9-494a-b733-06b06379ba3b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ac07ddf6-4d99-4afb-930b-7e0aaada3228">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605060_651f95c3-24f9-494a-b733-06b06379ba3b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605060_651f95c3-24f9-494a-b733-06b06379ba3b_poly_0_">
                      <gml:posList srsDimension="3">568421.509 5517032.852 0.0 568421.509 5517032.852 12.49600000000001 568424.147 5517032.647 12.50200000000001 568424.147 5517032.647 0.0 568421.509 5517032.852 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605060_bd8f6ad8-c9a6-49a2-ad12-c38e296a5bd2">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d980d98f-a8d1-4169-ae10-4a63a1a40c75">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605060_bd8f6ad8-c9a6-49a2-ad12-c38e296a5bd2_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605060_bd8f6ad8-c9a6-49a2-ad12-c38e296a5bd2_poly_0_">
                      <gml:posList srsDimension="3">568424.147 5517032.647 0.0 568424.147 5517032.647 12.50200000000001 568436.085 5517031.755 12.494 568436.085 5517031.755 0.0 568424.147 5517032.647 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605060_7b6bbc87-b853-493f-8c0d-5753626b18c4">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_10c72934-aff0-48b5-a169-b213bdb2fc5a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605060_7b6bbc87-b853-493f-8c0d-5753626b18c4_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605060_7b6bbc87-b853-493f-8c0d-5753626b18c4_poly_0_">
                      <gml:posList srsDimension="3">568422.384 5517022.195 12.495000000000005 568434.345 5517021.294 12.49600000000001 568429.95 5517026.92 16.091000000000008 568425.906 5517027.226 16.091000000000008 568419.726 5517022.398 12.49600000000001 568422.384 5517022.195 12.495000000000005</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605060_af1a7f20-307d-4a87-a26a-d4556a428bb6">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_e91b3f7b-1cf3-4801-9f19-716f4c8cfd2c">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605060_af1a7f20-307d-4a87-a26a-d4556a428bb6_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605060_af1a7f20-307d-4a87-a26a-d4556a428bb6_poly_0_">
                      <gml:posList srsDimension="3">568435.437 5517027.689 0.0 568436.077 5517031.705 0.0 568436.085 5517031.755 0.0 568436.085 5517031.755 12.494 568436.077 5517031.705 12.527999999999992 568435.437 5517027.689 12.496999999999986 568435.437 5517027.689 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605060_90015d2a-cc07-4857-924c-d59e10edf0c1">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_ffe9a495-7eb0-4185-bb6e-b52000bb562b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605060_90015d2a-cc07-4857-924c-d59e10edf0c1_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605060_90015d2a-cc07-4857-924c-d59e10edf0c1_poly_0_">
                      <gml:posList srsDimension="3">568419.726 5517022.398 0.0 568419.726 5517022.398 12.49600000000001 568421.509 5517032.852 12.49600000000001 568421.509 5517032.852 0.0 568419.726 5517022.398 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605060_d1ef6f4e-97a0-4739-9c06-1b1f1d0bb157">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_4a98257c-7428-4ce0-838f-3a9945fbfc8b">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605060_d1ef6f4e-97a0-4739-9c06-1b1f1d0bb157_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605060_d1ef6f4e-97a0-4739-9c06-1b1f1d0bb157_poly_0_">
                      <gml:posList srsDimension="3">568434.345 5517021.294 0.0 568434.395 5517021.29 0.0 568434.411 5517021.288 0.0 568434.411 5517021.288 12.451999999999998 568434.395 5517021.29 12.461999999999989 568434.345 5517021.294 12.49600000000001 568422.384 5517022.195 12.495000000000005 568422.384 5517022.195 0.0 568434.345 5517021.294 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605060_0b2e2164-a581-4ff6-95f9-5169a6a7144b">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_59fa8c97-a759-4708-a5dd-79dee3ee1ea9">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605060_0b2e2164-a581-4ff6-95f9-5169a6a7144b_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605060_0b2e2164-a581-4ff6-95f9-5169a6a7144b_poly_0_">
                      <gml:posList srsDimension="3">568434.411 5517021.288 0.0 568434.642 5517022.734 0.0 568435.437 5517027.689 0.0 568435.437 5517027.689 12.496999999999986 568434.642 5517022.734 12.461999999999989 568434.411 5517021.288 12.451999999999998 568434.411 5517021.288 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605060_6439063f-df47-4d18-8ec2-ff2b8fb08dba">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_6a9ece5a-bbf9-4ce7-a257-d78845b876f2">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605060_6439063f-df47-4d18-8ec2-ff2b8fb08dba_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605060_6439063f-df47-4d18-8ec2-ff2b8fb08dba_poly_0_">
                      <gml:posList srsDimension="3">568434.345 5517021.294 12.49600000000001 568434.395 5517021.29 12.461999999999989 568434.411 5517021.288 12.451999999999998 568434.642 5517022.734 12.461999999999989 568435.437 5517027.689 12.496999999999986 568436.077 5517031.705 12.527999999999992 568429.95 5517026.92 16.091000000000008 568434.345 5517021.294 12.49600000000001</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:RoofSurface gml:id="DEBY_LOD2_605060_6a0b0fa6-6592-4bd2-b6af-65e6885b1bbc">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_73df91e3-3b7b-42e7-985a-dfa189055cb0">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605060_6a0b0fa6-6592-4bd2-b6af-65e6885b1bbc_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605060_6a0b0fa6-6592-4bd2-b6af-65e6885b1bbc_poly_0_">
                      <gml:posList srsDimension="3">568425.906 5517027.226 16.091000000000008 568421.509 5517032.852 12.49600000000001 568419.726 5517022.398 12.49600000000001 568425.906 5517027.226 16.091000000000008</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:RoofSurface>
      </bldg:boundedBy>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605060_106653f3-05e1-4cc4-8871-48f7232e0519">
          <creationDate>2013-06-24</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_d9acfbda-93c9-4055-9172-d8082036c65a">
              <gml:surfaceMember>
                <gml:Polygon gml:id="DEBY_LOD2_605060_106653f3-05e1-4cc4-8871-48f7232e0519_poly">
                  <gml:exterior>
                    <gml:LinearRing gml:id="DEBY_LOD2_605060_106653f3-05e1-4cc4-8871-48f7232e0519_poly_0_">
                      <gml:posList srsDimension="3">568422.384 5517022.195 0.0 568422.384 5517022.195 12.495000000000005 568419.726 5517022.398 12.49600000000001 568419.726 5517022.398 0.0 568422.384 5517022.195 0.0</gml:posList>
                    </gml:LinearRing>
                  </gml:exterior>
                </gml:Polygon>
              </gml:surfaceMember>
            </gml:MultiSurface>
          </bldg:lod2MultiSurface>
        </bldg:WallSurface>
      </bldg:boundedBy>
    </bldg:Building>
  </cityObjectMember><cityObjectMember>
    <bldg:Building gml:id="DEBY_LOD2_605070">
      <creationDate>2020-05-15</creationDate>
      <externalReference>
        <informationSystem>http://repository.gdi-de.org/schemas/adv/citygml/fdv/art.htm#_9100</informationSystem>
        <externalObject>
          <name>DEBYvAAAAAA9odzv</name>
        </externalObject>
      </externalReference>
      <gen:stringAttribute name="comment">
        <gen:value>CityGML from BKG LoD2_32_56[68]_5516_2_BY.xml, with yearOfConstruction from Stadt_Würzburg_Wohngebäude_Baujahr_Untersuchungsgebiet.xlsx, 2023-02-22</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="address">
        <gen:value>Senefelderstraße 12, 97080, Würzburg</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleBodenhoehe">
        <gen:value>1100</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleDachhoehe">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="DatenquelleLage">
        <gen:value>1000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Gemeindeschluessel">
        <gen:value>09663000</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Grundrissaktualitaet">
        <gen:value>2019-09-25</gen:value>
      </gen:stringAttribute>
      <gen:stringAttribute name="Geometrietyp2DReferenz">
        <gen:value>3000</gen:value>
      </gen:stringAttribute>
      <bldg:function>31001_9998</bldg:function>
      <bldg:yearOfConstruction>1900</bldg:yearOfConstruction>
      <bldg:roofType>3100</bldg:roofType>
      <bldg:measuredHeight uom="urn:adv:uom:m">17.816</bldg:measuredHeight>
      <bldg:lod2Solid>
        <gml:Solid gml:id="UUID_8e82c92b-15dd-4740-92db-bc941e21b506">
          <gml:exterior>
            <gml:CompositeSurface gml:id="UUID_4f802af2-86e5-4160-bec9-167311b12968">
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605070_74d9ee8e-79ec-44f7-91cc-5e6edcc75d21_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605070_b173eaa7-1e7b-4cd7-a5b8-4146aab17235_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605070_61523441-d8e0-4d0d-8e11-a3079922cf0e_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605070_45ffd54b-3b06-4760-8223-eca356857f36_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605070_0111ab22-e541-471b-a26c-91f619589d8d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605070_df4dd520-5d62-4086-a1fa-bb56ea0c5256_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605070_6c7d5863-9ec7-4241-a8ad-444428f0d8d9_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605070_917717ef-093b-4246-8787-fc23a10add66_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605070_9a11e986-8136-40bb-a3a5-5289c09b08b3_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605070_67eb3703-24b5-4f4d-a34f-3dd7b2a1dc70_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605070_2eb2d813-0aba-4fdf-b229-79261aa27433_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605070_c748d400-5fee-4cad-8353-099b1a591bd7_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605070_54e0c545-0eec-4f42-b671-78c5f3bbcb7f_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605070_9699f197-62a2-4313-b9d1-e872993cac1d_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605070_f5bf1da9-f78c-4313-9d9e-5fe873926819_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605070_cf743450-1015-41c1-bc5a-d176df5353fe_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605070_d146ead4-2f80-4068-a458-a6195a50c167_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605070_6244f61e-0c77-4a96-84ab-d3c8528f85e8_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605070_47d1dcd3-bd57-4fcc-9fb9-b19ec29d825b_poly"/>
              <gml:surfaceMember xlink:href="#DEBY_LOD2_605070_7f269d0b-8805-4b07-b79e-953b61290a4d_poly"/>
            </gml:CompositeSurface>
          </gml:exterior>
        </gml:Solid>
      </bldg:lod2Solid>
      <bldg:boundedBy>
        <bldg:WallSurface gml:id="DEBY_LOD2_605070_6c7d5863-9ec7-4241-a8ad-444428f0d8d9">
          <creationDate>2020-05-15</creationDate>
          <bldg:lod2MultiSurface>
            <gml:MultiSurface gml:id="UUID_bbdc6cd0-97be-438b-8862-954d8e75b257">
For faster browsing, not all history is shown. View entire blame